ARK.AI / app.py
Arphd4's picture
Add liquid-glass chat UI
aa85d13
raw
history blame
416 Bytes
# 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()