mirror of
https://github.com/nold360/hive-apps
synced 2025-01-19 04:46:19 +00:00
add(bi): memory
This commit is contained in:
parent
0f47ff5f98
commit
c621098691
1 changed files with 36 additions and 3 deletions
|
@ -29,7 +29,7 @@ controllers:
|
||||||
PHOENIX_COLLECTOR_ENDPOINT: http://phoenix.phoenix.svc.cluster.local:6006
|
PHOENIX_COLLECTOR_ENDPOINT: http://phoenix.phoenix.svc.cluster.local:6006
|
||||||
PHOENIX_PROJECT_NAME: bi
|
PHOENIX_PROJECT_NAME: bi
|
||||||
OPENAI_API_KEY: fake
|
OPENAI_API_KEY: fake
|
||||||
command: ["python3"]
|
command: ["python"]
|
||||||
args: ["/app/bi/agents/main/app.py", "worker", "-l", "info"]
|
args: ["/app/bi/agents/main/app.py", "worker", "-l", "info"]
|
||||||
|
|
||||||
controller:
|
controller:
|
||||||
|
@ -53,9 +53,42 @@ controllers:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: bi-mongo-bi-bi
|
name: bi-mongo-bi-bi
|
||||||
key: password
|
key: password
|
||||||
command: ["python3"]
|
command: ["python"]
|
||||||
args: ["/app/bi/controller.py", "worker", "-l", "info"]
|
args: ["/app/bi/controller.py", "worker", "-l", "info"]
|
||||||
|
|
||||||
|
memory:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
image:
|
||||||
|
repository: reg.dc/bi
|
||||||
|
tag: latest
|
||||||
|
pullPolicy: Always
|
||||||
|
env:
|
||||||
|
BIBOT_CONFIG: /config/bibot.yml
|
||||||
|
BIBOT_KAFKA__BROKER: kafka://bi-cluster-kafka-bootstrap:9092
|
||||||
|
BIBOT_MONGODB__URI: mongodb://bi-mongo-svc:27017/
|
||||||
|
BIBOT_MONGODB__USER:
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: bi-mongo-bi-bi
|
||||||
|
key: username
|
||||||
|
BIBOT_MONGODB__PASSWORD:
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: bi-mongo-bi-bi
|
||||||
|
key: password
|
||||||
|
BIBOT_QDRANT__API_KEY:
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: qdrant-apikey
|
||||||
|
key: api-key
|
||||||
|
PHOENIX_COLLECTOR_ENDPOINT: http://phoenix.phoenix.svc.cluster.local:6006
|
||||||
|
PHOENIX_PROJECT_NAME: bi
|
||||||
|
OPENAI_API_KEY: fake
|
||||||
|
command: ["python"]
|
||||||
|
args: ["/app/bi/agents/memory/app.py", "worker", "-l", "info"]
|
||||||
|
|
||||||
|
|
||||||
discord:
|
discord:
|
||||||
containers:
|
containers:
|
||||||
main:
|
main:
|
||||||
|
@ -64,7 +97,7 @@ controllers:
|
||||||
tag: latest
|
tag: latest
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
|
|
||||||
command: ["python3"]
|
command: ["python"]
|
||||||
args: ["/app/bi/connectors/discord/app.py", "worker", "-l", "info"]
|
args: ["/app/bi/connectors/discord/app.py", "worker", "-l", "info"]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in a new issue