matterattetatte commited on
Commit
be371dd
·
verified ·
1 Parent(s): dfaf382

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 the description of your patient visit:", placeholder="E.g., Today, I helped Max, a 5 year old Chihuahua")
99
 
100
  # Button to generate blog content
101
  if st.button("Generate Report"):
102
  if prompt:
103
- with st.spinner("Generating blog content..."):
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, "Blog Writing Agent with DuckDuckGo")
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: