Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/karpor/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: karpor
version: 0.7.4
version: 0.7.5
type: application
appVersion: 0.6.2
appVersion: 0.6.3
description: A modern kubernetes visualization tool (Karpor).
home: https://github.com/KusionStack/karpor
icon: https://kusionstack.io/karpor/assets/logo/logo.svg
Expand Down
2 changes: 1 addition & 1 deletion charts/karpor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The Karpor Server Component is main backend server. It itself is an `apiserver`,
|-----|------|---------|-------------|
| 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. |
| server.ai.authToken | string | `""` | Authentication token for accessing the AI service. |
| 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. |
| 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/>- `"deepseek"`: DeepSeek API<br/> If the backend you are using is compatible with OpenAI, then there is no need to make any changes here. |
| server.ai.baseUrl | string | `""` | Base URL of the AI service. e.g., "https://api.openai.com/v1". |
| server.ai.model | string | `"gpt-3.5-turbo"` | Name or identifier of the AI model to be used. e.g., "gpt-3.5-turbo". |
| server.ai.proxy | object | `{"enabled":false,"httpProxy":"","httpsProxy":"","noProxy":""}` | Proxy configuration for AI service connections |
Expand Down
3 changes: 2 additions & 1 deletion charts/karpor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ server:
# -- Base URL of the AI service. e.g., "https://api.openai.com/v1".
baseUrl: ""
# -- 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/>
# <br/>- `"openai"`: OpenAI API (default)<br/>- `"azureopenai"`: Azure OpenAI Service
# <br/>- `"huggingface"`: Hugging Face API<br/>- `"deepseek"`: DeepSeek API<br/>
# If the backend you are using is compatible with OpenAI, then there is no need to make any changes here.
backend: "openai"
# -- Name or identifier of the AI model to be used. e.g., "gpt-3.5-turbo".
Expand Down