Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
180297b
[MISC] Decommission prompt-service, old tools, and SDK1 prompt module…
harini-venkataraman May 19, 2026
2e1bc54
[MISC] Remove prompt-service from tox.ini env_list
harini-venkataraman May 20, 2026
7bdff5a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 20, 2026
4774926
UN-2888 [FIX] Add hook for setting default triad for invited users (#…
pk-zipstack May 19, 2026
fd6e3e7
UN-3465 [FIX] Wrap set_user_organization in transaction.atomic (#1954)
chandrasekharan-zipstack May 19, 2026
c3c729d
UN-3386 [FEAT] Add Prompt Studio HITL change indicator plugin slot (#…
vishnuszipstack May 19, 2026
de78b7a
Add a dedicated OpenAI-compatible LLM adapter (#1895)
jimmyzhuu May 19, 2026
c1a42aa
ReverseMerge: V0.163.4 hotfix (#1980)
pk-zipstack May 21, 2026
a7a035a
UN-3476 [FIX] Revert atomic wrap on set_user_organization (#1977)
chandrasekharan-zipstack May 21, 2026
0619756
Merge remote-tracking branch 'origin/main' into feat/phase5-decommiss…
harini-venkataraman May 21, 2026
093a6b4
Restore text_extractor tool removed in Phase 5 decommission
harini-venkataraman May 26, 2026
13cfe5b
Restore classifier tool removed in Phase 5 decommission
harini-venkataraman Jun 1, 2026
db834ba
Merge origin/main into feat/phase5-decommission-old-components
harini-venkataraman Jun 12, 2026
55f873a
Remove unit-prompt-service group from test rig manifest
harini-venkataraman Jun 12, 2026
0b5508b
Merge branch 'main' into feat/phase5-decommission-old-components
harini-venkataraman Jun 12, 2026
01b404a
Merge origin/main into feat/phase5-decommission-old-components
harini-venkataraman Jun 29, 2026
03bb4f6
Merge branch 'feat/phase5-decommission-old-components' of github.com:…
harini-venkataraman Jun 29, 2026
3eac9cf
Remove deleted prompt-service and structure tool refs from bump script
harini-venkataraman Jun 29, 2026
f645e19
Fix stale references from decommissioned components
harini-venkataraman Jun 29, 2026
1a0cfc0
Trigger CI re-run
harini-venkataraman Jun 29, 2026
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
16 changes: 6 additions & 10 deletions .github/workflows/docker-tools-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ on:
service_name:
description: "Tool to build"
required: true
default: "tool-structure" # Provide a default value
default: "tool-sidecar" # Provide a default value
Comment thread
harini-venkataraman marked this conversation as resolved.
type: choice
options: # Define available options
- tool-sidecar
- tool-classifier
- tool-structure
- tool-text-extractor
- tool-sidecar
add_latest_tag:
description: "Also tag as 'latest'"
required: false
Expand Down Expand Up @@ -58,18 +57,15 @@ jobs:
- name: Set build configuration
id: build-config
run: |
if [ "${{ github.event.inputs.service_name }}" == "tool-classifier" ]; then
if [ "${{ github.event.inputs.service_name }}" == "tool-sidecar" ]; then
echo "context=." >> $GITHUB_OUTPUT
echo "dockerfile=./tools/classifier/Dockerfile" >> $GITHUB_OUTPUT
elif [ "${{ github.event.inputs.service_name }}" == "tool-structure" ]; then
echo "dockerfile=docker/dockerfiles/tool-sidecar.Dockerfile" >> $GITHUB_OUTPUT
elif [ "${{ github.event.inputs.service_name }}" == "tool-classifier" ]; then
echo "context=." >> $GITHUB_OUTPUT
echo "dockerfile=./tools/structure/Dockerfile" >> $GITHUB_OUTPUT
echo "dockerfile=./tools/classifier/Dockerfile" >> $GITHUB_OUTPUT
elif [ "${{ github.event.inputs.service_name }}" == "tool-text-extractor" ]; then
echo "context=." >> $GITHUB_OUTPUT
echo "dockerfile=./tools/text_extractor/Dockerfile" >> $GITHUB_OUTPUT
elif [ "${{ github.event.inputs.service_name }}" == "tool-sidecar" ]; then
echo "context=." >> $GITHUB_OUTPUT
echo "dockerfile=docker/dockerfiles/tool-sidecar.Dockerfile" >> $GITHUB_OUTPUT
fi
Comment thread
coderabbitai[bot] marked this conversation as resolved.

# Determine tags based on inputs
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/production-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ jobs:
backend,
frontend,
platform-service,
prompt-service,
runner,
worker-unified,
x2text-service,
Expand Down Expand Up @@ -225,7 +224,7 @@ jobs:
id: summary
run: |
# Initialize variables
TOTAL_SERVICES=7
TOTAL_SERVICES=6
OVERALL_RESULT='${{ needs.build-and-push.result }}'
SUCCESS_COUNT=0
FAILED_COUNT=0
Expand Down Expand Up @@ -316,7 +315,7 @@ jobs:
echo "|---------|--------|" >> $GITHUB_STEP_SUMMARY

# Define services in order
for service in backend frontend platform-service prompt-service runner worker-unified x2text-service; do
for service in backend frontend platform-service runner worker-unified x2text-service; do
Comment thread
harini-venkataraman marked this conversation as resolved.
if [ -f "build-status/${service}.json" ]; then
STATUS=$(jq -r '.status' "build-status/${service}.json")
if [ "$STATUS" = "success" ]; then
Expand Down
2 changes: 0 additions & 2 deletions backend/backend/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ def get_required_setting(setting_key: str, default: str | None = None) -> str |
FLIPT_BASE_URL = os.environ.get("FLIPT_BASE_URL", "http://localhost:9005")
PLATFORM_HOST = os.environ.get("PLATFORM_SERVICE_HOST", "http://localhost")
PLATFORM_PORT = os.environ.get("PLATFORM_SERVICE_PORT", 3001)
PROMPT_HOST = os.environ.get("PROMPT_HOST", "http://localhost")
PROMPT_PORT = os.environ.get("PROMPT_PORT", 3003)
PROMPT_STUDIO_FILE_PATH = os.environ.get(
"PROMPT_STUDIO_FILE_PATH", "/app/prompt-studio-data"
)
Expand Down
4 changes: 0 additions & 4 deletions backend/sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ UNSTRACT_RUNNER_API_TIMEOUT=240 # (in seconds) 2 mins
UNSTRACT_RUNNER_API_RETRY_COUNT=5 # Number of retries for failed requests
UNSTRACT_RUNNER_API_BACKOFF_FACTOR=3 # Exponential backoff factor for retries

# Prompt Service
PROMPT_HOST=http://unstract-prompt-service
PROMPT_PORT=3003

#Prompt Studio
PROMPT_STUDIO_FILE_PATH=/app/prompt-studio-data

Expand Down
16 changes: 0 additions & 16 deletions docker/compose.debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# 5678 - backend
# 5679 - runner
# 5680 - platform-service
# 5681 - prompt-service
# 5682 - worker-file-processing-v2
# 5683 - worker-callback-v2
# 5684 - worker-api-deployment-v2
Expand Down Expand Up @@ -65,21 +64,6 @@ services:
--graceful-timeout 5 unstract.platform_service.run:app"
]

prompt-service:
ports:
- "5681:5681"
command: [
"uv run python -Xfrozen_modules=off -m debugpy --listen 0.0.0.0:5681 .venv/bin/gunicorn
--bind 0.0.0.0:3003
--workers 1
--threads 2
--worker-class gthread
--log-level debug
--timeout 900
--access-logfile -
--graceful-timeout 5 unstract.prompt_service.run:app"
]

#########################################################################################################
# V2 Workers with debugpy
# Using --pool=threads for debugpy compatibility (prefork doesn't work well with debugpy)
Expand Down
28 changes: 9 additions & 19 deletions docker/docker-compose.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,35 +20,25 @@ services:
build:
dockerfile: docker/dockerfiles/tool-sidecar.Dockerfile
context: ..
tool-structure:
image: unstract/tool-structure:${VERSION}
platform-service:
image: unstract/platform-service:${VERSION}
build:
dockerfile: tools/structure/Dockerfile
dockerfile: docker/dockerfiles/platform.Dockerfile
context: ..
tool-text_extractor:
image: unstract/tool-text_extractor:${VERSION}
x2text-service:
image: unstract/x2text-service:${VERSION}
build:
dockerfile: tools/text_extractor/Dockerfile
dockerfile: docker/dockerfiles/x2text.Dockerfile
context: ..
tool-classifier:
image: unstract/tool-classifier:${VERSION}
build:
dockerfile: tools/classifier/Dockerfile
context: ..
platform-service:
image: unstract/platform-service:${VERSION}
build:
dockerfile: docker/dockerfiles/platform.Dockerfile
context: ..
prompt-service:
image: unstract/prompt-service:${VERSION}
build:
dockerfile: docker/dockerfiles/prompt.Dockerfile
context: ..
x2text-service:
image: unstract/x2text-service:${VERSION}
tool-text_extractor:
image: unstract/tool-text-extractor:${VERSION}
build:
dockerfile: docker/dockerfiles/x2text.Dockerfile
dockerfile: tools/text_extractor/Dockerfile
context: ..
Comment thread
harini-venkataraman marked this conversation as resolved.
# Unified worker image (replaces all individual worker images)
worker-unified:
Expand Down
18 changes: 0 additions & 18 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ services:
- minio
- minio-bootstrap
- platform-service
- prompt-service
- x2text-service
volumes:
- prompt_studio_data:/app/prompt-studio-data
Expand Down Expand Up @@ -164,23 +163,6 @@ services:
labels:
- traefik.enable=false

prompt-service:
<<: *host_gateway
image: unstract/prompt-service:${VERSION}
container_name: unstract-prompt-service
restart: unless-stopped
depends_on:
- db
- minio
- minio-bootstrap
- rabbitmq
ports:
- "3003:3003"
env_file:
- ../prompt-service/.env
labels:
- traefik.enable=false

x2text-service:
image: unstract/x2text-service:${VERSION}
container_name: unstract-x2text-service
Expand Down
101 changes: 0 additions & 101 deletions docker/dockerfiles/prompt.Dockerfile

This file was deleted.

67 changes: 0 additions & 67 deletions docker/dockerfiles/prompt.Dockerfile.dockerignore

This file was deleted.

Loading
Loading