ClearLove443 commited on
Commit
fab1876
β€’
1 Parent(s): 3cc0f37

remove video chat

Browse files
Files changed (1) hide show
  1. app.py +26 -26
app.py CHANGED
@@ -1,63 +1,63 @@
1
  import streamlit as st
2
 
3
-
4
- #Config
5
  st.set_page_config(layout="wide", page_icon="πŸ’¬", page_title="Robby | Chat-Bot πŸ€–")
6
 
7
 
8
- #Contact
9
  with st.sidebar.expander("πŸ“¬ Contact"):
 
 
 
 
10
 
11
- st.write("**GitHub:**",
12
- "[yvann-hub/Robby-chatbot](https://github.com/yvann-hub/Robby-chatbot)")
13
-
14
- st.write("**Medium:** "
15
- "[@yvann-hub](https://medium.com/@yvann-hub)")
16
 
17
  st.write("**Twitter:** [@yvann_hub](https://twitter.com/yvann_hub)")
18
  st.write("**Mail** : barbot.yvann@gmail.com")
19
  st.write("**Created by Yvann**")
20
 
21
 
22
- #Title
23
  st.markdown(
24
  """
25
  <h2 style='text-align: center;'>Robby, your data-aware assistant πŸ€–</h1>
26
  """,
27
- unsafe_allow_html=True,)
 
28
 
29
  st.markdown("---")
30
 
31
 
32
- #Description
33
  st.markdown(
34
- """
35
- <h5 style='text-align:center;'>I'm Robby, an intelligent chatbot created by combining
36
  the strengths of Langchain and Streamlit. I use large language models to provide
37
  context-sensitive interactions. My goal is to help you better understand your data.
38
  I support PDF, TXT, CSV, Youtube transcript 🧠</h5>
39
  """,
40
- unsafe_allow_html=True)
 
41
  st.markdown("---")
42
 
43
 
44
- #Robby's Pages
45
  st.subheader("πŸš€ Robby's Pages")
46
- st.write("""
 
47
  - **Robby-Chat**: General Chat on data (PDF, TXT,CSV) with a [vectorstore](https://github.com/facebookresearch/faiss) (index useful parts(max 4) for respond to the user) | works with [ConversationalRetrievalChain](https://python.langchain.com/en/latest/modules/chains/index_examples/chat_vector_db.html)
48
  - **Robby-Sheet** (beta): Chat on tabular data (CSV) | for precise information | process the whole file | works with [CSV_Agent](https://python.langchain.com/en/latest/modules/agents/toolkits/examples/csv.html) + [PandasAI](https://github.com/gventuri/pandas-ai) for data manipulation and graph creation
49
- - **Robby-Youtube**: Summarize YouTube videos with [summarize-chain](https://python.langchain.com/en/latest/modules/chains/index_examples/summarize.html)
50
- """)
51
  st.markdown("---")
52
 
53
 
54
- #Contributing
55
  st.markdown("### 🎯 Contributing")
56
- st.markdown("""
 
57
  **Robby is under regular development. Feel free to contribute and help me make it even more data-aware!**
58
- """, unsafe_allow_html=True)
59
-
60
-
61
-
62
-
63
-
 
1
  import streamlit as st
2
 
3
+ # Config
 
4
  st.set_page_config(layout="wide", page_icon="πŸ’¬", page_title="Robby | Chat-Bot πŸ€–")
5
 
6
 
7
+ # Contact
8
  with st.sidebar.expander("πŸ“¬ Contact"):
9
+ st.write(
10
+ "**GitHub:**",
11
+ "[yvann-hub/Robby-chatbot](https://github.com/yvann-hub/Robby-chatbot)",
12
+ )
13
 
14
+ st.write("**Medium:** " "[@yvann-hub](https://medium.com/@yvann-hub)")
 
 
 
 
15
 
16
  st.write("**Twitter:** [@yvann_hub](https://twitter.com/yvann_hub)")
17
  st.write("**Mail** : barbot.yvann@gmail.com")
18
  st.write("**Created by Yvann**")
19
 
20
 
21
+ # Title
22
  st.markdown(
23
  """
24
  <h2 style='text-align: center;'>Robby, your data-aware assistant πŸ€–</h1>
25
  """,
26
+ unsafe_allow_html=True,
27
+ )
28
 
29
  st.markdown("---")
30
 
31
 
32
+ # Description
33
  st.markdown(
34
+ """
35
+ <h5 style='text-align:center;'>I'm Robby, an intelligent chatbot created by combining
36
  the strengths of Langchain and Streamlit. I use large language models to provide
37
  context-sensitive interactions. My goal is to help you better understand your data.
38
  I support PDF, TXT, CSV, Youtube transcript 🧠</h5>
39
  """,
40
+ unsafe_allow_html=True,
41
+ )
42
  st.markdown("---")
43
 
44
 
45
+ # Robby's Pages
46
  st.subheader("πŸš€ Robby's Pages")
47
+ st.write(
48
+ """
49
  - **Robby-Chat**: General Chat on data (PDF, TXT,CSV) with a [vectorstore](https://github.com/facebookresearch/faiss) (index useful parts(max 4) for respond to the user) | works with [ConversationalRetrievalChain](https://python.langchain.com/en/latest/modules/chains/index_examples/chat_vector_db.html)
50
  - **Robby-Sheet** (beta): Chat on tabular data (CSV) | for precise information | process the whole file | works with [CSV_Agent](https://python.langchain.com/en/latest/modules/agents/toolkits/examples/csv.html) + [PandasAI](https://github.com/gventuri/pandas-ai) for data manipulation and graph creation
51
+ """
52
+ )
53
  st.markdown("---")
54
 
55
 
56
+ # Contributing
57
  st.markdown("### 🎯 Contributing")
58
+ st.markdown(
59
+ """
60
  **Robby is under regular development. Feel free to contribute and help me make it even more data-aware!**
61
+ """,
62
+ unsafe_allow_html=True,
63
+ )