Spaces:
Configuration error
Configuration error
File size: 704 Bytes
b08f845 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import gradio as gr
from geo_engine import get_optimizations
def generate_geo_output(keyword):
results = get_optimizations(keyword)
return results["blog_titles"], results["json_ld"], results["rewritten_prompt"]
iface = gr.Interface(
fn=generate_geo_output,
inputs=gr.Textbox(label="Enter Your Name/Brand/Keyword"),
outputs=[
gr.Textbox(label="Catchy Blog Titles"),
gr.Textbox(label="JSON-LD Schema"),
gr.Textbox(label="AI-SEO Optimized Prompt")
],
title="GEO Agent - Generative Engine Optimization Tool",
description="Boost your LLM visibility with expert-tuned content scoring and optimization."
)
if __name__ == "__main__":
iface.launch()
|