or4cl3ai commited on
Commit
ab60a70
·
1 Parent(s): 9f836f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -1
app.py CHANGED
@@ -1,3 +1,17 @@
1
  import gradio as gr
 
2
 
3
- gr.Interface.load("models/or4cl3ai/SquanchNastyAI").launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ from transformers import AutoModelForCausalLM
3
 
4
+ # Load the SquanchNastyAI model from Hugging Face Spaces
5
+ model = AutoModelForCausalLM.from_pretrained("or4cl3ai/SquanchNastyAI")
6
+
7
+ # Define a function to generate a text response to a prompt
8
+ def generate_response(prompt):
9
+ inputs = model.prepare_inputs_for_generation(prompt, max_length=1024)
10
+ outputs = model.generate(**inputs)
11
+ return outputs[0]
12
+
13
+ # Create a Gradio interface for the SquanchNastyAI model
14
+ interface = gr.Interface(fn=generate_response, inputs="text", outputs="text")
15
+
16
+ # Launch the Gradio interface
17
+ interface.launch()