-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/WMS_V0_b
- Loading branch information
Showing
48 changed files
with
7,657 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"core": "0.0.23" | ||
"core": "0.0.24" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ wheels/ | |
|
||
# venv | ||
.venv | ||
.files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
workflow_config: | ||
name: "standard RAG" | ||
nodes: | ||
- name: "START" | ||
edges: ["filter_history"] | ||
|
||
- name: "filter_history" | ||
edges: ["rewrite"] | ||
|
||
- name: "rewrite" | ||
edges: ["retrieve"] | ||
|
||
- name: "retrieve" | ||
edges: ["generate_rag"] | ||
|
||
- name: "generate_rag" # the name of the last node, from which we want to stream the answer to the user | ||
edges: ["END"] | ||
tools: | ||
- name: "cited_answer" | ||
|
||
# Maximum number of previous conversation iterations | ||
# to include in the context of the answer | ||
max_history: 10 | ||
|
||
# Reranker configuration | ||
# reranker_config: | ||
# # The reranker supplier to use | ||
# supplier: "cohere" | ||
|
||
# # The model to use for the reranker for the given supplier | ||
# model: "rerank-multilingual-v3.0" | ||
|
||
# # Number of chunks returned by the reranker | ||
# top_n: 5 | ||
|
||
# Configuration for the LLM | ||
llm_config: | ||
|
||
# maximum number of tokens passed to the LLM to generate the answer | ||
max_output_tokens: 4000 | ||
|
||
# temperature for the LLM | ||
temperature: 0.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.