Spaces:
Sleeping
Sleeping
import gradio as gr | |
def hephaestus_response(user_input): | |
return f"Hephaestus AI response to: We can give you idea about {user_input}" | |
iface = gr.Interface( | |
fn=hephaestus_response, | |
inputs="text", | |
outputs="text", | |
title="Hephaestus AI Architect", | |
description="Enter a description of the AI task you need help with, and Hephaestus will respond with predictions or insights." | |
) | |
iface.launch() | |