Leonardo Parente commited on
Commit
2ad92e3
·
1 Parent(s): 7eec674

Add requirements

Browse files
Files changed (2) hide show
  1. app.py +7 -2
  2. requirements.txt +1 -0
app.py CHANGED
@@ -1,4 +1,9 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
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