Spaces:
Running
Running
Carlos Salgado
commited on
Commit
•
c40d04b
1
Parent(s):
28532c4
reorder requirements, add more to flake
Browse files- app.py +0 -1
- flake.nix +2 -0
- requirements.txt +7 -5
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
import os
|
2 |
import io
|
3 |
import os
|
4 |
import streamlit as st
|
|
|
|
|
1 |
import io
|
2 |
import os
|
3 |
import streamlit as st
|
flake.nix
CHANGED
@@ -42,6 +42,8 @@
|
|
42 |
python-pkgs.lark
|
43 |
python-pkgs.sentence-transformers
|
44 |
pkgs.unstructured-api
|
|
|
|
|
45 |
]))
|
46 |
];
|
47 |
|
|
|
42 |
python-pkgs.lark
|
43 |
python-pkgs.sentence-transformers
|
44 |
pkgs.unstructured-api
|
45 |
+
pkgs.poppler
|
46 |
+
pkgs.haskellPackages.iso639
|
47 |
]))
|
48 |
];
|
49 |
|
requirements.txt
CHANGED
@@ -1,9 +1,11 @@
|
|
|
|
1 |
langchain_community
|
2 |
langchain-text-splitters
|
3 |
langchain-together
|
4 |
-
unstructured[local-inference]
|
5 |
-
python-dotenv
|
6 |
-
streamlit
|
7 |
-
langchain
|
8 |
openai
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
langchain
|
2 |
langchain_community
|
3 |
langchain-text-splitters
|
4 |
langchain-together
|
|
|
|
|
|
|
|
|
5 |
openai
|
6 |
+
streamlit
|
7 |
+
python-dotenv
|
8 |
+
sentence-transformers
|
9 |
+
iso639-lang
|
10 |
+
poppler
|
11 |
+
unstructured[all-docs]
|