Spaces:
Running
Running
Tu Nombre commited on
Commit ·
d70b31f
1
Parent(s): 462f225
fix: commit summary y requirements
Browse files- main.py +1 -0
- requirements.txt +7 -0
main.py
CHANGED
|
@@ -231,6 +231,7 @@ demo.launch()
|
|
| 231 |
def b64(s): return base64.b64encode(s.encode()).decode()
|
| 232 |
commit_payload = {
|
| 233 |
"commit_message": "TubeBot init",
|
|
|
|
| 234 |
"operations": [
|
| 235 |
{"operation": "addOrUpdate", "path": "main.py", "content": b64(main_code)},
|
| 236 |
{"operation": "addOrUpdate", "path": "requirements.txt", "content": b64(req)}
|
|
|
|
| 231 |
def b64(s): return base64.b64encode(s.encode()).decode()
|
| 232 |
commit_payload = {
|
| 233 |
"commit_message": "TubeBot init",
|
| 234 |
+
"summary": "TubeBot init",
|
| 235 |
"operations": [
|
| 236 |
{"operation": "addOrUpdate", "path": "main.py", "content": b64(main_code)},
|
| 237 |
{"operation": "addOrUpdate", "path": "requirements.txt", "content": b64(req)}
|
requirements.txt
CHANGED
|
@@ -1,3 +1,10 @@
|
|
| 1 |
fastapi
|
| 2 |
uvicorn
|
| 3 |
httpx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
fastapi
|
| 2 |
uvicorn
|
| 3 |
httpx
|
| 4 |
+
requests
|
| 5 |
+
groq
|
| 6 |
+
edge-tts
|
| 7 |
+
moviepy
|
| 8 |
+
google-api-python-client
|
| 9 |
+
google-auth
|
| 10 |
+
google-auth-oauthlib
|