r2r_azure.toml 589 B

1234567891011121314151617181920212223
  1. [app]
  2. # LLM used for internal operations, like deriving conversation names
  3. fast_llm = "azure/gpt-4.1-mini"
  4. # LLM used for user-facing output, like RAG replies
  5. quality_llm = "azure/gpt-4.1"
  6. # LLM used for ingesting visual inputs
  7. vlm = "azure/gpt-4.1"
  8. # LLM used for transcription
  9. audio_lm = "azure/whisper-1"
  10. # Reasoning model, used for `research` agent
  11. reasoning_llm = "azure/o3-mini"
  12. # Planning model, used for `research` agent
  13. planning_llm = "azure/o3-mini"
  14. [embedding]
  15. base_model = "azure/text-embedding-3-small"
  16. [completion_embedding]
  17. base_model = "azure/text-embedding-3-small"