Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,17 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|