Upload 4 files
Browse files- .gitignore +7 -0
- OAI_CONFIG_LIST.json +48 -0
- README.md +1 -13
- requirements.txt +8 -0
.gitignore
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
./
|
2 |
+
|
3 |
+
|
4 |
+
autogen\.cache
|
5 |
+
autogen/.cache/
|
6 |
+
|
7 |
+
.env
|
OAI_CONFIG_LIST.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"model": "gpt-3.5-turbo",
|
4 |
+
"api_key": ""
|
5 |
+
},
|
6 |
+
{
|
7 |
+
"model": "gpt-3.5-turbo-0301",
|
8 |
+
"api_key": ""
|
9 |
+
},
|
10 |
+
{
|
11 |
+
"model": "gpt-3.5-turbo-0613",
|
12 |
+
"api_key": ""
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"model": "gpt-3.5-turbo-16k",
|
16 |
+
"api_key": ""
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"model": "gpt-3.5-turbo-16k-0613",
|
20 |
+
"api_key": ""
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"model": "gpt-4",
|
24 |
+
"api_key": ""
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"model": "gpt-4-0314",
|
28 |
+
"api_key": ""
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"model": "gpt-4-0613",
|
32 |
+
"api_key": ""
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"model": "gpt-4-32k",
|
36 |
+
"api_key": "",
|
37 |
+
"api_base": "https://*.openai.azure.com/openai/deployments/*/chat/completions",
|
38 |
+
"api_type": "azure",
|
39 |
+
"api_version": "2023-06-01-preview"
|
40 |
+
},
|
41 |
+
{
|
42 |
+
"model": "gpt-35-turbo-16k",
|
43 |
+
"api_key": "",
|
44 |
+
"api_base": "https://*.openai.azure.com/openai/deployments/*/chat/completions",
|
45 |
+
"api_type": "azure",
|
46 |
+
"api_version": "2023-06-01-preview"
|
47 |
+
}
|
48 |
+
]
|
README.md
CHANGED
@@ -1,13 +1 @@
|
|
1 |
-
|
2 |
-
title: Snake By Princepspolycap
|
3 |
-
emoji: 🌍
|
4 |
-
colorFrom: indigo
|
5 |
-
colorTo: indigo
|
6 |
-
sdk: gradio
|
7 |
-
sdk_version: 3.45.2
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
-
license: unknown
|
11 |
-
---
|
12 |
-
|
13 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
+
Snake Game Developed by Autogen Agents
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
flaml
|
2 |
+
flaml[autogen]
|
3 |
+
flaml[automl]
|
4 |
+
flaml[openai]
|
5 |
+
flaml[catboost]
|
6 |
+
flaml[vw]
|
7 |
+
flaml[forecast]
|
8 |
+
flaml[hf]
|