import gradio as gr from post_blog import main def post_blog(title, category, summary, mindmap, citation, access_key): status = main(title, category, summary, mindmap, citation, access_key) return status def clear_everything(title, category, summary, mindmap, citation, status, access_key): return None, None, None, None, None, None, None theme = gr.themes.Soft( primary_hue="purple", secondary_hue="cyan", neutral_hue="slate", font=[ gr.themes.GoogleFont("Syne"), gr.themes.GoogleFont("Poppins"), gr.themes.GoogleFont("Poppins"), gr.themes.GoogleFont("Poppins") ], ) with gr.Blocks(theme=theme, title="ReXplore Blog Poster", fill_height=True) as app: gr.HTML( value ="""
Designed and Developed by Nayan Kasturi
This app posts Blogs to Blogger.
""") with gr.Column(): with gr.Row(): title = gr.Textbox(label="Title", placeholder="Enter Blog Title") category = gr.Textbox(label="Category", placeholder="Enter Blog Category") access_key = gr.Textbox(label="Access Key", placeholder="Enter the Access Key", type="password") with gr.Row(): summary = gr.Textbox(label="Summary", placeholder="Enter the summary", lines=7) mindmap = gr.Textbox(label="Mindmap", placeholder="Enter the mindmap", lines=7) citation = gr.Textbox(label="Citation", placeholder="Enter the citation", lines=7) with gr.Row(): clear_btn = gr.Button(value="Clear", variant="stop") summarize_btn = gr.Button(value="Post Blog", variant="primary") status = gr.Textbox(label="Status", placeholder="Blog Post Status", interactive=False) summarize_btn.click( post_blog, inputs=[category, title, summary, mindmap, citation, access_key], outputs=[status], concurrency_limit=25, scroll_to_output=True, show_api=True, api_name="rexplore_blog_poster", show_progress="full", ) clear_btn.click(clear_everything, inputs=[category, title, summary, mindmap, citation, access_key, status], outputs=[category, title, summary, mindmap, citation, access_key, status], show_api=False) app.queue(default_concurrency_limit=25).launch(show_api=True)