Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_FILE | No | Log file path | ./logs/agenticrag.log |
| LOG_LEVEL | No | Logging level | INFO |
| OPENAI_API_KEY | Yes | OpenAI API key required for embeddings and GPT-4 | |
| DAILY_BUDGET_USD | No | Cost control limit in USD | 100 |
| MAX_FILE_SIZE_MB | No | Maximum file size to index in MB | 2 |
| ANTHROPIC_API_KEY | No | Optional API key for Claude models | |
| CHUNK_SIZE_TOKENS | No | Size of code chunks in tokens | 1280 |
| DEFAULT_LLM_MODEL | No | Default LLM model to use | gpt-4o |
| EMBEDDING_BATCH_SIZE | No | Batch size for embedding processing | |
| DEFAULT_EMBEDDING_MODEL | No | Default embedding model to use | text-embedding-3-large |
| CHROMA_PERSIST_DIRECTORY | No | Vector database storage directory | ./chroma_db |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
No tools | |