File size: 416 Bytes
aa85d13 4375810 aa85d13 4375810 aa85d13 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# app.py
import gradio as gr
# Load your models and functions here
# Define your Gradio interface
iface = gr.Interface(
fn=your_function,
inputs=gr.Textbox(placeholder="Type your prompt here..."),
outputs="text",
title="ARK-AI Chat",
description="ARK-AI: A savage, funny, chaotic-good AI assistant powered by multiple models.",
css="styles.css" # Link to your custom CSS
)
iface.launch()
|