You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def main():
st.set_page_config(page_title="AI research agent", page_icon=":bird:")
st.header("AI research agent :bird:")
query = st.text_input("Research goal")
if query:
st.write("Doing research for ", query)
result = agent({"input": query})
st.info(result['output'])
gives error
The text was updated successfully, but these errors were encountered:
import streamlit as st
otherwise
gives error
The text was updated successfully, but these errors were encountered: