Hephaestus / app.py
Socrates101's picture
Update app.py
3cb1b83 verified
raw
history blame contribute delete
416 Bytes
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()