From 9e652a3a935fecf7d973e9478bff2237df1cf09d Mon Sep 17 00:00:00 2001 From: Andrej Milicevic Date: Tue, 25 Nov 2025 13:34:18 +0100 Subject: [PATCH] fix: use uv instead of poetry in CI tests --- .github/workflows/test_llms.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_llms.yml b/.github/workflows/test_llms.yml index 0cbbc7b3a..cc21dc97b 100644 --- a/.github/workflows/test_llms.yml +++ b/.github/workflows/test_llms.yml @@ -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 \ No newline at end of file + run: uv run python ./examples/python/simple_example.py \ No newline at end of file