zinoubm commited on
Commit
67a194b
·
1 Parent(s): 606a5bd

adding requirements.txt

Browse files
Files changed (3) hide show
  1. .gitignore +2 -1
  2. requirements.txt +5 -3
  3. vercel.json +2 -6
.gitignore CHANGED
@@ -1,3 +1,4 @@
1
  .env
2
  env/
3
- __pycache__/
 
 
1
  .env
2
  env/
3
+ __pycache__/
4
+ .vercel
requirements.txt CHANGED
@@ -1,9 +1,11 @@
 
1
  google_api_python_client==2.80.0
2
  google_auth_oauthlib==1.0.0
3
- gradio==3.20.0
4
  librosa==0.10.0
5
  openai==0.27.0
6
- protobuf==4.22.0
7
  python-dotenv==1.0.0
8
  soundfile==0.12.1
9
- fastapi-sessions
 
 
1
+ fastapi==0.93.0
2
  google_api_python_client==2.80.0
3
  google_auth_oauthlib==1.0.0
4
+ gradio==3.20.1
5
  librosa==0.10.0
6
  openai==0.27.0
7
+ protobuf==4.22.1
8
  python-dotenv==1.0.0
9
  soundfile==0.12.1
10
+ starlette==0.25.0
11
+ uvicorn==0.20.0
vercel.json CHANGED
@@ -1,6 +1,5 @@
1
  {
2
- "version": 2,
3
- "builds": [
4
  {
5
  "src": "main.py",
6
  "use": "@vercel/python"
@@ -9,10 +8,7 @@
9
  "routes": [
10
  {
11
  "src": "/(.*)",
12
- "dest": "/main.py"
13
  }
14
  ],
15
- "env": {
16
- "PYTHONUNBUFFERED": "1"
17
- }
18
  }
 
1
  {
2
+ "builds": [
 
3
  {
4
  "src": "main.py",
5
  "use": "@vercel/python"
 
8
  "routes": [
9
  {
10
  "src": "/(.*)",
11
+ "dest": "/app.py"
12
  }
13
  ],
 
 
 
14
  }