Skip to content

Commit

Permalink
Minor fix the missing parameters for ingestion API (#27364)
Browse files Browse the repository at this point in the history
* miss

* chunk size

---------

Co-authored-by: Yuantao Wang <[email protected]>
  • Loading branch information
2 people authored and arifibrahim4 committed Feb 26, 2024
1 parent 021436c commit 152d077
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1201,6 +1201,18 @@
"name": "embeddingKey",
"description": "The key to use for accessing the embeddings model if enabled and if Managed Identity is not setup.",
"type": "string"
},
{
"in": "header",
"name": "storageEndpoint",
"description": "The blob storage endpoint hosting the data that will be ingested. Required for ResourceId format of storageConnectionString.",
"type": "string"
},
{
"in": "header",
"name": "embeddingDeploymentName",
"description": "The name of embedding deployment of the current Azure OpenAI resource to use for accessing the embeddings model.",
"type": "string"
}
],
"responses": {
Expand Down Expand Up @@ -2364,6 +2376,12 @@
"completionAction": {
"$ref": "#/definitions/IngestionJobCompletionAction"
},
"chunkSize": {
"type": "integer",
"format": "int32",
"default": 1024,
"description": "This number defines the maximum number of tokens in each chunk produced by the ingestion flow."
},
"status": {
"$ref": "#/definitions/OperationState"
},
Expand Down

0 comments on commit 152d077

Please sign in to comment.