Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +16 -1
requirements.txt
CHANGED
@@ -1,10 +1,25 @@
|
|
|
|
1 |
streamlit
|
|
|
|
|
2 |
openai
|
|
|
|
|
3 |
langchain
|
|
|
|
|
4 |
sentence-transformers
|
|
|
|
|
5 |
torch
|
|
|
|
|
6 |
pandas
|
7 |
openpyxl
|
|
|
|
|
8 |
nltk
|
9 |
spacy
|
10 |
-
|
|
|
|
|
|
1 |
+
# Streamlit for UI
|
2 |
streamlit
|
3 |
+
|
4 |
+
# OpenAI API for Translation & Validation
|
5 |
openai
|
6 |
+
|
7 |
+
# LangChain for AI agent orchestration
|
8 |
langchain
|
9 |
+
|
10 |
+
# Sentence Transformers for Glossary Enforcement
|
11 |
sentence-transformers
|
12 |
+
|
13 |
+
# PyTorch (Required for embeddings)
|
14 |
torch
|
15 |
+
|
16 |
+
# Pandas & OpenPyXL for Glossary Excel Handling
|
17 |
pandas
|
18 |
openpyxl
|
19 |
+
|
20 |
+
# Natural Language Processing (NLTK & spaCy)
|
21 |
nltk
|
22 |
spacy
|
23 |
+
|
24 |
+
# Fix compatibility issues in Hugging Face Spaces
|
25 |
+
protobuf==3.20.*
|