-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathappsettings.json
More file actions
78 lines (64 loc) · 1.64 KB
/
appsettings.json
File metadata and controls
78 lines (64 loc) · 1.64 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectorType": "GitHubModels",
"AmazonBedrock": {
"AccessKeyId": "{{AMAZON_BEDROCK_ACCESS_KEY_ID}}",
"SecretAccessKey": "{{AMAZON_BEDROCK_SECRET_ACCESS_KEY}}",
"Region": "{{AMAZON_BEDROCK_REGION}}",
"ModelId": "amazon.nova-micro-v1:0"
},
"AzureAIFoundry": {
"Endpoint": "{{AZURE_AI_FOUNDRY_ENDPOINT}}",
"ApiKey": "{{AZURE_AI_FOUNDRY_API_KEY}}",
"DeploymentName": "gpt-4o-mini"
},
"GitHubModels": {
"Endpoint": "https://models.github.ai/inference",
"Token": "{{GITHUB_PAT}}",
"Model": "openai/gpt-4o-mini"
},
"GoogleVertexAI": {
"ApiKey": "{{GOOGLE_VERTEX_AI_API_KEY}}",
"Model": "gemini-2.5-flash-lite"
},
"DockerModelRunner": {
"BaseUrl": "http://localhost:12434",
"Model": "ai/smollm2"
},
"FoundryLocal": {
"Alias": "phi-4-mini",
"Endpoint": "http://127.0.0.1:55438/v1"
},
"HuggingFace": {
"BaseUrl": "http://localhost:11434",
"Model": "hf.co/Qwen/Qwen3-0.6B-GGUF"
},
"Ollama": {
"BaseUrl": "http://localhost:11434",
"Model": "llama3.2"
},
"Anthropic": {
"ApiKey": "{{ANTHROPIC_API_KEY}}",
"Model": "claude-sonnet-4-0"
},
"LG": {
"BaseUrl": "http://localhost:11434",
"Model": "hf.co/LGAI-EXAONE/EXAONE-4.0-1.2B-GGUF"
},
"OpenAI": {
"ApiKey": "{{OPENAI_API_KEY}}",
"Model": "gpt-4.1-mini"
},
"Upstage": {
"BaseUrl": "https://api.upstage.ai/v1",
"ApiKey": "{{UPSTAGE_API_KEY}}",
"Model": "solar-mini"
}
}