fix: use uv instead of poetry in CI tests

This commit is contained in:
Andrej Milicevic 2025-11-25 13:34:18 +01:00
parent 4c6bed885e
commit 9e652a3a93

View file

@ -110,7 +110,7 @@ jobs:
EMBEDDING_MODEL: "amazon.titan-embed-text-v2:0"
EMBEDDING_DIMENSIONS: "1024"
EMBEDDING_MAX_TOKENS: "8191"
run: poetry run python ./examples/python/simple_example.py
run: uv run python ./examples/python/simple_example.py
test-bedrock-aws-credentials:
name: Run Bedrock AWS Credentials Test
@ -138,7 +138,7 @@ jobs:
EMBEDDING_MODEL: "amazon.titan-embed-text-v2:0"
EMBEDDING_DIMENSIONS: "1024"
EMBEDDING_MAX_TOKENS: "8191"
run: poetry run python ./examples/python/simple_example.py
run: uv run python ./examples/python/simple_example.py
test-bedrock-aws-profile:
name: Run Bedrock AWS Profile Test
@ -171,4 +171,4 @@ jobs:
EMBEDDING_MODEL: "amazon.titan-embed-text-v2:0"
EMBEDDING_DIMENSIONS: "1024"
EMBEDDING_MAX_TOKENS: "8191"
run: poetry run python ./examples/python/simple_example.py
run: uv run python ./examples/python/simple_example.py