Spaces:
Sleeping
Sleeping
File size: 1,563 Bytes
a546c80 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
import gradio as gr
from transformers import pipeline
from gtts import gTTS
from io import BytesIO
from PIL import Image
# Initialize transformers for each task
text_generation_pipe = pipeline("text-generation", model="gpt2")
text_to_speech_pipe = pipeline("text-to-speech", model="google")
image_generation_pipe = pipeline("image-generation", model="stable-diffusion")
# Function for generating stories, audio, and illustrations
def generate_story_and_illustration(prompt, character_name):
# Generate story text
story_text = text_generation_pipe(prompt=f"Once upon a time, {character_name}... {prompt}", max_length=150)[0]["generated_text"]
# Generate audio from story text
tts_audio = gTTS(text=story_text, lang="en")
audio_buffer = BytesIO()
tts_audio.save(audio_buffer)
audio_buffer.seek(0)
# Generate image based on story
image = image_generation_pipe(prompt=story_text)
# Return generated story, audio, and image
return story_text, audio_buffer.read(), image
# Gradio interface for user interaction
interface = gr.Interface(
fn=generate_story_and_illustration,
inputs=[
gr.Textbox(label="Start your story with..."),
gr.Textbox(label="Give your character a name:"),
],
outputs=[
gr.Textbox(label="Story"),
gr.Audio(label="Listen to the story"),
gr.Image(label="See the story come alive"),
],
title="Storyteller Playground",
description="Create amazing stories with the help of AI!",
theme="kids",
)
# Launch the app
interface.launch()
|