-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
104 lines (104 loc) · 2.92 KB
/
Copy pathconfig.json
File metadata and controls
104 lines (104 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"model": {
"provider": "openai",
"name": "gpt-4o-mini",
"description": "Default model configuration - OpenAI for local dev, Bedrock for AWS",
"available_models": {
"openai": [
{
"id": "gpt-4o-mini",
"name": "GPT-4o Mini",
"description": "Fast and cost-effective model with tool calling support",
"cost_tier": "budget"
},
{
"id": "gpt-4o",
"name": "GPT-4o",
"description": "Most capable OpenAI model with advanced reasoning",
"cost_tier": "standard"
},
{
"id": "gpt-4-turbo",
"name": "GPT-4 Turbo",
"description": "High performance model for complex tasks",
"cost_tier": "premium"
}
],
"local": [
{
"id": "llama2",
"name": "Llama 2",
"description": "Open-source LLM running locally via Ollama (Legacy - no tool calling)",
"cost_tier": "free"
},
{
"id": "llama3.2",
"name": "Llama 3.2",
"description": "Latest Llama model (Legacy - no tool calling)",
"cost_tier": "free"
}
],
"anthropic": [
{
"id": "claude-3-5-sonnet-20241022",
"name": "Claude 3.5 Sonnet",
"description": "Faster, more intelligent model. Best for most tasks.",
"cost_tier": "standard"
},
{
"id": "claude-3-5-haiku-20241022",
"name": "Claude 3.5 Haiku",
"description": "Fastest and most compact model. Good for fast responses.",
"cost_tier": "budget"
},
{
"id": "claude-3-opus-20250219",
"name": "Claude 3 Opus",
"description": "Most powerful model. Best for complex reasoning.",
"cost_tier": "premium"
}
],
"bedrock": [
{
"id": "anthropic.claude-3-5-sonnet-20241022-v2:0",
"name": "Bedrock Claude 3.5 Sonnet",
"description": "Sonnet model via AWS Bedrock",
"cost_tier": "standard"
},
{
"id": "anthropic.claude-3-5-haiku-20241022-v2:0",
"name": "Bedrock Claude 3.5 Haiku",
"description": "Haiku model via AWS Bedrock",
"cost_tier": "budget"
},
{
"id": "anthropic.claude-opus-20250729-v1:0",
"name": "Bedrock Claude 3 Opus",
"description": "Opus model via AWS Bedrock",
"cost_tier": "premium"
}
]
}
},
"database": {
"host": "localhost",
"name": "finadvisor",
"user": "postgres",
"password": "postgres",
"port": 5432
},
"api": {
"port": 8000,
"host": "0.0.0.0",
"debug": false
},
"rag": {
"enabled": true,
"embedding_dimension": 384,
"similarity_threshold": 0.3
},
"logging": {
"level": "INFO",
"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
}
}