Update app.py
Browse files
app.py
CHANGED
@@ -95,12 +95,12 @@ st.title("AI Veterinary Assistant Agent organizing reports")
|
|
95 |
st.write("Generate reports enriched with real-time insights using the AI Veterinary Report Writing Agent powered by SmolAgents and DuckDuckGo.")
|
96 |
|
97 |
# Input blog topic or prompt
|
98 |
-
prompt = st.text_area("Enter
|
99 |
|
100 |
# Button to generate blog content
|
101 |
if st.button("Generate Report"):
|
102 |
if prompt:
|
103 |
-
with st.spinner("Generating
|
104 |
try:
|
105 |
# Run the blog agent with the given prompt
|
106 |
result = manager_agent.run(prompt)
|
@@ -109,7 +109,7 @@ if st.button("Generate Report"):
|
|
109 |
st.write(result)
|
110 |
|
111 |
# Log backend activity
|
112 |
-
log_agent_action(prompt, result, "
|
113 |
except Exception as e:
|
114 |
st.error(f"An error occurred: {e}")
|
115 |
else:
|
|
|
95 |
st.write("Generate reports enriched with real-time insights using the AI Veterinary Report Writing Agent powered by SmolAgents and DuckDuckGo.")
|
96 |
|
97 |
# Input blog topic or prompt
|
98 |
+
prompt = st.text_area("Enter your search", placeholder="E.g., What is the latest research findings on cancer in horses?")
|
99 |
|
100 |
# Button to generate blog content
|
101 |
if st.button("Generate Report"):
|
102 |
if prompt:
|
103 |
+
with st.spinner("Generating content..."):
|
104 |
try:
|
105 |
# Run the blog agent with the given prompt
|
106 |
result = manager_agent.run(prompt)
|
|
|
109 |
st.write(result)
|
110 |
|
111 |
# Log backend activity
|
112 |
+
log_agent_action(prompt, result, "Research Agent with DuckDuckGo")
|
113 |
except Exception as e:
|
114 |
st.error(f"An error occurred: {e}")
|
115 |
else:
|