hive-apps/projects/ai/values/bibot.yml

79 lines
1.7 KiB
YAML
Raw Normal View History

2024-03-12 20:30:06 +00:00
controllers:
main:
containers:
main:
image:
repository: reg.dc/bibot
tag: latest
pullPolicy: Always
2024-03-13 11:04:45 +00:00
env:
2024-03-17 11:48:50 +00:00
BIBOT_CONFIG: /config/bibot.yml
2024-03-13 11:04:45 +00:00
BROWSERLESS_URL: http://browserless.browserless.svc.cluster.local:3000
2024-03-15 09:43:30 +00:00
OMBI_API_URL: http://ombi.ombi.svc.cluster.local:3579/api/v1
2024-03-13 11:04:45 +00:00
OMBI_API_TOKEN:
valueFrom:
secretKeyRef:
name: bibot
key: ombi-api-key
DISCORD_TOKEN:
valueFrom:
secretKeyRef:
name: bibot
key: discord-token
2024-03-12 20:30:06 +00:00
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
2024-03-13 11:04:45 +00:00
2024-03-17 11:48:50 +00:00
configMaps:
2024-03-13 11:04:45 +00:00
config:
2024-03-17 11:48:50 +00:00
enabled: true
data:
bibot.yml: |-
prompt_template: /secret/prompt-template
instruct_template: /secret/instruct-template
context:
- name: "Your name is"
value: "Bi"
- name: "Your master is"
value: "noldtronics"
discord:
channels: [ '1216440541064200192' ]
tools:
ombi:
url: http://ombi.ombi.svc.cluster.local:3579/api/v1
browserless:
url: http://browserless.browserless.svc.cluster.local:3000
openai:
url: http://localai-local-ai.ai.svc.cluster.local/v1
model: command-r
temperature: 0.2
persistence:
secret:
2024-03-13 11:04:45 +00:00
name: bibot
enabled: true
type: secret
2024-03-17 11:48:50 +00:00
config:
name: bibot-config
enabled: true
type: configMap
2024-03-12 20:30:06 +00:00
service:
main:
controller: main
ports:
http:
port: 3001
type: ClusterIP