From 35037a0bdec984860c0aa0cc51954a302b1c4519 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Wed, 1 Oct 2025 17:35:34 -0300 Subject: [PATCH] added config example yaml --- config/config.example.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config/config.example.yaml diff --git a/config/config.example.yaml b/config/config.example.yaml new file mode 100644 index 00000000..410025e7 --- /dev/null +++ b/config/config.example.yaml @@ -0,0 +1,15 @@ +# OpenRAG Configuration File +provider: + model_provider: "openai" # openai, anthropic, azure, etc. + api_key: "your-api-key" # or use OPENAI_API_KEY env var + +knowledge: + embedding_model: "text-embedding-3-small" + chunk_size: 1000 + chunk_overlap: 200 + ocr: true + picture_descriptions: false + +agent: + llm_model: "gpt-4o-mini" + system_prompt: "You are a helpful AI assistant..." \ No newline at end of file