Final_Assignment_Template / playground.py
Renzo
Comment out incorrect print_response call in agent.py
745d7fa
raw
history blame contribute delete
213 Bytes
from agno.playground import Playground, serve_playground_app
from agent import agent
app = Playground(agents=[agent]).get_app()
if __name__ == "__main__":
serve_playground_app("playground:app", reload=True)