update plugin.png
Browse files- app.py +2 -1
- images/plugins.png +0 -0
app.py
CHANGED
|
@@ -8,6 +8,7 @@
|
|
| 8 |
|
| 9 |
|
| 10 |
import streamlit as st
|
|
|
|
| 11 |
from agents import instructAgent, salesAgent, chinookAgent, chatAgent
|
| 12 |
|
| 13 |
##############################################################################
|
|
@@ -68,7 +69,7 @@ if question_text and len(question_text) > 1:
|
|
| 68 |
height = min(2*len(output), 280)
|
| 69 |
st.text_area(label="In response ...",
|
| 70 |
value=output, height=height)
|
| 71 |
-
|
| 72 |
|
| 73 |
##############################################################################
|
| 74 |
|
|
|
|
| 8 |
|
| 9 |
|
| 10 |
import streamlit as st
|
| 11 |
+
from pprint import pprint
|
| 12 |
from agents import instructAgent, salesAgent, chinookAgent, chatAgent
|
| 13 |
|
| 14 |
##############################################################################
|
|
|
|
| 69 |
height = min(2*len(output), 280)
|
| 70 |
st.text_area(label="In response ...",
|
| 71 |
value=output, height=height)
|
| 72 |
+
# st.code(pprint(output), language="markdown")
|
| 73 |
|
| 74 |
##############################################################################
|
| 75 |
|
images/plugins.png
CHANGED
|
|