broductmanager commited on
Commit
d64a66d
·
1 Parent(s): 1199ace

Upload eduPlan.py

Browse files
Files changed (1) hide show
  1. eduPlan.py +85 -0
eduPlan.py ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+
4
+ import streamlit as st
5
+ from langchain import PromptTemplate
6
+ from langchain.llms import OpenAI
7
+ import math
8
+
9
+
10
+ # LLM loading function
11
+ def load_LLM(openai_api_key):
12
+ llm = OpenAI(openai_api_key=openai_api_key)
13
+ return llm
14
+
15
+
16
+ # Generate content plan with GPT-3
17
+ def generate_content_plan(llm, content_input, video_length, video_style, tone):
18
+ prompt = f"""Generate a {content_type} {video_length}-minute long video content plan based on the article. Prioritize key insights and allocate time to each section based on its complexity, relevance to the overall topic, and fitting within the {video_length} time frame. Specify the time in seconds for each section. The article is as follows: {content_input}
19
+ Make sure to distribute the time effectively among sections to ensure a balanced and informative video within the specified time limit.For sections, ensure that the total duration does not exceed {video_length}. the video is for {video_style} and users are {tone}
20
+ Each section should be described as a JSON-like object: {{ "Title": "section_title", "Description": "description", "Duration": "duration in seconds" }}
21
+
22
+
23
+
24
+
25
+ """
26
+ content_plan = llm(prompt)
27
+ return content_plan
28
+ # Generate detailed content for each section
29
+ def generate_detailed_content(llm, content_input, video_length, video_style, tone, content_type, content_plan):
30
+ prompt = f"""Based on the content plan provided below, create a detailed script for a {video_length}-minute video:
31
+ Content Plan: {content_plan}
32
+
33
+ Please note:
34
+ - 'Title' refers to the title of the section.
35
+ - 'Description' refers to a brief overview of the section.
36
+ - 'Duration' refers to the time allocated to each section in seconds.
37
+
38
+ The script should include:
39
+ - Introductory lines for each section
40
+ - Key points for each section
41
+ - Data or examples to support key points
42
+ - Transitions between sections
43
+ - A closing statement
44
+
45
+ Additional Context:
46
+ - Content Type: {content_type}
47
+ - Video Style: {video_style}
48
+ - Target Audience: {tone}
49
+ - Base Article: {content_input}
50
+ """
51
+
52
+ detailed_content = llm(prompt)
53
+ return detailed_content
54
+
55
+
56
+
57
+ # Streamlit UI
58
+ st.set_page_config(page_title="ScriptMaven📜🧠", page_icon=":robot:")
59
+ st.header("ScriptMaven 📜🧠: Your Edu-Video Blueprint")
60
+
61
+
62
+ openai_api_key = st.text_input("OpenAI API Key", "Ex: sk-2twmA8tfCb8un4...")
63
+ video_style = st.selectbox('Video Style:', ('YouTube', 'Corporate'))
64
+ tone = st.selectbox('Tone:', ('For Students', 'Director Level', 'New Employee Level', 'CEO Level', 'For Teens'))
65
+ video_length = st.selectbox('Video Length:', ('5', '10m', '15m', '20m', '30m'))
66
+ content_type = st.selectbox('Content Type:', ('Case Study', 'Masterclass', 'Documentary', 'How-to Videos', 'Coding', 'Summary', 'Review'))
67
+ content_input = st.text_area("Content Input", "Your content...")
68
+
69
+
70
+ # Generate plan button
71
+ # ...
72
+ # Generate Content Plan Button
73
+ if st.button("Generate Plan"):
74
+ llm = load_LLM(openai_api_key=openai_api_key)
75
+ content_plan = generate_content_plan(llm, content_input, video_length, video_style, tone)
76
+
77
+ # Display the generated plan
78
+ st.write("Generated Content Plan:")
79
+ st.write(content_plan)
80
+
81
+ # Pass the generated content_plan directly into the next prompt
82
+ detailed_content = generate_detailed_content(llm, content_plan, content_input, video_length, video_style, tone, content_type)
83
+
84
+ st.write("Generated Detailed Scripts:")
85
+ st.write(detailed_content)