Mauriciotuks commited on
Commit
938bbb4
·
verified ·
1 Parent(s): bce2cd6

Create gradio.py

Browse files
Files changed (1) hide show
  1. gradio.py +9 -0
gradio.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ gr.Interface(
4
+ fn=ask_llama,
5
+ inputs="text",
6
+ outputs="text",
7
+ title="Assistant IO – LLaMA Guard",
8
+ description="Assistant IA basé sur LLaMA Guard 2 8B"
9
+ ).launch()