Spaces:
Sleeping
Sleeping
# requirements.txt | |
# Core Streamlit | |
streamlit>=1.28.0 | |
# Machine Learning & NLP | |
torch>=2.0.0 | |
transformers>=4.30.0 | |
accelerate>=0.20.0 | |
# For GPU support with CUDA 12.1 (uncomment if you have NVIDIA GPU) | |
# torch>=2.0.0+cu121 --index-url https://download.pytorch.org/whl/cu121 | |
# LangChain & Vector Store | |
langchain>=0.1.0 | |
langchain-community>=0.0.20 | |
langchain-huggingface>=0.0.1 | |
faiss-cpu>=1.7.4 # Use faiss-gpu if you have CUDA support | |
# Embeddings | |
sentence-transformers>=2.2.0 | |
# Audio Processing | |
librosa>=0.10.0 | |
soundfile>=0.12.0 | |
scipy>=1.9.0 | |
audio-recorder-streamlit>=0.0.8 | |
# Text-to-Speech (Kokoro TTS) | |
kokoro>=0.9.2 | |
# Additional dependencies | |
numpy>=1.21.0 | |
pandas>=1.3.0 | |
python-dotenv>=1.0.0 | |
# Optional: For better GPU support (if you have NVIDIA GPU) | |
# faiss-gpu>=1.7.4 # Uncomment this and comment faiss-cpu above | |
git+https://github.com/hexgrad/kokoro.git | |
datasets |