File size: 1,057 Bytes
48a66db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
{
"databases": [
{
"name": "Pinecone",
"embedding_models": ["Openai", "Voyage"]
},
{
"name": "ChromaDB",
"embedding_models": ["Openai"]
},
{
"name": "RAGatouille",
"hf_rag_models": [
"colbert-ir/colbertv2.0"
]
}
],
"llms": [
{
"name": "OpenAI",
"models": [
"gpt-3.5-turbo-1106",
"gpt-3.5-turbo-instruct",
"gpt-4",
"gpt-4-32k",
"gpt-4-1106-preview"
]
},
{
"name": "Hugging Face",
"models": [
"mistralai/Mixtral-8x7B-Instruct-v0.1",
"ai-aerospace/autotrain-ams_v0.1_100_Mistral-7B-Instruct-v0.1",
"meta-llama/Llama-2-7b-chat-hf"
]
}
],
"rag_types": [
"Standard",
"Parent-Child",
"Hypothetical Questions",
"Summaries"
]
} |