Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 632 Bytes

ADMIN_WORKFLOW.MD

File metadata and controls

27 lines (22 loc) · 632 Bytes

Admin Workflow

Backend includes the ability to dynamically create Assistants, Rag Connections, and LLM Connections

Content Retriever(RAG) Connction

Weaviate Example

{
  "baseRetrieverRequest": {
    "contentRetrieverType": "weaviate",
    "textKey": "source",
    "metadata": ["source","page_number", "title"], 
    "index": "my_custom_index",
    "scheme": "http",
    "host": "my-weaviate-instance.svc:8080",
    "apiKey" : "ABCDE12345"
  },
  "embeddingType": "nomic",
  "name": "Example Rag Connection",
  "description": "Example of a rag connection"
}

Note

This document is a work in progress.