From fd0bbc750cdd885fe1f623135f646bbf7e898e11 Mon Sep 17 00:00:00 2001 From: James Date: Wed, 27 Nov 2024 12:34:02 +1000 Subject: [PATCH] Update llm_config.py --- llm_config.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/llm_config.py b/llm_config.py index 5204d35..bad207f 100644 --- a/llm_config.py +++ b/llm_config.py @@ -14,7 +14,10 @@ LLM_CONFIG_OLLAMA = { "stop": ["User:", "\n\n"] } -# LLM settings for OpenAI +# LLM settings for OpenAI +# WARNING: This application makes frequent API calls during research operations. If using paid API services +# (OpenAI/Anthropic), this can result in significant costs accumulating quickly - proceed with caution and +# monitor your API usage carefully if it's paid. LLM_CONFIG_OPENAI = { "llm_type": "openai", "api_key": "", # Set via environment variable OPENAI_API_KEY @@ -29,6 +32,9 @@ LLM_CONFIG_OPENAI = { } # LLM settings for Anthropic +# WARNING: This application makes frequent API calls during research operations. If using paid API services +# (OpenAI/Anthropic), this can result in significant costs accumulating quickly - proceed with caution and +# monitor your API usage carefully if it's paid. LLM_CONFIG_ANTHROPIC = { "llm_type": "anthropic", "api_key": "", # Set via environment variable ANTHROPIC_API_KEY