Skip to content

Commit

Permalink
fix invalid type (#1220)
Browse files Browse the repository at this point in the history
This fixes the error when you run python start.py
Please wait while AGiXT is starting, this can take several minutes...
Press Ctrl+C to stop the containers and exit.
Executing: docker-compose -f docker-compose.yml stop && docker-compose -f docker-compose.yml pull && docker-compose -f docker-compose.yml up -d
The Compose file './docker-compose.yml' is invalid because:
services.agixt.environment.TOKENIZERS_PARALLELISM contains false, which is an invalid type, it should be a string, number, or a null
An error occurred: Command 'docker-compose -f docker-compose.yml stop && docker-compose -f docker-compose.yml pull && docker-compose -f docker-compose.yml up -d' returned non-zero exit status 1.

Signed-off-by: Birdup <[email protected]>
  • Loading branch information
birdup000 authored Jul 9, 2024
1 parent 3fdc2b9 commit 7be9f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
DISABLED_PROVIDERS: ${DISABLED_PROVIDERS}
WORKING_DIRECTORY: ${WORKING_DIRECTORY:-/agixt/WORKSPACE}
REGISTRATION_DISABLED: ${REGISTRATION_DISABLED:-false}
TOKENIZERS_PARALLELISM: False
TOKENIZERS_PARALLELISM: "false"
LOG_LEVEL: ${LOG_LEVEL:-INFO}
AOL_CLIENT_ID: ${AOL_CLIENT_ID}
AOL_CLIENT_SECRET: ${AOL_CLIENT_SECRET}
Expand Down

0 comments on commit 7be9f5e

Please sign in to comment.