forked from Josephrp/DataTonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOAI_CONFIG_LIST.json
38 lines (38 loc) · 1.1 KB
/
OAI_CONFIG_LIST.json
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
[
{
"model": "gpt-3.5-turbo-preview",
"api_key": "your OpenAI Key goes here",
"base_url": "https://api.openai.com/v1",
"api_version": "2023-06-01-preview"
},
{
"model": "gpt-4-preview",
"api_key": "your OpenAI Key goes here",
"base_url": "https://api.openai.com/v1",
"api_version": "2023-06-01-preview"
},
{
"model": "gpt-4-vision-preview",
"api_key": "your OpenAI Key goes here",
"base_url": "https://api.openai.com/v1",
"api_version": "2023-06-01-preview"
},
{
"model": "dall-e-3",
"api_key": "your OpenAI Key goes here",
"base_url": "https://api.openai.com/v1",
"api_version": "2023-06-01-preview"
},
{
"model": "gemini-pro",
"api_key": "your Google's GenAI Key goes here",
"base_url": "https://genai.google.com/v1",
"api_type": "google"
},
{
"model": "gemini-pro-vision",
"api_key": "your Google's GenAI Key goes here",
"base_url": "https://genai.google.com/v1",
"api_type": "google"
}
]