forked from merltron-mc/llm-cpp-quix-prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quix.yaml
71 lines (68 loc) · 1.79 KB
/
quix.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Quix Project Descriptor
# This file describes the data pipeline and configuration of resources of a Quix Project.
metadata:
version: 1.0
# This section describes the Deployments of the data pipeline
deployments:
- name: AI Customer
application: AI Customer
deploymentType: Service
version: b7a43c2588f1ae793511a778f0207b578e98632d
resources:
cpu: 2000
memory: 8000
replicas: 1
state:
enabled: true
size: 6
desiredStatus: Running
variables:
- name: output
inputType: OutputTopic
description: This is the output topic to write data to
required: true
value: ai-chat-history
- name: product
inputType: FreeText
description: ''
required: true
value: roomba vacum cleaner
- name: AI Support Agent
application: AI Customer Support Agent
deploymentType: Service
version: b7e99b3e54c5c33979f261c34b429262446ce181
resources:
cpu: 2000
memory: 8000
replicas: 1
state:
enabled: true
size: 6
desiredStatus: Running
variables:
- name: output
inputType: OutputTopic
description: This is the output topic to write data to
required: true
value: ai-chat-history
- name: product
inputType: FreeText
description: ''
required: false
value: roomba vacum cleaner
# This section describes the Topics of the data pipeline
topics:
- name: ai-chat-messages
persisted: true
configuration:
partitions: 2
replicationFactor: 2
retentionInMinutes: 240
retentionInBytes: 52428800
- name: ai-chat-history
persisted: true
configuration:
partitions: 2
replicationFactor: 2
retentionInMinutes: 60
retentionInBytes: 52428800