-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support multiple nodes of a graph, apply different endpoint env for different node #176
Changes from 27 commits
18ca0a2
b4590ef
f220c2e
3037304
0b4dbe0
540a4a2
46bd4d6
901cb09
05f82d3
b52f044
afa16d5
fc48011
8388e08
135c59b
aa17ba3
4d68983
7dad3c4
f01cf4a
ea10be2
334578d
b5a40c1
d7b93c5
16c7965
83e8e11
1204dea
201d942
d894673
69d2391
a8b53d0
25710f4
aca4ede
f0a815e
5acd489
55c25cd
eddd911
a632837
7673c71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ spec: | |
serviceName: embedding-svc | ||
config: | ||
endpoint: /v1/embeddings | ||
TEI_EMBEDDING_ENDPOINT: TeiEmbedding | ||
- name: TeiEmbedding | ||
internalService: | ||
serviceName: tei-embedding-svc | ||
|
@@ -33,6 +34,7 @@ spec: | |
serviceName: retriever-svc | ||
config: | ||
endpoint: /v1/retrieval | ||
REDIS_URL: VectorDB | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here, use |
||
- name: VectorDB | ||
internalService: | ||
serviceName: redis-vector-db | ||
|
@@ -43,6 +45,7 @@ spec: | |
serviceName: reranking-svc | ||
config: | ||
endpoint: /v1/reranking | ||
TEI_RERANKING_ENDPOINT: TeiReranking | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the same |
||
- name: TeiReranking | ||
internalService: | ||
serviceName: tei-reranking-svc | ||
|
@@ -55,6 +58,7 @@ spec: | |
serviceName: llm-svc | ||
config: | ||
endpoint: /v1/chat/completions | ||
TGI_LLM_ENDPOINT: Tgi | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the same |
||
- name: Tgi | ||
internalService: | ||
serviceName: tgi-service-m | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should use servcieName, in this case
tei-embedding-svc
.