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

55 lines
1.3 KiB
JSON

{
"$schema": "https://www.getbifrost.ai/schema",
"config_store": {
"enabled": true,
"type": "sqlite",
"config": {
"path": "../../tests/configs/partial/config.db"
}
},
"logs_store": {
"enabled": true,
"type": "sqlite",
"config": {
"path": "../../tests/configs/partial/logs.db"
}
},
"providers": {
"openai": {
"keys": [
{
"name": "openai-key-1",
"value": "sk-123",
"weight": 1,
"models": ["*"]
}
]
},
"anthropic": {
"keys": [
{
"name": "anthropic-key-1",
"value": "sk-456",
"weight": 1,
"models": ["*"]
}
]
},
"bedrock": {
"keys": [
{
"name": "bedrock-key-1",
"value": "ak-123",
"weight": 1,
"models": ["*"]
},
{
"name": "bedrock-key-2",
"value": "ak-456",
"weight": 1,
"models": ["*"]
}
]
}
}
}