Spaces:
Sleeping
Sleeping
AduragbemiOyin
commited on
Commit
•
ef3c5b6
1
Parent(s):
c732201
Added app.py file
Browse files
app.py
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.set_page_config(
|
4 |
+
page_title="Langchain Chatbot",
|
5 |
+
page_icon='💬',
|
6 |
+
layout='wide'
|
7 |
+
)
|
8 |
+
|
9 |
+
st.header("Chatbot Implementations with Langchain")
|
10 |
+
|
11 |
+
st.write("""
|
12 |
+
Langchain is a powerful framework designed to streamline the development of applications using Language Models (LLMs). It provides a comprehensive integration of various components, simplifying the process of assembling them to create robust applications.
|
13 |
+
Leveraging the power of Langchain, the creation of chatbots becomes effortless. Here are a few examples of chatbot implementations catering to different use cases:
|
14 |
+
- **Basic Chatbot**: Engage in interactive conversations with the LLM.
|
15 |
+
- **Context aware chatbot**: A chatbot that remembers previous conversations and provides responses accordingly.
|
16 |
+
- **Chatbot with Internet Access**: An internet-enabled chatbot capable of answering user queries about recent events.
|
17 |
+
- **Chat with your documents**: Empower the chatbot with the ability to access custom documents, enabling it to provide answers to user queries based on the referenced information.
|
18 |
+
We will improve this implementation to include these examples as we progress in the course.
|
19 |
+
""")
|