
{"LLMType": "openai", // fixed as "openai""Model": "gpt-4o-mini", // model name, supports LLMs compliant with OpenAI Protocol scale such as "hunyuan-standard", "deepseek-chat""APIKey": "114514", // The large model key is used to validate the identity of the requester. Please visit the model service provider's website to obtain authentication information."APIUrl": "https://xxx/v1/chat/completions" // Large model API address}
Parameter | GPT | Deepseek |
Model | "gpt-4o-mini", "gpt-4o" | "deepseek-chat" |
API Key | To obtain related authentication information, see OpenAI Official Website | To obtain related authentication information, see Deepseek Official Website |
API URL | "https://api.openai.com/v1/" | "https://api.deepseek.com/v1" |
{"LLMType": "azure", //"Model": "gpt-4o-mini", // model name"APIKey": "114514", // The large model key is used to verify the requester's identity."APIUrl": "https://{your-resource-name}.openai.azure.com?api-version={api-version}"" // Large model API address}
Parameter | Example | Description |
LLM Type | azure | Protocol Name. |
Model | gpt-4o-mini | Model Name. |
API Key | 114514 | The large model key is used to verify the identity of the requester. For the specific acquisition method, refer to Azure OpenAI service documentation. |
API URL | https://{your-resource-name}.openai.azure.com?api-version={api-version} | Model API address. |
{"LLMType": "minimax", //"Model": "abab6.5s-chat", // model name"APIKey": "114514", // The large model key is used to verify the requester's identity."APIUrl": "https://api.minimax.chat/v1" // Large model API address}
Parameter | Example | Description |
LLM Type | minimax | Protocol Name. |
Model | abab6.5s-chat | Model Name. |
API Key | 114514 | The large model key is used to verify the identity of the requester. For the specific acquisition method, refer to MiniMax Open Platform official website document. |
API URL | https://api.minimax.chat/v1 | Model API address. |
Feedback