Skip to content

Commit 4c66e1f

Browse files
docs(provider_specific_params.md): fix docs
1 parent 52a56bd commit 4c66e1f

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

docs/my-website/docs/completion/provider_specific_params.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -423,16 +423,17 @@ model_list:
423423
curl -X POST 'http://0.0.0.0:4000/chat/completions' \
424424
-H 'Content-Type: application/json' \
425425
-H 'Authorization: Bearer sk-1234' \
426-
-D '{
426+
-d '{
427427
"model": "llama-3-8b-instruct",
428428
"messages": [
429429
{
430430
"role": "user",
431431
"content": "What'\''s the weather like in Boston today?"
432432
}
433433
],
434-
"adapater_id": "my-special-adapter-id" # 👈 PROVIDER-SPECIFIC PARAM
435-
}'
434+
"adapater_id": "my-special-adapter-id"
435+
}'
436+
```
436437

437438
## Provider-Specific Metadata Parameters
438439

@@ -482,5 +483,4 @@ response = litellm.completion(
482483
```
483484

484485
</TabItem>
485-
</Tabs>
486-
```
486+
</Tabs>

docs/my-website/sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,7 @@ const sidebars = {
546546
items: [
547547
"set_keys",
548548
"completion/token_usage",
549+
"sdk/headers",
549550
"sdk_custom_pricing",
550551
"embedding/async_embedding",
551552
"embedding/moderation",

0 commit comments

Comments
 (0)