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) | |