We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 781701e commit 0466c47Copy full SHA for 0466c47
docs/reference/configuration/ai.md
@@ -5,13 +5,19 @@
5
```toml
6
[ai.openai]
7
api_key = "YOUR_API_KEY"
8
+# optional, default is the official OpenAI API endpoint
9
+api_endpoint = "YOUR_API_ENDPOINT"
10
model = "gpt-4"
11
12
[ai.deepseek]
13
14
+# optional, default is the official DeepSeek API endpoint
15
16
model = "deepseek-chat"
17
18
[ai.anthropic]
19
20
+# optional, default is the official Anthropic API endpoint
21
22
model = "claude-3-5-sonnet-latest"
23
```
0 commit comments