CodyAI-Model / app.py
NeuralWolf's picture
Added all the files my model will need
9d9bb0d verified
Raw
History Blame Contribute Delete
251 Bytes
import gradio as gr
def hello():
return "🚀 Snake AI coming soon!"
demo = gr.Interface(
fn=hello,
inputs=[],
outputs="text",
title="Snake AI (DQN)",
description="Built from scratch using NumPy"
)
demo.launch()