We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3581c82 commit 6e477d0Copy full SHA for 6e477d0
1 file changed
.github/workflows/example.yml
@@ -59,6 +59,22 @@ jobs:
59
pip3 install -r requirements-test.txt
60
pip3 install -r pipeline_test/requirements.txt
61
62
+ - name: Debug model raw response
63
+ run: |
64
+ curl -sS -w "\nHTTP_STATUS=%{http_code}\n" "$TRPC_AGENT_BASE_URL/chat/completions" \
65
+ -H "Authorization: Bearer $TRPC_AGENT_API_KEY" \
66
+ -H "Content-Type: application/json" \
67
+ -d '{
68
+ "model": "'"$TRPC_AGENT_MODEL_NAME"'",
69
+ "messages": [
70
+ {
71
+ "role": "user",
72
+ "content": "Say hello in one short English sentence."
73
+ }
74
+ ],
75
+ "stream": false
76
+ }'
77
+
78
- name: Run example smoke suite
79
run: |
80
bash pipeline_test/run_agent_examples.sh "${{ inputs.suite }}"
0 commit comments