| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "baseUrl": "http://localhost:3000",
- "database": {
- "type": "sqlite3",
- "sqlite3": {
- "fileMustExist": false,
- "filename": "app.db",
- "readonly": false,
- "timeout": 5000,
- "performance": {
- "foreignKeys": true,
- "journalMode": "wal",
- "synchronous": 1,
- "tempStore": "memory"
- }
- },
- "redis": {
- "host": "127.0.0.1",
- "port": 6379,
- "password": "",
- "db": 0
- }
- },
- "password": {
- "algorithm": "argon2id",
- "options": {
- "memoryCost": 61440,
- "timeCost": 3,
- "parallelism": 1
- }
- },
- "providers": [
- {
- "id": "bedrock",
- "type": "bedrock",
- "enabled": true,
- "region": "us-east-1",
- "credentials": {
- "accessKeyId": "YOUR_ACCESS_KEY",
- "secretAccessKey": "YOUR_SECRET_KEY"
- },
- "models": {
- "us.amazon.nova-micro-v1:0": "us.amazon.nova-micro-v1:0"
- }
- },
- {
- "id": "anthropic",
- "type": "anthropic",
- "enabled": true,
- "apiKey": "YOUR_ANTHROPIC_API_KEY",
- "models": {
- "claude-3-5-sonnet": "claude-3-5-sonnet-20241022"
- }
- },
- {
- "id": "local",
- "type": "openai-compatible",
- "enabled": false,
- "baseUrl": "http://localhost:11434/v1",
- "models": {
- "ministral-3-14b-32k": "ministral-3-14b-32k"
- }
- }
- ]
- }
|