Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Fixes for Prompt studio Indexing and tool runs #143

Merged
merged 34 commits into from
Jan 8, 2025
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
2d0cf78
Refactoring changed file names
gaya3-zipstack Dec 3, 2024
85eaa24
Roll version
gaya3-zipstack Dec 3, 2024
70d1d2e
Update src/unstract/sdk/utils/tool_utils.py
gaya3-zipstack Dec 4, 2024
be20dad
Update tests/test_fs_permanent.py
gaya3-zipstack Dec 4, 2024
ffbde12
Update tests/test_fs_permanent.py
gaya3-zipstack Dec 4, 2024
4707343
Update src/unstract/sdk/utils/tool_utils.py
gaya3-zipstack Dec 4, 2024
06c2f30
Address review comments
gaya3-zipstack Dec 4, 2024
d6c6e3e
Merge with main
gaya3-zipstack Dec 6, 2024
9a5d6fc
Add support for passing length to mime_type
gaya3-zipstack Dec 6, 2024
1499172
Add recursive and fix mypy issue
gaya3-zipstack Dec 9, 2024
b2d03bb
CHange test case with new behavior to return FileNotFound in read()
gaya3-zipstack Dec 10, 2024
b4d2246
Remove typing kwargs.
gaya3-zipstack Dec 10, 2024
26dc221
Resolve mypy issues
gaya3-zipstack Dec 10, 2024
67db977
Resolve mypy issues
gaya3-zipstack Dec 10, 2024
3045a5e
Remove unwanted conditionals/vars
gaya3-zipstack Dec 10, 2024
d5590d2
Remove pandoc and tessaract.
gaya3-zipstack Dec 10, 2024
132b687
Details of provider added to error message
gaya3-zipstack Dec 11, 2024
fe3a162
Merge remote-tracking branch 'origin' into feature/remote_storage
gaya3-zipstack Dec 18, 2024
bca64c2
fixed enum conditional matching value
gaya3-zipstack Dec 18, 2024
e9e0bcf
Merge remote-tracking branch 'origin' into feature/remote_storage
gaya3-zipstack Dec 20, 2024
8dd280a
Include EnvHelper in __init__
gaya3-zipstack Dec 23, 2024
9d64fe4
Rename error handler
gaya3-zipstack Dec 23, 2024
70dc489
Upgrade version
gaya3-zipstack Dec 23, 2024
1975b89
Expose StorageType outside
gaya3-zipstack Dec 24, 2024
eb125f0
Resolve circular dependency issue
gaya3-zipstack Dec 26, 2024
00e5564
Resolve circular dependency issue
gaya3-zipstack Dec 26, 2024
ffbde3f
Merge branch 'main' into feature/remote_storage
gaya3-zipstack Dec 26, 2024
9a57222
Merge with main
gaya3-zipstack Dec 26, 2024
acb6e09
Change order
gaya3-zipstack Dec 26, 2024
e657e0e
Indexing fixes + clean up
gaya3-zipstack Jan 7, 2025
5570f31
Merge branch 'main' into feature/remote_storage
gaya3-zipstack Jan 8, 2025
f1b2f3a
Add deprecation warnings
gaya3-zipstack Jan 8, 2025
3c56dc4
Merge branch 'feature/remote_storage' of https://github.com/Zipstack/…
gaya3-zipstack Jan 8, 2025
924f379
Add deprecation warnings
gaya3-zipstack Jan 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge with main
gaya3-zipstack committed Dec 6, 2024
commit d6c6e3e8de8c78d383959945a358562aba4c0583
2 changes: 1 addition & 1 deletion src/unstract/sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.54.0rc5"
__version__ = "0.54.0rc6"


def get_sdk_version():
2 changes: 1 addition & 1 deletion src/unstract/sdk/tool/base.py
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
ToolEnv,
ToolExecKey,
)
from unstract.sdk.file_storage.shared_temporary import SharedTemporaryFileStorage
from unstract.sdk.file_storage import SharedTemporaryFileStorage
from unstract.sdk.tool.mixin import ToolConfigHelper
from unstract.sdk.tool.parser import ToolArgsParser
from unstract.sdk.tool.stream import StreamMixin
6 changes: 5 additions & 1 deletion src/unstract/sdk/utils/tool_utils.py
Original file line number Diff line number Diff line change
@@ -9,7 +9,11 @@
import magic

from unstract.sdk.exceptions import FileStorageError
from unstract.sdk.file_storage import FileStorage, FileStorageProvider, SharedTemporaryFileStorage
from unstract.sdk.file_storage import (
FileStorage,
FileStorageProvider,
SharedTemporaryFileStorage,
)

logger = logging.getLogger(__name__)

You are viewing a condensed version of this merge commit. You can view the full changes here.