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
Copy file name to clipboardExpand all lines: charts/karpor/README.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -70,11 +70,16 @@ The Karpor Server Component is main backend server. It itself is an `apiserver`,
70
70
71
71
| Key | Type | Default | Description |
72
72
|-----|------|---------|-------------|
73
-
| server.ai | object |`{"authToken":"","backend":"openai","baseUrl":"","model":"gpt-3.5-turbo","temperature":1,"topP":1}`| AI configuration section. The AI analysis feature requires that [authToken, baseUrl] be assigned values. |
73
+
| server.ai | object |`{"authToken":"","backend":"openai","baseUrl":"","model":"gpt-3.5-turbo","proxy":{"enabled":false,"httpProxy":"","httpsProxy":"","noProxy":""},"temperature":1,"topP":1}`| AI configuration section. The AI analysis feature requires that [authToken, baseUrl] be assigned values. |
74
74
| server.ai.authToken | string |`""`| Authentication token for accessing the AI service. |
75
75
| server.ai.backend | string |`"openai"`| Backend service or platform that the AI model is hosted on. Available options: <br/>- `"openai"`: OpenAI API (default)<br/>- `"azureopenai"`: Azure OpenAI Service<br/>- `"huggingface"`: Hugging Face API<br/> If the backend you are using is compatible with OpenAI, then there is no need to make any changes here. |
76
76
| server.ai.baseUrl | string |`""`| Base URL of the AI service. e.g., "https://api.openai.com/v1".|
77
77
| server.ai.model | string |`"gpt-3.5-turbo"`| Name or identifier of the AI model to be used. e.g., "gpt-3.5-turbo". |
78
+
| server.ai.proxy | object |`{"enabled":false,"httpProxy":"","httpsProxy":"","noProxy":""}`| Proxy configuration for AI service connections |
79
+
| server.ai.proxy.enabled | bool |`false`| Enable proxy settings for AI service connections. When false, proxy settings will be ignored. |
80
+
| server.ai.proxy.httpProxy | string |`""`| HTTP proxy URL for AI service connections (e.g., "http://proxy.example.com:8080")|
81
+
| server.ai.proxy.httpsProxy | string |`""`| HTTPS proxy URL for AI service connections (e.g., "https://proxy.example.com:8080")|
82
+
| server.ai.proxy.noProxy | string |`""`| No proxy configuration for AI service connections (e.g., "localhost,127.0.0.1,example.com") |
78
83
| server.ai.temperature | float |`1`| Temperature parameter for the AI model. This controls the randomness of the output, where a higher value (e.g., 1.0) makes the output more random, and a lower value (e.g., 0.0) makes it more deterministic. |
79
84
| server.ai.topP | float |`1`| Top-p (nucleus sampling) parameter for the AI model. This controls Controls the probability mass to consider for sampling, where a higher value leads to greater diversity in the generated content (typically ranging from 0 to 1) |
80
85
| server.enableRbac | bool |`false`| Enable RBAC authorization if set to true. |
0 commit comments