Commit
Β·
253ce6d
1
Parent(s):
b8112e3
updated readme again
Browse files
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
title: Search Engine LLM App
|
3 |
-
emoji:
|
4 |
colorFrom: pink
|
5 |
colorTo: indigo
|
6 |
sdk: streamlit
|
@@ -8,6 +8,7 @@ sdk_version: 1.42.0
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
|
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
title: Search Engine LLM App
|
3 |
+
emoji: π
|
4 |
colorFrom: pink
|
5 |
colorTo: indigo
|
6 |
sdk: streamlit
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
+
short_description: This app allows you to chat with an LLM that can search web.
|
12 |
---
|
13 |
|
14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
@@ -12,7 +12,7 @@ from dotenv import load_dotenv
|
|
12 |
load_dotenv()
|
13 |
|
14 |
## Embeddings
|
15 |
-
os.environ["HF_TOKEN"] = os.getenv("
|
16 |
embeddings = HuggingFaceEmbeddings(model_name="all-MiniLM-L6-v2")
|
17 |
|
18 |
# Set WSL IP where Ollama is running
|
|
|
12 |
load_dotenv()
|
13 |
|
14 |
## Embeddings
|
15 |
+
os.environ["HF_TOKEN"] = os.getenv("HF_TOKEN")
|
16 |
embeddings = HuggingFaceEmbeddings(model_name="all-MiniLM-L6-v2")
|
17 |
|
18 |
# Set WSL IP where Ollama is running
|