AnomalousPrime commited on
Commit
18eb408
·
verified ·
1 Parent(s): e32bdad

Create app.py

Browse files

Initial Arcane Advisor chatbot

Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def arcane_response(prompt):
4
+ return f"🧿 Stylometric clause received: {prompt}\nRouted through Miranda validator."
5
+
6
+ gr.ChatInterface(fn=arcane_response, title="Arcane Advisor").launch()