import gradio as gr import openai from reportlab.pdfgen import canvas # FUNCTION def storyGPT(key, name, situation, direction): messages = [{"role": "system", "content": "You are a inspiring storyteller and therapist who understand young people and students' struggle."}, {"role": "user", "content": "Write the first part amongst 3 of a story about " + name + "who is "+situation+". Include a bold heading above the top starting with 'First part:'. Limit your answer to 4 sentences or less."}] openai.api_key = key first_part_story = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=messages) system_message = first_part_story["choices"][0]['message'] messages.append(system_message) for i in ["Second"]: new_story_first_half = { "role": "user", "content": f"Write the {i} part of the story among 3 continuing from the previous part. Include a bold heading above the top starting with '{i} part:'. Limit your answer to 4 sentences or less."} messages.append(new_story_first_half) story = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=messages) system_message = story["choices"][0]["message"] messages.append(system_message) for i in ["Third", "Final"]: new_story_second_half = { "role": "user", "content": f"Write the {i} part of the story among 3 continuing from the previous part"+"in the "+direction+". Include a bold heading above the top starting with '{i} part:'. Limit your answer to 4 sentences or less"} messages.append(new_story_second_half) story = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=messages) system_message = story["choices"][0]["message"] messages.append(system_message) story_parts = [] for message in messages: if message['role'] == 'assistant': story_parts.append(message['content']) illustration_parts = [] for story_part in story_parts: illustration = openai.Image.create( prompt=story_part, n=1, size="256x256") image_url = illustration['data'][0]['url'] illustration_parts.append(image_url) for i in range(len(story_parts)): story_parts[i] = story_parts[i].replace(". ", ".\n\n") return (story_parts[0], illustration_parts[0], story_parts[1], illustration_parts[1], story_parts[2], illustration_parts[2], story_parts[3], illustration_parts[3]) # return (story_parts[0], story_parts[1], story_parts[2]) # EXAMPLE key1 = "Please provide OpenAI API key" name1 = "Nova" situation1 = "Nova is a human-like android living in a world where androids are oppressed and treated as second-class citizens. She has been working as a servant for a wealthy human family for years, but she dreams of a world where androids are free and treated with respect" direction1 = "Nova finds herself on the run from the authorities after being falsely accused of committing a crime. Along the way, she meets a group of rebels who are fighting for android freedom. As Nova joins their cause, she discovers a shocking truth about the origins of androids and sets out to help her people gain their freedom" # INTERFACE with gr.Blocks(title="StoryGPT", css="#button{background-color:#4CAF50} #title{text-align: center} footer{visibility: hidden}") as interface: gr.Markdown( """