fenduil commited on
Commit
59ff863
·
verified ·
1 Parent(s): 2537f20

Create model_catalog.json

Browse files
Files changed (1) hide show
  1. model_catalog.json +67 -0
model_catalog.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1,
3
+ "services": {
4
+ "llm": {
5
+ "active_profile_id": "llm-profile-default",
6
+ "active_model_id": "llm-model-default",
7
+ "profiles": [
8
+ {
9
+ "id": "llm-profile-default",
10
+ "name": "Default LLM Endpoint",
11
+ "binding": "mistral",
12
+ "base_url": "https://api.mistral.ai/v1",
13
+ "api_key": "",
14
+ "api_version": "",
15
+ "extra_headers": {},
16
+ "models": [
17
+ {
18
+ "id": "llm-model-default",
19
+ "name": "mistral-medium-2505",
20
+ "model": "mistral-medium-2505"
21
+ }
22
+ ]
23
+ }
24
+ ]
25
+ },
26
+ "embedding": {
27
+ "active_profile_id": "embedding-profile-default",
28
+ "active_model_id": "embedding-model-default",
29
+ "profiles": [
30
+ {
31
+ "id": "embedding-profile-default",
32
+ "name": "Default Embedding Endpoint",
33
+ "binding": "openai",
34
+ "base_url": "https://api.openai.com/v1/embeddings",
35
+ "api_key": "",
36
+ "api_version": "",
37
+ "extra_headers": {},
38
+ "models": [
39
+ {
40
+ "id": "embedding-model-default",
41
+ "name": "text-embedding-3-large",
42
+ "model": "text-embedding-3-large",
43
+ "dimension": "",
44
+ "supported_dimensions": ""
45
+ }
46
+ ]
47
+ }
48
+ ]
49
+ },
50
+ "search": {
51
+ "active_profile_id": "search-profile-default",
52
+ "profiles": [
53
+ {
54
+ "id": "search-profile-default",
55
+ "name": "Default Search",
56
+ "provider": "tavily",
57
+ "base_url": "",
58
+ "api_key": "",
59
+ "api_version": "",
60
+ "extra_headers": {},
61
+ "proxy": "",
62
+ "models": []
63
+ }
64
+ ]
65
+ }
66
+ }
67
+ }