- Temporary checkin to branch for the rest of the introduction of experts

This commit is contained in:
Josako
2024-11-03 16:18:14 +01:00
parent 88f4db1178
commit 503ea7965d
9 changed files with 70 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
# Catalog Types
CATALOG_TYPES = {
"DEFAULT": {
"STANDARD": {
"name": "Default Catalog",
"Description": "A Catalog with information in Evie's Library, to be considered as a whole",
"configuration": {}

View File

@@ -1,6 +1,6 @@
# Retriever Types
RETRIEVER_TYPES = {
"DEFAULT_RAG": {
"STANDARD_RAG": {
"name": "Default RAG",
"description": "Retrieving all embeddings conform the query",
"configuration": {

View File

@@ -0,0 +1,23 @@
# Specialist Types
SPECIALIST_TYPES = {
"STANDARD_RAG": {
"name": "Q&A RAG Specialist",
"description": "Standard Q&A through RAG Specialist",
"configuration": {
"specialist_context": {
"name": "Specialist Context",
"type": "text",
"description": "The context to be used by the specialist.",
"required": False,
},
},
"arguments": {
"language": {
"name": "Language",
"type": "str",
"description": "Language code to be used for receiving questions and giving answers",
"required": True,
},
}
}
}