Spaces:
Build error
Build error
update gitignore | update readme | gpt4o to gemma3
Browse files- .gitignore +40 -0
- README.md +1 -1
- src/agents/__pycache__/__init__.cpython-310.pyc +0 -0
- src/agents/__pycache__/agent.cpython-310.pyc +0 -0
- src/agents/__pycache__/agent_core.cpython-310.pyc +0 -0
- src/agents/__pycache__/agent_instructions.cpython-310.pyc +0 -0
- src/agents/__pycache__/agent_processor.cpython-310.pyc +0 -0
- src/agents/__pycache__/agent_tools.cpython-310.pyc +0 -0
- src/agents/__pycache__/browser.cpython-310.pyc +0 -0
- src/agents/__pycache__/prompts.cpython-310.pyc +0 -0
- src/agents/__pycache__/tools.cpython-310.pyc +0 -0
- src/agents/__pycache__/validators.cpython-310.pyc +0 -0
- src/agents/parser/__pycache__/agent.cpython-310.pyc +0 -0
- src/agents/parser/__pycache__/parser_agent.cpython-310.pyc +0 -0
.gitignore
CHANGED
@@ -1,3 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.env
|
2 |
data/best_model_for_results.json
|
3 |
data/final_leaderboards.json
|
|
|
1 |
+
# Logs
|
2 |
+
logs
|
3 |
+
*.log
|
4 |
+
npm-debug.log*
|
5 |
+
yarn-debug.log*
|
6 |
+
yarn-error.log*
|
7 |
+
pnpm-debug.log*
|
8 |
+
lerna-debug.log*
|
9 |
+
|
10 |
+
__pycache__
|
11 |
+
*.pyc
|
12 |
+
|
13 |
+
client/node_modules
|
14 |
+
client/dist
|
15 |
+
client/dist-ssr
|
16 |
+
client/*.local
|
17 |
+
|
18 |
+
# Editor directories and files
|
19 |
+
.vscode/*
|
20 |
+
!.vscode/extensions.json
|
21 |
+
.idea
|
22 |
+
.DS_Store
|
23 |
+
*.suo
|
24 |
+
*.ntvs*
|
25 |
+
*.njsproj
|
26 |
+
*.sln
|
27 |
+
*.sw?
|
28 |
+
|
29 |
+
.env
|
30 |
+
|
31 |
+
client/.env
|
32 |
+
server/.env
|
33 |
+
server/data/leaderboards.json
|
34 |
+
server/data/leaderboards_discussions.json
|
35 |
+
server/data/leaderboards_list.json
|
36 |
+
server/data/leaderboards_results.json
|
37 |
+
server/data/leaderboards_runtime.json
|
38 |
+
|
39 |
+
cache/
|
40 |
+
server/cache
|
41 |
.env
|
42 |
data/best_model_for_results.json
|
43 |
data/final_leaderboards.json
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 💻
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
|
|
1 |
---
|
2 |
+
title: leaderboard-parser-agent
|
3 |
emoji: 💻
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
src/agents/__pycache__/__init__.cpython-310.pyc
DELETED
Binary file (413 Bytes)
|
|
src/agents/__pycache__/agent.cpython-310.pyc
DELETED
Binary file (13.1 kB)
|
|
src/agents/__pycache__/agent_core.cpython-310.pyc
DELETED
Binary file (1.63 kB)
|
|
src/agents/__pycache__/agent_instructions.cpython-310.pyc
DELETED
Binary file (11.2 kB)
|
|
src/agents/__pycache__/agent_processor.cpython-310.pyc
DELETED
Binary file (5.58 kB)
|
|
src/agents/__pycache__/agent_tools.cpython-310.pyc
DELETED
Binary file (13.2 kB)
|
|
src/agents/__pycache__/browser.cpython-310.pyc
DELETED
Binary file (4.05 kB)
|
|
src/agents/__pycache__/prompts.cpython-310.pyc
DELETED
Binary file (11 kB)
|
|
src/agents/__pycache__/tools.cpython-310.pyc
DELETED
Binary file (13.6 kB)
|
|
src/agents/__pycache__/validators.cpython-310.pyc
DELETED
Binary file (3.28 kB)
|
|
src/agents/parser/__pycache__/agent.cpython-310.pyc
DELETED
Binary file (13.1 kB)
|
|
src/agents/parser/__pycache__/parser_agent.cpython-310.pyc
DELETED
Binary file (13.2 kB)
|
|