hirewire-backend / config.yaml
shivamsrng16's picture
feat: default to openai/gpt-oss-120b:free model
e27ecc2
Raw
History Blame Contribute Delete
1.03 kB
app:
name: PSVIEW Recruiting Agent API
env: development
version: 0.1.0
api_v1_prefix: /api/v1
log_level: INFO
model:
provider: openrouter
api_key: ${MODEL_API_KEY}
base_url: https://openrouter.ai/api/v1
model_name: ${MODEL_NAME}
general_chat_model_name: openai/gpt-oss-120b:free
structured_json_model_name: openai/gpt-oss-120b:free
coding_backend_model_name: openai/gpt-oss-120b:free
structured_output_mode: auto
timeout_seconds: 45
max_retries: 2
max_output_tokens: 1800
temperature: 0.2
repair_attempts: 1
concurrency_limit: 4
extra_body: {}
openrouter:
site_url: null
app_name: PSVIEW Recruiting Agent
runtime:
allowed_origins:
- http://localhost:5173
max_request_body_bytes: 100000
max_history_messages: 20
max_conversation_turns: 16
max_response_characters: 1000
max_revision_attempts: 1
langgraph_recursion_limit: 20
retrieval:
enabled: true
top_k: 5
min_score: 0.05
reuse_penalty: 0.15
max_fact_candidates: 20
database:
mongodb_uri: ${MONGODB_URI}