File size: 287 Bytes
a2ca67f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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)