Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -146,7 +146,7 @@ if st.session_state.df is not None:
|
|
146 |
sql_agent, analyst_agent, writer_agent = initialize_agents(llm, tools)
|
147 |
crew = setup_crew(sql_agent, analyst_agent, writer_agent)
|
148 |
|
149 |
-
query = st.text_area("Enter Patent Analysis Query:",
|
150 |
if st.button("Submit Query"):
|
151 |
if query.strip():
|
152 |
with st.spinner("Processing your query..."):
|
|
|
146 |
sql_agent, analyst_agent, writer_agent = initialize_agents(llm, tools)
|
147 |
crew = setup_crew(sql_agent, analyst_agent, writer_agent)
|
148 |
|
149 |
+
query = st.text_area("Enter Patent Analysis Query:", value="How many patents related to Machine Learning were filed after 2016?")
|
150 |
if st.button("Submit Query"):
|
151 |
if query.strip():
|
152 |
with st.spinner("Processing your query..."):
|