switch back to os models

This commit is contained in:
Arnav Agrawal 2025-05-01 17:46:18 -07:00
parent 65cf9fe545
commit 72802f98b2

View File

@ -49,10 +49,10 @@ ollama_embedding_docker_docker = { model_name = "ollama/nomic-embed-text", api_b
#### Component configurations #### #### Component configurations ####
[agent] [agent]
model = "claude_sonnet" # Model for the agent logic model = "ollama_llama" # Model for the agent logic
[completion] [completion]
model = "openai_gpt4o_mini" #"openai_gpt4o" # Reference to a key in registered_models model = "ollama_llama" #"openai_gpt4o" # Reference to a key in registered_models
default_max_tokens = "1000" default_max_tokens = "1000"
default_temperature = 0.5 default_temperature = 0.5
@ -80,10 +80,10 @@ use_contextual_chunking = false
contextual_chunking_model = "ollama_llama" # Reference to a key in registered_models contextual_chunking_model = "ollama_llama" # Reference to a key in registered_models
[document_analysis] [document_analysis]
model = "openai_gpt4o" # Reference to a key in registered_models model = "ollama_llama" # Reference to a key in registered_models
[parser.vision] [parser.vision]
model = "openai_gpt4o" # Reference to a key in registered_models model = "ollama_llama" # Reference to a key in registered_models
frame_sample_rate = -1 # Set to -1 to disable frame captioning frame_sample_rate = -1 # Set to -1 to disable frame captioning
[reranker] [reranker]
@ -108,7 +108,7 @@ storage_path = "./storage"
provider = "pgvector" provider = "pgvector"
[rules] [rules]
model = "openai_gpt4o" model = "ollama_llama"
batch_size = 4096 batch_size = 4096
[morphik] [morphik]
@ -121,7 +121,7 @@ host = "localhost" # use "redis" for docker
port = 6379 port = 6379
[graph] [graph]
model = "openai_gpt4o" model = "ollama_llama"
enable_entity_resolution = true enable_entity_resolution = true
[telemetry] [telemetry]