first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

41
config.json Normal file
View File

@@ -0,0 +1,41 @@
{
"$schema": "https://www.getbifrost.ai/schema",
"version": 2,
"vector_store": {
"enabled": true,
"type": "redis",
"config": {
"addr": "env.REDIS_ADDR",
"username": "env.REDIS_USERNAME",
"password": "env.REDIS_PASSWORD",
"db": "env.REDIS_DB"
}
},
"plugins": [
{
"enabled": true,
"name": "semantic_cache",
"config": {
"dimension": 1,
"ttl": "5m",
"threshold": 0.8,
"cache_by_model": true,
"cache_by_provider": true
}
}
],
"providers": {
"openai": {
"keys": [
{
"name": "openai-primary",
"value": "env.OPENAI_API_KEY",
"models": [
"*"
],
"weight": 1
}
]
}
}
}