Files
bifrost/examples/configs/withotel/config.json
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

49 lines
988 B
JSON

{
"$schema": "https://www.getbifrost.ai/schema",
"config_store": {
"enabled": true,
"type": "sqlite",
"config": {
"path": "./config.db"
}
},
"logs_store": {
"enabled": true,
"type": "sqlite",
"config": {
"path": "./logs.db"
}
},
"providers": {
"openai": {
"keys": [
{
"name": "openai-key-1",
"value": "sk-dummy",
"weight": 1,
"models": ["*"]
}
]
}
},
"plugins": [
{
"enabled": true,
"name": "otel",
"config": {
"service_name": "bifrost",
"collector_url": "http://localhost:4318/v1/traces",
"trace_type": "otel",
"protocol": "http",
"metrics_enabled": true,
"metrics_endpoint": "http://localhost:4318/v1/metrics",
"metrics_push_interval": 15,
"headers": {
"x-honeycomb-team": "env.HONEYCOMB_API_KEY"
},
"insecure": false
}
}
]
}