Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- app.py +1 -1
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -3,7 +3,6 @@ import time
|
|
| 3 |
|
| 4 |
import gradio as gr
|
| 5 |
import numpy as np
|
| 6 |
-
from numpy.typing import NDArray
|
| 7 |
from dotenv import load_dotenv
|
| 8 |
from elevenlabs import ElevenLabs
|
| 9 |
from fastapi import FastAPI
|
|
@@ -17,6 +16,7 @@ from fastrtc import (
|
|
| 17 |
)
|
| 18 |
from gradio.utils import get_space
|
| 19 |
from groq import Groq
|
|
|
|
| 20 |
|
| 21 |
load_dotenv()
|
| 22 |
groq_client = Groq()
|
|
|
|
| 3 |
|
| 4 |
import gradio as gr
|
| 5 |
import numpy as np
|
|
|
|
| 6 |
from dotenv import load_dotenv
|
| 7 |
from elevenlabs import ElevenLabs
|
| 8 |
from fastapi import FastAPI
|
|
|
|
| 16 |
)
|
| 17 |
from gradio.utils import get_space
|
| 18 |
from groq import Groq
|
| 19 |
+
from numpy.typing import NDArray
|
| 20 |
|
| 21 |
load_dotenv()
|
| 22 |
groq_client = Groq()
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
fastrtc[stopword]
|
| 2 |
python-dotenv
|
| 3 |
openai
|
| 4 |
twilio
|
|
|
|
| 1 |
+
fastrtc[stopword]
|
| 2 |
python-dotenv
|
| 3 |
openai
|
| 4 |
twilio
|