Merge branch 'main' into adil/add_support_json_content_type

This commit is contained in:
Adil Hafeez 2025-05-22 23:00:42 -07:00
commit 739c52b91c
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
9 changed files with 212 additions and 49 deletions

View file

@ -19,9 +19,8 @@ overrides:
llm_providers:
- name: groq
access_key: $GROQ_API_KEY
provider_interface: openai
provider_interface: groq
model: llama-3.2-3b-preview
base_url: https://api.groq.com
- name: gpt-4o
access_key: $OPENAI_API_KEY

View file

@ -17,6 +17,12 @@ do
docker compose up -d 2>&1 > /dev/null
echo "starting hurl tests"
hurl --test hurl_tests/*.hurl
if [ $? -ne 0 ]; then
echo "Hurl tests failed for $demo"
echo "docker logs for archgw:"
docker logs archgw
exit 1
fi
echo "stopping docker containers and archgw"
archgw down
docker compose down -v

View file

@ -12,7 +12,6 @@ llm_providers:
access_key: $OPENAI_API_KEY
provider_interface: openai
model: gpt-4o-mini
default: true
- name: gpt-4o
access_key: $OPENAI_API_KEY
@ -24,17 +23,21 @@ llm_providers:
provider_interface: mistral
model: ministral-3b-latest
- name: claude-sonnet
access_key: $ANTHROPY_API_KEY
provider_interface: claude
model: claude-3-7-sonnet-latest
default: true
- name: deepseek
access_key: $DEEPSEEK_API_KEY
provider_interface: openai
provider_interface: deepseek
model: deepseek-reasoner
base_url: https://api.deepseek.com/
- name: groq
access_key: $GROQ_API_KEY
provider_interface: openai
provider_interface: groq
model: llama-3.1-8b-instant
base_url: https://api.groq.com
tracing:
random_sampling: 100