Spaces:
Paused
Paused
Fix requirements
Browse files- app.py +0 -2
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -17,8 +17,6 @@ text_splitter = CharacterTextSplitter.from_huggingface_tokenizer(bloomz_tokenize
|
|
| 17 |
separator="\n")
|
| 18 |
documents = text_splitter.split_documents(data)
|
| 19 |
|
| 20 |
-
print(documents)
|
| 21 |
-
|
| 22 |
embeddings = HuggingFaceEmbeddings()
|
| 23 |
|
| 24 |
llm = HuggingFacePipeline.from_model_id(
|
|
|
|
| 17 |
separator="\n")
|
| 18 |
documents = text_splitter.split_documents(data)
|
| 19 |
|
|
|
|
|
|
|
| 20 |
embeddings = HuggingFaceEmbeddings()
|
| 21 |
|
| 22 |
llm = HuggingFacePipeline.from_model_id(
|
requirements.txt
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
langchain
|
|
|
|
| 2 |
beautifulsoup4
|
| 3 |
chromadb
|
| 4 |
sentence_transformers
|
| 5 |
transformers
|
| 6 |
xformers
|
| 7 |
huggingface-hub
|
| 8 |
-
lxml
|
|
|
|
| 1 |
langchain
|
| 2 |
+
lxml
|
| 3 |
beautifulsoup4
|
| 4 |
chromadb
|
| 5 |
sentence_transformers
|
| 6 |
transformers
|
| 7 |
xformers
|
| 8 |
huggingface-hub
|
|
|