Spaces:
Sleeping
Sleeping
Islam Mamedov commited on
Commit ·
51ba1d0
1
Parent(s): b6e246b
Ignore local files and remove Python cache
Browse files- .env.example +3 -0
- .gitignore +34 -4
- tests/__pycache__/test_chunk.cpython-311-pytest-9.1.1.pyc +0 -0
.env.example
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
GROQ_API_KEY=
|
| 2 |
+
GITHUB_TOKEN=
|
| 3 |
+
GROQ_MODEL=openai/gpt-oss-120b
|
.gitignore
CHANGED
|
@@ -1,7 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
.venv/
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
__pycache__/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
.pytest_cache/
|
| 7 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Environment variables and secrets
|
| 2 |
+
.env
|
| 3 |
+
.env.*
|
| 4 |
+
!.env.example
|
| 5 |
+
|
| 6 |
+
# Python environments
|
| 7 |
.venv/
|
| 8 |
+
venv/
|
| 9 |
+
env/
|
| 10 |
+
|
| 11 |
+
# Python cache
|
| 12 |
__pycache__/
|
| 13 |
+
*.py[cod]
|
| 14 |
+
*$py.class
|
| 15 |
+
|
| 16 |
+
# Test and tooling cache
|
| 17 |
.pytest_cache/
|
| 18 |
+
.mypy_cache/
|
| 19 |
+
.ruff_cache/
|
| 20 |
+
.coverage
|
| 21 |
+
htmlcov/
|
| 22 |
+
|
| 23 |
+
# macOS
|
| 24 |
+
.DS_Store
|
| 25 |
+
|
| 26 |
+
# Generated vector database
|
| 27 |
+
data/chroma/
|
| 28 |
+
|
| 29 |
+
# Cloned external repository
|
| 30 |
+
data/repo/
|
| 31 |
+
|
| 32 |
+
# IDE settings
|
| 33 |
+
.vscode/
|
| 34 |
+
.idea/
|
| 35 |
+
|
| 36 |
+
# Logs
|
| 37 |
+
*.log
|
tests/__pycache__/test_chunk.cpython-311-pytest-9.1.1.pyc
DELETED
|
Binary file (14 kB)
|
|
|