Spaces:
Runtime error
Runtime error
File size: 430 Bytes
3e8a64e f042d67 a0978dc f042d67 e770142 f042d67 9f16574 f042d67 9f16574 f042d67 9f16574 f042d67 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
from transformers import pipeline
# Create a pipeline using the model you want
pipe = pipeline("text-generation", model="inceptionai/jais-13b", trust_remote_code=True)
# Function to generate text
def generate_text(prompt):
return pipe(prompt)[0]['generated_text']
# Set up the Gradio interface
iface = gr.Interface(fn=generate_text, inputs="text", outputs="text")
# Launch the interface
iface.launch()
|