DB_URL='http://localhost:6333'
DB_API_KEY='th3s3cr3tk3y'
COLLECTION_NAME='YOUR_COLLECTION'

OPENAI_API_KEY=''
OPENAI_EMBED_MODEL=''

# use this incase you are prefering to experiment with local models.
OLLAMA_BASE_URL='http://localhost:11434'
OLLAMA_LLM_MODEL='llama3.1'
OLLAMA_EMBED_MODEL='nomic-embed-text:latest'

# logger can be controlled usiing env
CRITICAL = 50
FATAL = 50
ERROR = 40
WARNING = 30
WARN = 30
INFO = 20
DEBUG = 10
NOTSET = 0

# can control workflows based on the config defined here
ENABLED_WORKFLOW='deploy_rag_workflow_with_retry_source_query_engine'

# change the below accordingly to point it to your remote hosted rabbitmq.
RABBITMQ_DEFAULT_URL='amqp://guest:guest@localhost/'
RABBITMQ_EXCHANGE_NAME='agents'
WORKFLOW_HOST='127.0.0.1'
WORKFLOW_PORT=8004
WORKFLOW_SERVICE_NAME='rag_workflow_with_retry_guideline_query_engine'
