Spaces:
Sleeping
Sleeping
Leonardo Parente
commited on
Commit
·
2ad92e3
1
Parent(s):
7eec674
Add requirements
Browse files- app.py +7 -2
- requirements.txt +1 -0
app.py
CHANGED
@@ -1,4 +1,9 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
st.title("🪩🤖")
|
4 |
+
|
5 |
+
st.chat_message("ai").write("Ask me anything about orb community projects!")
|
6 |
+
|
7 |
+
if prompt := st.chat_input("Ask something"):
|
8 |
+
st.write(f"User has sent the following prompt: {prompt}")
|
9 |
+
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
langchain
|