Skip to content

Commit

Permalink
Merge branch 'main' into namesty/app-tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
namesty committed Mar 11, 2024
2 parents db32c52 + 158a69b commit 4f6ffdb
Show file tree
Hide file tree
Showing 3 changed files with 180 additions and 222 deletions.
10 changes: 9 additions & 1 deletion evo_researcher/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,15 @@ def log(self, msg: str) -> None:

with st.spinner("Researching..."):
with st.container(border=True):
report = research(goal=question, use_summaries=False, openai_api_key=openai_api_key, tavily_api_key=tavily_api_key, logger=logger)
report = research(
goal=question,
use_summaries=False,
subqueries_limit=6,
top_k_per_query=15,
openai_api_key=openai_api_key,
tavily_api_key=tavily_api_key,
logger=logger
)
with st.container().expander("Show agent's research report", expanded=False):
st.container().markdown(f"""{report}""")
if not report:
Expand Down
Loading

0 comments on commit 4f6ffdb

Please sign in to comment.