Skip to content

Commit f632764

Browse files
authored
docs(karpor): add DeepSeek AI backend option to installation guide (#107)
1 parent c1b7f65 commit f632764

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

charts/karpor/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: karpor
3-
version: 0.7.4
3+
version: 0.7.5
44
type: application
5-
appVersion: 0.6.2
5+
appVersion: 0.6.3
66
description: A modern kubernetes visualization tool (Karpor).
77
home: https://github.com/KusionStack/karpor
88
icon: https://kusionstack.io/karpor/assets/logo/logo.svg

charts/karpor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The Karpor Server Component is main backend server. It itself is an `apiserver`,
7272
|-----|------|---------|-------------|
7373
| 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. |
7474
| server.ai.authToken | string | `""` | Authentication token for accessing the AI service. |
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. |
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/>- `"deepseek"`: DeepSeek API<br/> If the backend you are using is compatible with OpenAI, then there is no need to make any changes here. |
7676
| server.ai.baseUrl | string | `""` | Base URL of the AI service. e.g., "https://api.openai.com/v1". |
7777
| server.ai.model | string | `"gpt-3.5-turbo"` | Name or identifier of the AI model to be used. e.g., "gpt-3.5-turbo". |
7878
| server.ai.proxy | object | `{"enabled":false,"httpProxy":"","httpsProxy":"","noProxy":""}` | Proxy configuration for AI service connections |

charts/karpor/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ server:
4949
# -- Base URL of the AI service. e.g., "https://api.openai.com/v1".
5050
baseUrl: ""
5151
# -- Backend service or platform that the AI model is hosted on. Available options:
52-
# <br/>- `"openai"`: OpenAI API (default)<br/>- `"azureopenai"`: Azure OpenAI Service<br/>- `"huggingface"`: Hugging Face API<br/>
52+
# <br/>- `"openai"`: OpenAI API (default)<br/>- `"azureopenai"`: Azure OpenAI Service
53+
# <br/>- `"huggingface"`: Hugging Face API<br/>- `"deepseek"`: DeepSeek API<br/>
5354
# If the backend you are using is compatible with OpenAI, then there is no need to make any changes here.
5455
backend: "openai"
5556
# -- Name or identifier of the AI model to be used. e.g., "gpt-3.5-turbo".

0 commit comments

Comments
 (0)