Spaces:
Running
Running
Commit
·
5110d54
1
Parent(s):
ff0624e
updated readme
Browse files- README.md +6 -0
- appointment_receptionist.png +0 -0
- src/streamlitui/loadui.py +5 -5
README.md
CHANGED
@@ -10,3 +10,9 @@ pinned: false
|
|
10 |
license: apache-2.0
|
11 |
short_description: Langgraph
|
12 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
license: apache-2.0
|
11 |
short_description: Langgraph
|
12 |
---
|
13 |
+
|
14 |
+
# Langgraph
|
15 |
+
## UseCases
|
16 |
+
### 1. Appointment Receptionist
|
17 |
+
reference:
|
18 |
+

|
appointment_receptionist.png
ADDED
![]() |
src/streamlitui/loadui.py
CHANGED
@@ -37,11 +37,11 @@ class LoadStreamlitUI:
|
|
37 |
|
38 |
|
39 |
# Use agent description about role
|
40 |
-
self.user_controls['agent_descriptions'] = st.text_input("Enter the description about an agent",placeholder='eg. You are a helpful assistant that always responds in a polite, upbeat and positive manner.')
|
41 |
-
st.session_state["chat_with_history"] = st.sidebar.toggle("Chat With History")
|
42 |
-
self.user_controls['num_history_responses'] = 0
|
43 |
-
if st.session_state["chat_with_history"]:
|
44 |
-
|
45 |
|
46 |
if self.user_controls['selected_usecase'] == "Appointment Receptionist":
|
47 |
col1, col2 = st.columns(2)
|
|
|
37 |
|
38 |
|
39 |
# Use agent description about role
|
40 |
+
# self.user_controls['agent_descriptions'] = st.text_input("Enter the description about an agent",placeholder='eg. You are a helpful assistant that always responds in a polite, upbeat and positive manner.')
|
41 |
+
# st.session_state["chat_with_history"] = st.sidebar.toggle("Chat With History")
|
42 |
+
# self.user_controls['num_history_responses'] = 0
|
43 |
+
# if st.session_state["chat_with_history"]:
|
44 |
+
# self.user_controls['num_history_responses'] = st.number_input("Enter number of history include from last chat",placeholder="eg. 1",step=1)
|
45 |
|
46 |
if self.user_controls['selected_usecase'] == "Appointment Receptionist":
|
47 |
col1, col2 = st.columns(2)
|