File size: 284 Bytes
8a91614
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
from agents.marketplace_agent import marketplace_agent

def show():
    st.title("Marketplace")
    search_query = st.text_input("Search for a crop")
    if st.button("Search"):
        response = marketplace_agent.chat(search_query)
        st.write(response)