Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions backend/sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ PROMPT_STUDIO_FILE_PATH=/app/prompt-studio-data

# Structure Tool Image (Runs prompt studio exported tools)
# https://hub.docker.com/r/unstract/tool-structure
STRUCTURE_TOOL_IMAGE_URL="docker:unstract/tool-structure:0.0.99"
STRUCTURE_TOOL_IMAGE_URL="docker:unstract/tool-structure:0.0.100"
STRUCTURE_TOOL_IMAGE_NAME="unstract/tool-structure"
STRUCTURE_TOOL_IMAGE_TAG="0.0.99"
STRUCTURE_TOOL_IMAGE_TAG="0.0.100"

# Feature Flags
EVALUATION_SERVER_IP=unstract-flipt
Expand Down
12 changes: 5 additions & 7 deletions backend/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docker/dockerfiles/worker-unified.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ RUN apt-get update \
build-essential \
curl \
gcc \
git \
libmagic-dev \
libssl-dev \
pkg-config \
Expand Down
9 changes: 2 additions & 7 deletions platform-service/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 2 additions & 7 deletions prompt-service/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/classifier/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV \
PIP_DEFAULT_TIMEOUT=120

# Install dependencies for unstructured library's partition
RUN apt-get update && apt-get --no-install-recommends -y install dumb-init libmagic-dev poppler-utils\
RUN apt-get update && apt-get --no-install-recommends -y install dumb-init git libmagic-dev poppler-utils\
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion tools/classifier/src/config/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"schemaVersion": "0.0.1",
"displayName": "File Classifier",
"functionName": "classify",
"toolVersion": "0.0.78",
"toolVersion": "0.0.79",
"description": "Classifies a file into a bin based on its contents",
"input": {
"description": "File to be classified"
Expand Down
2 changes: 1 addition & 1 deletion tools/structure/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ENV \
# Install system dependencies in one layer
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ffmpeg libsm6 libxext6 libmagic-dev poppler-utils \
ffmpeg git libsm6 libxext6 libmagic-dev poppler-utils \
libreoffice freetds-dev freetds-bin dumb-init && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
Expand Down
2 changes: 1 addition & 1 deletion tools/structure/src/config/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"schemaVersion": "0.0.1",
"displayName": "Structure Tool",
"functionName": "structure_tool",
"toolVersion": "0.0.99",
"toolVersion": "0.0.100",
"description": "This is a template tool which can answer set of input prompts designed in the Prompt Studio",
"input": {
"description": "File that needs to be indexed and parsed for answers"
Expand Down
2 changes: 1 addition & 1 deletion tools/text_extractor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV \
PIP_DEFAULT_TIMEOUT=120

# Install dependencies for unstructured library's partition
RUN apt-get update && apt-get --no-install-recommends -y install dumb-init libmagic-dev poppler-utils\
RUN apt-get update && apt-get --no-install-recommends -y install dumb-init git libmagic-dev poppler-utils\
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion tools/text_extractor/src/config/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"schemaVersion": "0.0.1",
"displayName": "Text Extractor",
"functionName": "text_extractor",
"toolVersion": "0.0.74",
"toolVersion": "0.0.75",
"description": "The Text Extractor is a powerful tool designed to convert documents to its text form or Extract texts from documents",
"input": {
"description": "Document"
Expand Down
9 changes: 2 additions & 7 deletions unstract/filesystem/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions unstract/sdk1/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
"python-dotenv==1.0.1",
# # Adapter changes
"tiktoken~=0.9.0",
"litellm==1.82.3",
"litellm",
Comment thread
pk-zipstack marked this conversation as resolved.
"llama-index>=0.14.13",
"llama-index-vector-stores-postgres>=0.7.3",
"llama-index-vector-stores-milvus>=0.9.6",
Expand Down Expand Up @@ -71,7 +71,6 @@ docs = ["lazydocs~=0.4.8"]
test = [
"parameterized==0.9.0",
"pytest==8.3.3",
"pytest-asyncio>=0.23.0",
"pytest-mock==3.14.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
Expand All @@ -80,6 +79,7 @@ test = [

[tool.uv.sources]
unstract-core = { path = "../core", editable = true }
litellm = { git = "https://github.com/Zipstack/litellm.git", tag = "v1.82.3" }

[build-system]
requires = ["hatchling"]
Expand Down
9 changes: 2 additions & 7 deletions unstract/sdk1/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading