forked from mckaywrigley/chatbot-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
34 lines (30 loc) · 839 Bytes
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
image:
repository: ghcr.io/mckaywrigley/chatbot-ui
tag: main
pullPolicy: IfNotPresent
service:
name: chatbot-ui
type: ClusterIP
port: 3000
env:
OPENAI_API_KEY: "sx-000000"
OPENAI_API_HOST: "https://api.openai.com"
OPENAI_API_TYPE: "openai"
OPENAI_API_VERSION: "2023-03-15-preview"
AZURE_DEPLOYMENT_ID: ""
OPENAI_ORGANIZATION: ""
DEFAULT_MODEL: "gpt-3.5-turbo"
NEXT_PUBLIC_DEFAULT_SYSTEM_PROMPT: "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown."
NEXT_PUBLIC_DEFAULT_TEMPERATURE: "1"
GOOGLE_API_KEY: ""
GOOGLE_CSE_ID: ""
ingress:
enabled: false
annotations: {}
hosts:
- host: chatbot-ui.example.com
paths:
- path: /
backend:
serviceName: chatbot-ui
servicePort: 3000