Spaces:
Running
Running
new logo, more requrements
Browse files- .DS_Store +0 -0
- app.py +1 -1
- local_files/pathfinder_logo.png +0 -0
- requirements.txt +3 -0
.DS_Store
CHANGED
|
Binary files a/.DS_Store and b/.DS_Store differ
|
|
|
app.py
CHANGED
|
@@ -6,7 +6,7 @@ st.set_page_config(
|
|
| 6 |
)
|
| 7 |
|
| 8 |
st.write("# Welcome to Pathfinder! 👋")
|
| 9 |
-
|
| 10 |
st.sidebar.success("Select a function above.")
|
| 11 |
st.sidebar.markdown("Current functions include visualizing papers in the arxiv embedding, searching for similar papers to an input paper or prompt phrase, or answering quick questions.")
|
| 12 |
|
|
|
|
| 6 |
)
|
| 7 |
|
| 8 |
st.write("# Welcome to Pathfinder! 👋")
|
| 9 |
+
st.image('local_files/pathfinder_logo.png',caption="Pathfinder: LLM enabled literature search")
|
| 10 |
st.sidebar.success("Select a function above.")
|
| 11 |
st.sidebar.markdown("Current functions include visualizing papers in the arxiv embedding, searching for similar papers to an input paper or prompt phrase, or answering quick questions.")
|
| 12 |
|
local_files/pathfinder_logo.png
ADDED
|
requirements.txt
CHANGED
|
@@ -5,6 +5,9 @@ scipy
|
|
| 5 |
summa
|
| 6 |
faiss-cpu
|
| 7 |
langchain
|
|
|
|
|
|
|
|
|
|
| 8 |
openai
|
| 9 |
feedparser
|
| 10 |
tiktoken
|
|
|
|
| 5 |
summa
|
| 6 |
faiss-cpu
|
| 7 |
langchain
|
| 8 |
+
langchain_openai
|
| 9 |
+
langchain_community
|
| 10 |
+
langchain_core
|
| 11 |
openai
|
| 12 |
feedparser
|
| 13 |
tiktoken
|