# 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() | |