Spaces:
Sleeping
Sleeping
Upload 3 files
Browse files- .gitignore +2 -0
- config.toml +8 -0
- requirements.txt +9 -0
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
.venv/
|
2 |
+
models/
|
config.toml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[data_sources]
|
2 |
+
urls = [
|
3 |
+
"https://isip.piconepress.com/conferences/ieee_spmb/2024/index.shtml",
|
4 |
+
"https://isip.piconepress.com/conferences/ieee_spmb/2024/html/guidelines.shtml"
|
5 |
+
]
|
6 |
+
|
7 |
+
[model]
|
8 |
+
path = "models/llama-2-7b-optimized/llama-2-7b-chat.Q4_K_M.gguf"
|
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
langchain
|
2 |
+
langchain_community
|
3 |
+
scikit-learn
|
4 |
+
streamlit
|
5 |
+
beautifulsoup4
|
6 |
+
chromadb
|
7 |
+
transformers
|
8 |
+
sentence_transformers
|
9 |
+
llama-cpp-python --prefer-binary
|