- Introduction of PARTNER_RAG retriever, PARTNER_RAG_SPECIALIST and linked Agent and Task, to support documentation inquiries in the management app (eveai_app)
- Addition of a tenant_partner_services view to show partner services from the viewpoint of a tenant - Addition of domain model diagrams - Addition of license_periods views and form
This commit is contained in:
@@ -1,9 +1,5 @@
|
||||
# config/type_defs/partner_service_types.py
|
||||
PARTNER_SERVICE_TYPES = {
|
||||
"REFERRAL_SERVICE": {
|
||||
"name": "Referral Service",
|
||||
"description": "Partner referring new customers",
|
||||
},
|
||||
"KNOWLEDGE_SERVICE": {
|
||||
"name": "Knowledge Service",
|
||||
"description": "Partner providing catalog content",
|
||||
|
||||
@@ -4,6 +4,11 @@ RETRIEVER_TYPES = {
|
||||
"name": "Standard RAG Retriever",
|
||||
"description": "Retrieving all embeddings from the catalog conform the query",
|
||||
},
|
||||
"PARTNER_RAG": {
|
||||
"name": "Partner RAG Retriever",
|
||||
"description": "RAG intended for partner documentation",
|
||||
"partner": "evie_partner"
|
||||
},
|
||||
"TRAICIE_ROLE_DEFINITION_BY_ROLE_IDENTIFICATION": {
|
||||
"name": "Traicie Role Definition Retriever by Role Identification",
|
||||
"description": "Retrieves relevant role information for a given role",
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
# Specialist Types
|
||||
SPECIALIST_TYPES = {
|
||||
"STANDARD_RAG_SPECIALIST": {
|
||||
"name": "Standard RAG Specialist",
|
||||
"description": "Standard Q&A through RAG Specialist",
|
||||
},
|
||||
"RAG_SPECIALIST": {
|
||||
"name": "RAG Specialist",
|
||||
"description": "Q&A through RAG Specialist",
|
||||
},
|
||||
"PARTNER_RAG_SPECIALIST": {
|
||||
"name": "Partner RAG Specialist",
|
||||
"description": "Q&A through Partner RAG Specialist (for documentation purposes)",
|
||||
"partner": "evie_partner"
|
||||
},
|
||||
"SPIN_SPECIALIST": {
|
||||
"name": "Spin Sales Specialist",
|
||||
"description": "A specialist that allows to answer user queries, try to get SPIN-information and Identification",
|
||||
|
||||
Reference in New Issue
Block a user