FarmFreshSVG / pages /marketplace.py
taarhissian's picture
Update pages/marketplace.py
8a91614 verified
raw
history blame contribute delete
284 Bytes
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)