Spaces:
Sleeping
Sleeping
cuizhanming
commited on
Commit
·
e8a7dbe
1
Parent(s):
4181e3b
Update agent file
Browse files- .gitignore +116 -0
- explore_metadata.ipynb +9 -5
- supabase_docs.csv +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / optimized / DLL files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
*.so
|
| 6 |
+
|
| 7 |
+
# Distribution / packaging
|
| 8 |
+
.Python
|
| 9 |
+
build/
|
| 10 |
+
develop-eggs/
|
| 11 |
+
dist/
|
| 12 |
+
downloads/
|
| 13 |
+
eggs/
|
| 14 |
+
.eggs/
|
| 15 |
+
lib/
|
| 16 |
+
lib64/
|
| 17 |
+
parts/
|
| 18 |
+
sdist/
|
| 19 |
+
var/
|
| 20 |
+
wheels/
|
| 21 |
+
*.egg-info/
|
| 22 |
+
.installed.cfg
|
| 23 |
+
*.egg
|
| 24 |
+
|
| 25 |
+
# Virtual environments
|
| 26 |
+
venv/
|
| 27 |
+
ENV/
|
| 28 |
+
env/
|
| 29 |
+
.env
|
| 30 |
+
.venv
|
| 31 |
+
env.bak/
|
| 32 |
+
venv.bak/
|
| 33 |
+
.python-version
|
| 34 |
+
|
| 35 |
+
# Unit test / coverage reports
|
| 36 |
+
htmlcov/
|
| 37 |
+
.tox/
|
| 38 |
+
.nox/
|
| 39 |
+
.coverage
|
| 40 |
+
.coverage.*
|
| 41 |
+
.cache
|
| 42 |
+
nosetests.xml
|
| 43 |
+
coverage.xml
|
| 44 |
+
*.cover
|
| 45 |
+
.hypothesis/
|
| 46 |
+
.pytest_cache/
|
| 47 |
+
pytest-*.xml
|
| 48 |
+
|
| 49 |
+
# Jupyter Notebook
|
| 50 |
+
.ipynb_checkpoints
|
| 51 |
+
|
| 52 |
+
# IPython
|
| 53 |
+
profile_default/
|
| 54 |
+
ipython_config.py
|
| 55 |
+
|
| 56 |
+
# Logs
|
| 57 |
+
*.log
|
| 58 |
+
logs/
|
| 59 |
+
log/
|
| 60 |
+
|
| 61 |
+
# IDE specific files
|
| 62 |
+
.idea/
|
| 63 |
+
.vscode/
|
| 64 |
+
*.swp
|
| 65 |
+
*.swo
|
| 66 |
+
*~
|
| 67 |
+
.DS_Store
|
| 68 |
+
.project
|
| 69 |
+
.pydevproject
|
| 70 |
+
.settings/
|
| 71 |
+
.vs/
|
| 72 |
+
*.sublime-project
|
| 73 |
+
*.sublime-workspace
|
| 74 |
+
|
| 75 |
+
# Database
|
| 76 |
+
*.db
|
| 77 |
+
*.rdb
|
| 78 |
+
*.sqlite
|
| 79 |
+
*.sqlite3
|
| 80 |
+
|
| 81 |
+
# Environment variables
|
| 82 |
+
.env
|
| 83 |
+
.env.local
|
| 84 |
+
.env.development.local
|
| 85 |
+
.env.test.local
|
| 86 |
+
.env.production.local
|
| 87 |
+
|
| 88 |
+
# macOS specific
|
| 89 |
+
.DS_Store
|
| 90 |
+
.AppleDouble
|
| 91 |
+
.LSOverride
|
| 92 |
+
Icon
|
| 93 |
+
._*
|
| 94 |
+
.DocumentRevisions-V100
|
| 95 |
+
.fseventsd
|
| 96 |
+
.Spotlight-V100
|
| 97 |
+
.TemporaryItems
|
| 98 |
+
.Trashes
|
| 99 |
+
.VolumeIcon.icns
|
| 100 |
+
.com.apple.timemachine.donotpresent
|
| 101 |
+
|
| 102 |
+
# AI/model files
|
| 103 |
+
*.h5
|
| 104 |
+
*.pb
|
| 105 |
+
*.onnx
|
| 106 |
+
*.tflite
|
| 107 |
+
*.pt
|
| 108 |
+
*.pth
|
| 109 |
+
*.weights
|
| 110 |
+
|
| 111 |
+
# Temporary files
|
| 112 |
+
tmp/
|
| 113 |
+
temp/
|
| 114 |
+
.tmp
|
| 115 |
+
*.tmp
|
| 116 |
+
|
explore_metadata.ipynb
CHANGED
|
@@ -2,10 +2,12 @@
|
|
| 2 |
"cells": [
|
| 3 |
{
|
| 4 |
"cell_type": "code",
|
| 5 |
-
"execution_count": 9,
|
| 6 |
"id": "a600d7fc",
|
| 7 |
-
"metadata": {
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
| 9 |
"source": [
|
| 10 |
"import json \n",
|
| 11 |
"with open('metadata.jsonl', 'r') as f: \n",
|
|
@@ -15,7 +17,9 @@
|
|
| 15 |
"for json_str in json_list: \n",
|
| 16 |
" json_data = json.loads(json_str)\n",
|
| 17 |
" json_QA.append(json_data)"
|
| 18 |
-
]
|
|
|
|
|
|
|
| 19 |
},
|
| 20 |
{
|
| 21 |
"cell_type": "code",
|
|
@@ -329,4 +333,4 @@
|
|
| 329 |
},
|
| 330 |
"nbformat": 4,
|
| 331 |
"nbformat_minor": 5
|
| 332 |
-
}
|
|
|
|
| 2 |
"cells": [
|
| 3 |
{
|
| 4 |
"cell_type": "code",
|
|
|
|
| 5 |
"id": "a600d7fc",
|
| 6 |
+
"metadata": {
|
| 7 |
+
"jupyter": {
|
| 8 |
+
"is_executing": true
|
| 9 |
+
}
|
| 10 |
+
},
|
| 11 |
"source": [
|
| 12 |
"import json \n",
|
| 13 |
"with open('metadata.jsonl', 'r') as f: \n",
|
|
|
|
| 17 |
"for json_str in json_list: \n",
|
| 18 |
" json_data = json.loads(json_str)\n",
|
| 19 |
" json_QA.append(json_data)"
|
| 20 |
+
],
|
| 21 |
+
"outputs": [],
|
| 22 |
+
"execution_count": null
|
| 23 |
},
|
| 24 |
{
|
| 25 |
"cell_type": "code",
|
|
|
|
| 333 |
},
|
| 334 |
"nbformat": 4,
|
| 335 |
"nbformat_minor": 5
|
| 336 |
+
}
|
supabase_docs.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|