You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
They were removed in PR 4212.
(cherry picked from commit dcfb0ff)
# Conflicts:
# output/schema/schema.json
# specification/inference/_types/CommonTypes.ts
Copy file name to clipboardExpand all lines: specification/inference/_types/CommonTypes.ts
+19-11Lines changed: 19 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -754,24 +754,32 @@ export class CohereTaskSettings {
754
754
truncate?: CohereTruncateType
755
755
}
756
756
757
-
exportclassEisServiceSettings{
757
+
exportclassDeepSeekServiceSettings{
758
758
/**
759
-
* The name of the model to use for the inference task.
759
+
* A valid API key for your DeepSeek account.
760
+
* You can find or create your DeepSeek API keys on the DeepSeek API key page.
761
+
*
762
+
* IMPORTANT: You need to provide the API key only once, during the inference model creation.
763
+
* The get inference endpoint API does not retrieve your API key.
764
+
* After creating the inference model, you cannot change the associated API key.
765
+
* If you want to use a different API key, delete the inference model and recreate it with the same name and the updated API key.
766
+
* @ext_doc_id deepseek-api-keys
767
+
*/
768
+
api_key: string
769
+
/**
770
+
* For a `completion` or `chat_completion` task, the name of the model to use for the inference task.
771
+
*
772
+
* For the available `completion` and `chat_completion` models, refer to the [DeepSeek Models & Pricing docs](https://api-docs.deepseek.com/quick_start/pricing).
760
773
*/
761
774
model_id: string
762
775
/**
763
-
* This setting helps to minimize the number of rate limit errors returned.
764
-
* By default, the `elastic` service sets the number of requests allowed per minute to `240` in case of `chat_completion`.
776
+
* The URL endpoint to use for the requests. Defaults to `https://api.deepseek.com/chat/completions`.
0 commit comments