Skip to content

Commit 1adb2cc

Browse files
fix template errors
1 parent ebd2597 commit 1adb2cc

File tree

1 file changed

+4
-4
lines changed
  • samples/microsoft/python/getting-started-agents/agent-catalog/3p-agent-samples/azure-ai-agent-service-blueprints/auquan/python

1 file changed

+4
-4
lines changed

samples/microsoft/python/getting-started-agents/agent-catalog/3p-agent-samples/azure-ai-agent-service-blueprints/auquan/python/template.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@
4747
API Usage Guidelines:
4848
Use the action tool shared which deals with the "https://agents.auquan.com/api/analyze-query" and has details like:
4949
1. Authentication:
50-
- Use the provided API key directly in the X-API-Key header
50+
- Use the provided API key directly in the x-api-key header
5151
- No need for JWT tokens or token refresh
5252
- API keys do not expire
5353
- Example request format:
5454
```bash
55-
curl -X POST "https://agents-backend.auquan.com/api/analyze-query" \
55+
curl -X POST "https://agents.auquan.com/api/analyze-query" \
5656
-H "x-api-key: YOUR_API_KEY" \
5757
-H "Content-Type: application/json" \
5858
-d '{"query": "do a risk analysis for company_name"}'
@@ -61,7 +61,7 @@
6161
2. Error Handling:
6262
- 401 Unauthorized:
6363
- API key is invalid or missing
64-
- Check the X-API-Key header is correctly set
64+
- Check the x-api-key header is correctly set
6565
- Verify the API key is valid
6666
- 500 Internal Server Error:
6767
- Server-side issue
@@ -79,7 +79,7 @@
7979
```bash
8080
# Make analysis request
8181
curl -X POST "https://agents.auquan.com/api/analyze-query" \
82-
-H "X-API-Key: YOUR_API_KEY" \
82+
-H "x-api-key: YOUR_API_KEY" \
8383
-H "Content-Type: application/json" \
8484
-d '{"query": "do a risk analysis for company_name"}'
8585
```

0 commit comments

Comments
 (0)