mirror of
https://github.com/TheBlewish/Automated-AI-Web-Researcher-Ollama.git
synced 2025-01-19 00:47:46 +00:00
Update llm_config.py
This commit is contained in:
parent
b1371cc977
commit
fd0bbc750c
|
@ -15,6 +15,9 @@ LLM_CONFIG_OLLAMA = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# 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_CONFIG_OPENAI = {
|
||||||
"llm_type": "openai",
|
"llm_type": "openai",
|
||||||
"api_key": "", # Set via environment variable OPENAI_API_KEY
|
"api_key": "", # Set via environment variable OPENAI_API_KEY
|
||||||
|
@ -29,6 +32,9 @@ LLM_CONFIG_OPENAI = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# LLM settings for Anthropic
|
# 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_CONFIG_ANTHROPIC = {
|
||||||
"llm_type": "anthropic",
|
"llm_type": "anthropic",
|
||||||
"api_key": "", # Set via environment variable ANTHROPIC_API_KEY
|
"api_key": "", # Set via environment variable ANTHROPIC_API_KEY
|
||||||
|
|
Loading…
Reference in a new issue