Skip to content
Open
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
12 changes: 2 additions & 10 deletions compose/seatable-ai-standalone.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
services:
seatable-ai:
image: ${SEATABLE_AI_IMAGE:-seatable/seatable-ai:6.1.8}
image: ${SEATABLE_AI_IMAGE:-seatable/seatable-ai:6.2.0}
restart: unless-stopped
container_name: seatable-ai
volumes:
- ${SEATABLE_AI_VOLUME:-/opt/seatable-ai/}:/shared
- ${SEATABLE_VOLUME:-/opt/seatable-server/}:/shared
ports:
- "8888:8888"
environment:
Expand All @@ -22,14 +22,6 @@ services:
- SEATABLE_SERVER_URL=${SEATABLE_SERVER_URL:?Variable is not set or empty}
- INNER_DTABLE_SERVER_URL=${INNER_DTABLE_SERVER_URL:?Variable is not set or empty}
- INNER_DTABLE_DB_URL=${INNER_DTABLE_DB_URL:?Variable is not set or empty}
- SEATABLE_AI_LLM_TYPE=${SEATABLE_AI_LLM_TYPE:?Variable is not set or empty}
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Multiple LLMs can now be configured, and in 6.2, they should be configured in seatable_config.yaml

- SEATABLE_AI_LLM_URL=${SEATABLE_AI_LLM_URL:-}
- SEATABLE_AI_LLM_KEY=${SEATABLE_AI_LLM_KEY:-}
- SEATABLE_AI_LLM_MODEL=${SEATABLE_AI_LLM_MODEL:?Variable is not set or empty}
- SEATABLE_AI_LLM_TIMEOUT=${SEATABLE_AI_LLM_TIMEOUT:-180}
- ENABLE_SEARCH=${ENABLE_SEARCH:-false}
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SEARCH feature is deleted

- SEASEARCH_SERVER_URL=${SEASEARCH_SERVER_URL:-}
- SEASEARCH_TOKEN=${SEASEARCH_TOKEN:-}
healthcheck:
test: ["CMD-SHELL", "curl --fail http://localhost:8888 || exit 1"]
interval: 20s
Expand Down
12 changes: 2 additions & 10 deletions compose/seatable-ai.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
services:
seatable-ai:
image: ${SEATABLE_AI_IMAGE:-seatable/seatable-ai:6.1.8}
image: ${SEATABLE_AI_IMAGE:-seatable/seatable-ai:6.2.0}
restart: unless-stopped
container_name: seatable-ai
volumes:
- ${SEATABLE_AI_VOLUME:-/opt/seatable-ai/}:/shared
- ${SEATABLE_VOLUME:-/opt/seatable-server/}:/shared
environment:
- TIME_ZONE=${TIME_ZONE}
- SEATABLE_MYSQL_DB_HOST=${MARIADB_HOST:-mariadb}
Expand All @@ -20,14 +20,6 @@ services:
- SEATABLE_SERVER_URL=${SEATABLE_SERVER_URL:-http://seatable-server}
- INNER_DTABLE_SERVER_URL=${INNER_DTABLE_SERVER_URL:-http://seatable-server:5000}
- INNER_DTABLE_DB_URL=${INNER_DTABLE_DB_URL:-http://seatable-server:7777}
- SEATABLE_AI_LLM_TYPE=${SEATABLE_AI_LLM_TYPE:?Variable is not set or empty}
- SEATABLE_AI_LLM_URL=${SEATABLE_AI_LLM_URL:-}
- SEATABLE_AI_LLM_KEY=${SEATABLE_AI_LLM_KEY:-}
- SEATABLE_AI_LLM_MODEL=${SEATABLE_AI_LLM_MODEL:?Variable is not set or empty}
- SEATABLE_AI_LLM_TIMEOUT=${SEATABLE_AI_LLM_TIMEOUT:-180}
- ENABLE_SEARCH=${ENABLE_SEARCH:-false}
- SEASEARCH_SERVER_URL=${SEASEARCH_SERVER_URL:-}
- SEASEARCH_TOKEN=${SEASEARCH_TOKEN:-}
depends_on:
- mariadb
- redis
Expand Down
2 changes: 1 addition & 1 deletion compose/seatable-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:
- SEATABLE_HELP_LINK=${SEATABLE_HELP_LINK:-https://help.seatable.com}
- SEATABLE_LOG_LEVEL=${SEATABLE_LOG_LEVEL:-INFO}
- ENABLE_SEATABLE_AI=${ENABLE_SEATABLE_AI:-false}
- SEATABLE_AI_SERVER_URL=${SEATABLE_AI_SERVER_URL:-http://seatable-ai:8888}
- INNER_SEATABLE_AI_SERVER_URL=${INNER_SEATABLE_AI_SERVER_URL:-http://seatable-ai:8888}
labels:
caddy_0: ${SEATABLE_SERVER_PROTOCOL:-https}://${SEATABLE_SERVER_HOSTNAME:?Variable is not set or empty}
caddy_0.reverse_proxy: "{{upstreams 80}}"
Expand Down