juanluisrto commited on
Commit
8a38ae1
Β·
verified Β·
1 Parent(s): 0e7a11a

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. .DS_Store +0 -0
  2. README.md +6 -8
  3. app.py +8 -0
  4. requirements.txt +21 -0
.DS_Store ADDED
Binary file (6.15 kB). View file
 
README.md CHANGED
@@ -1,12 +1,10 @@
1
  ---
2
- title: Test
3
- emoji: πŸ“‰
4
- colorFrom: purple
5
- colorTo: indigo
6
  sdk: gradio
7
- sdk_version: 4.19.1
8
  app_file: app.py
9
  pinned: false
10
- ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: test
3
+ emoji: πŸ‘¨πŸ»β€βš•οΈ
4
+ colorFrom: green
5
+ colorTo: yellow
6
  sdk: gradio
7
+ sdk_version: 4.18.0
8
  app_file: app.py
9
  pinned: false
10
+ ---
 
 
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+ demo = gr.load("troper/assistant",
4
+ src="spaces",
5
+ hf_token=os.environ["HUGGINGFACE_AUTH_TOKEN"])
6
+
7
+ demo.launch()
8
+
requirements.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ torch
2
+ torchaudio
3
+ #nvidia-cublas-cu11
4
+ #nvidia-cudnn-cu11
5
+ faster-whisper
6
+ #transformers
7
+
8
+ langchain
9
+ langchain_openai
10
+
11
+ gradio
12
+ python-dotenv
13
+ #pyannote.audio
14
+ soundfile
15
+
16
+ librosa
17
+ rapidfuzz
18
+ apscheduler
19
+
20
+ gspread
21
+ oauth2client