Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions content/docs/ai/cloud-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ For more information, see the overrides in the [LLM provider API docs](/docs/ref
app: ai-gateway
type: Opaque
stringData:
api-key: $AZURE_KEY
Authorization: $AZURE_KEY
EOF
```

Expand Down Expand Up @@ -250,9 +250,6 @@ For more information, see the overrides in the [LLM provider API docs](/docs/ref
secretRef:
name: azure-openai-secret
model: gpt-4o
authHeaderOverride:
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't exist in the latest v1.3.0 CRDs (see Backend).

headerName: api-key
prefix: ""
type: AI
EOF
```
Expand Down Expand Up @@ -303,7 +300,7 @@ For more information, see the overrides in the [LLM provider API docs](/docs/ref
```bash
curl "$INGRESS_GW_ADDRESS:8080/azure-openai" \
-H "Content-Type: application/json" \
-H "api-key: $API_KEY" \
-H "Authorization: $API_KEY" \
-d '{
"messages": [
{"role": "user", "content": "Hello from Azure OpenAI!"}
Expand All @@ -318,7 +315,7 @@ For more information, see the overrides in the [LLM provider API docs](/docs/ref
```bash
curl "localhost:8080/azure-openai" \
-H "Content-Type: application/json" \
-H "api-key: $API_KEY" \
-H "Authorization: $API_KEY" \
-d '{
"messages": [
{"role": "user", "content": "Hello from Azure OpenAI!"}
Expand Down