Spaces:
Build error
Build error
Keane Moraes
commited on
Commit
•
15ea0fb
1
Parent(s):
10d9795
qol and description changes
Browse files- app.py +13 -2
- media/qrcode.png +0 -0
app.py
CHANGED
@@ -4,9 +4,20 @@ import mdforest
|
|
4 |
import utils
|
5 |
import os
|
6 |
|
7 |
-
st.title("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
file1 = st.file_uploader("Upload a file", type=["md", "txt"], key="first")
|
9 |
-
st.
|
10 |
file2 = st.file_uploader("Upload a file", type=["md", "txt"], key="second")
|
11 |
|
12 |
topics = {}
|
|
|
4 |
import utils
|
5 |
import os
|
6 |
|
7 |
+
st.title("Welcome to Concepting")
|
8 |
+
|
9 |
+
col1, mid, col2 = st.columns([30,5,20])
|
10 |
+
with col1:
|
11 |
+
st.markdown("This is a demo of _one of the many_ use cases for an embedding of all your notes. This application lets you find **common ideas** between any two notes.")
|
12 |
+
st.markdown("You can upload two markdown files and the application will find the common ideas between them. It will generate insights based on the common ideas.")
|
13 |
+
st.markdown("**I will be building a better embedding model soon.** Stay tuned for updates. This is just a demo of what is possible with a good embedding model.")
|
14 |
+
with col2:
|
15 |
+
st.markdown("#### [Sign up for updates](https://embeddr.my.canva.site/)")
|
16 |
+
st.image("media/qrcode.png")
|
17 |
+
|
18 |
+
st.markdown("### Drop the first document")
|
19 |
file1 = st.file_uploader("Upload a file", type=["md", "txt"], key="first")
|
20 |
+
st.markdown("### Drop the second document")
|
21 |
file2 = st.file_uploader("Upload a file", type=["md", "txt"], key="second")
|
22 |
|
23 |
topics = {}
|
media/qrcode.png
ADDED