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
This chart supports an AI container for generating summaries. Users can choose between deploying an AI model inside the cluster (`bundled` mode) or connecting to an external AI service (`external` mode).
122
+
123
+
### **Configuring AI Integration**
124
+
Modify the `values.yaml` file to set AI mode, provider, and resources:
125
+
126
+
```bash
127
+
ai:
128
+
mode: "bundled"# Options: bundled | external
129
+
provider: "openai"# Can be "openai" or a custom provider
130
+
model: "gpt-4-turbo"
131
+
resources:
132
+
cpu: "2"
133
+
memory: "4Gi"
134
+
gpu: false
135
+
external:
136
+
url: ""# External AI service URL
137
+
apiKeySecret:
138
+
name: "ai-secrets"
139
+
key: "external-ai-key"
140
+
```
141
+
142
+
## AI Secrets
143
+
144
+
To securely store API keys for AI integration, you can create a `secret` that contains the necessary authentication credentials:
0 commit comments