Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vedpatwardhan committed Sep 10, 2024
1 parent c464764 commit 7047b8e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api-reference/llm_queries/chat_completions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ Comma-separated list of tags to associate with the corresponding prompt.
Whether or not to drop unsupported OpenAI params by the provider you're using
</ParamField>

<ParamField body="region" type="string | null" >
A string used to represent the region where the endpoint is accessed. This is only relevant for certain providers like `vertex-ai`, `azure-ai` and `aws-bedrock`, where the endpoint is being accessed through a specified region.
</ParamField>

<RequestExample>

```bash cURL
Expand Down
12 changes: 12 additions & 0 deletions api-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3632,6 +3632,18 @@
"description": "Whether or not to drop unsupported OpenAI params by the provider you're using",
"default": true,
"example": true
},
"region": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Region",
"description": "A string used to represent the region where the endpoint is accessed. This is only relevant for certain providers like `vertex-ai`, `azure-ai` and `aws-bedrock`, where the endpoint is being accessed through a specified region."
}
},
"additionalProperties": true,
Expand Down

0 comments on commit 7047b8e

Please sign in to comment.