Spaces:
Runtime error
Runtime error
Yannick Lemin commited on
Commit ·
696aabe
1
Parent(s): fe65d83
added uv dependencies
Browse files- .gitignore +40 -0
- pyproject.toml +8 -0
- uv.lock +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python-generated files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[oc]
|
| 4 |
+
build/
|
| 5 |
+
dist/
|
| 6 |
+
wheels/
|
| 7 |
+
*.egg-info
|
| 8 |
+
|
| 9 |
+
# Virtual environments
|
| 10 |
+
.venv
|
| 11 |
+
|
| 12 |
+
# JetBrains
|
| 13 |
+
.idea/
|
| 14 |
+
|
| 15 |
+
# Local environment
|
| 16 |
+
.env
|
| 17 |
+
|
| 18 |
+
# Added this to ignore models downloaded from HF
|
| 19 |
+
model_cache/
|
| 20 |
+
# Ignore finder files
|
| 21 |
+
.DS_Store
|
| 22 |
+
/.DS_Store
|
| 23 |
+
|
| 24 |
+
*.pkl
|
| 25 |
+
|
| 26 |
+
# ignore gradio private files
|
| 27 |
+
.gradio
|
| 28 |
+
/.gradio
|
| 29 |
+
|
| 30 |
+
# ignore diagnostics reports
|
| 31 |
+
**/report.txt
|
| 32 |
+
|
| 33 |
+
# Docker related
|
| 34 |
+
.env
|
| 35 |
+
.env.*
|
| 36 |
+
!.env.example
|
| 37 |
+
|
| 38 |
+
logs/
|
| 39 |
+
|
| 40 |
+
*.tar
|
pyproject.toml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "adf-chatbot2"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
requires-python = ">=3.13"
|
| 6 |
+
dependencies = [
|
| 7 |
+
"gradio>=5.29.0",
|
| 8 |
+
]
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|