Skip to content
Merged
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
28 changes: 23 additions & 5 deletions site-src/guides/serve-multiple-genai-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,18 @@ kubectl get httproute llm-phi4-route -o yaml
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/Llama-3.1-8B-Instruct",
"prompt": "Linux is said to be an open source kernel because ",
"max_tokens": 100,
"temperature": 0
"temperature": 0,
"messages": [
{
"role": "developer",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Linux is said to be an open source kernel because "
}
]
}'
```

Expand All @@ -192,9 +201,18 @@ kubectl get httproute llm-phi4-route -o yaml
-H "Content-Type: application/json" \
-d '{
"model": "microsoft/Phi-4-mini-instruct",
"prompt": "2+2 is ",
"max_tokens": 20,
"temperature": 0
"max_tokens": 100,
"temperature": 0,
"messages": [
{
"role": "developer",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "2+2 is "
}
]
}'
```

Expand Down