agent_1 / run_blog_agent.py
jojopp's picture
working agent for blog writting
a2ca67f
raw
history blame
287 Bytes
from app import agent
from Gradio_UI import GradioUI
# Create the Gradio interface
ui = GradioUI(agent)
# Launch the interface
if __name__ == "__main__":
print("Starting Blog Writing Assistant...")
print("Access the interface in your web browser...")
ui.launch(share=True)