Spaces:
Build error
Build error
Upload 3 files
Browse files- apikey.py +1 -0
- app.py +50 -0
- youtube_ai_requirement.txt +169 -0
apikey.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
apikey='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'
|
app.py
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import streamlit as st
|
3 |
+
from langchain.llms import OpenAI
|
4 |
+
from langchain.prompts import PromptTemplate
|
5 |
+
from langchain.chains import LLMChain, SequentialChain
|
6 |
+
from langchain.memory import ConversationBufferMemory
|
7 |
+
from langchain.utilities import WikipediaAPIWrapper
|
8 |
+
from apikey import apikey
|
9 |
+
|
10 |
+
|
11 |
+
os.environ['OPENAI_API_KEY']=apikey
|
12 |
+
# app framework
|
13 |
+
st.title('Youtube Content Studio 🚀')
|
14 |
+
prompt=st.text_input('Plug in your prompt here')
|
15 |
+
|
16 |
+
#Prompt templates
|
17 |
+
title_template=PromptTemplate(
|
18 |
+
input_variables=['topic'],
|
19 |
+
template='write me a youtube video title about {topic}'
|
20 |
+
)
|
21 |
+
script_template=PromptTemplate(
|
22 |
+
input_variables=['title','wikipedia_research'],
|
23 |
+
template='write me a youtube script based on this title TITLE: {title} while leveraging this wikipedia research: {wikipedia_research}'
|
24 |
+
)
|
25 |
+
|
26 |
+
# Memory
|
27 |
+
title_memory=ConversationBufferMemory(input_key='topic',memory_key='chat_history')
|
28 |
+
script_memory=ConversationBufferMemory(input_key='title',memory_key='chat_history')
|
29 |
+
# LLMS
|
30 |
+
llm=OpenAI(temperature=0.9)
|
31 |
+
title_chain=LLMChain(llm=llm,prompt=title_template,verbose=True,output_key='title',memory=title_memory)
|
32 |
+
script_chain=LLMChain(llm=llm,prompt=script_template,verbose=True,output_key='script',memory=script_memory)
|
33 |
+
|
34 |
+
wiki=WikipediaAPIWrapper()
|
35 |
+
|
36 |
+
# Show stuff to teh screen if there is a prompt
|
37 |
+
if prompt:
|
38 |
+
title=title_chain.run(prompt)
|
39 |
+
wiki_research=wiki.run(prompt)
|
40 |
+
script=script_chain.run(title=title,wikipedia_research=wiki_research)
|
41 |
+
st.write(title)
|
42 |
+
st.write(script)
|
43 |
+
|
44 |
+
|
45 |
+
with st.expander('Title History'):
|
46 |
+
st.info(title_memory.buffer)
|
47 |
+
with st.expander('Script History'):
|
48 |
+
st.info(script_memory.buffer)
|
49 |
+
with st.expander('Wikipedia research History'):
|
50 |
+
st.info(wiki_research)
|
youtube_ai_requirement.txt
ADDED
@@ -0,0 +1,169 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==1.4.0
|
2 |
+
aiohttp==3.8.4
|
3 |
+
aiosignal==1.3.1
|
4 |
+
altair==4.2.2
|
5 |
+
asttokens==2.2.1
|
6 |
+
astunparse==1.6.3
|
7 |
+
async-generator==1.10
|
8 |
+
async-timeout==4.0.2
|
9 |
+
attrs==23.1.0
|
10 |
+
backcall==0.2.0
|
11 |
+
beautifulsoup4==4.11.2
|
12 |
+
blinker==1.6.2
|
13 |
+
blis==0.7.9
|
14 |
+
cachetools==5.3.0
|
15 |
+
catalogue==2.0.8
|
16 |
+
certifi==2022.12.7
|
17 |
+
cffi==1.15.1
|
18 |
+
charset-normalizer==2.0.12
|
19 |
+
click==8.1.3
|
20 |
+
colorama==0.4.6
|
21 |
+
comm==0.1.2
|
22 |
+
confection==0.0.4
|
23 |
+
contourpy==1.0.7
|
24 |
+
cosine-similarity==0.1.2
|
25 |
+
cryptography==40.0.2
|
26 |
+
cycler==0.11.0
|
27 |
+
cymem==2.0.7
|
28 |
+
dataclasses-json==0.5.7
|
29 |
+
debugpy==1.6.6
|
30 |
+
decorator==5.1.1
|
31 |
+
Deprecated==1.2.14
|
32 |
+
distlib==0.3.6
|
33 |
+
docopt==0.6.2
|
34 |
+
entrypoints==0.4
|
35 |
+
et-xmlfile==1.1.0
|
36 |
+
exceptiongroup==1.1.1
|
37 |
+
executing==1.2.0
|
38 |
+
filelock==3.12.0
|
39 |
+
flatbuffers==23.1.21
|
40 |
+
fonttools==4.38.0
|
41 |
+
frozenlist==1.3.3
|
42 |
+
fsspec==2023.1.0
|
43 |
+
gast==0.4.0
|
44 |
+
gensim==4.3.1
|
45 |
+
gevent==22.10.2
|
46 |
+
gitdb==4.0.10
|
47 |
+
GitPython==3.1.31
|
48 |
+
google-auth==2.16.2
|
49 |
+
google-auth-oauthlib==1.0.0
|
50 |
+
google-pasta==0.2.0
|
51 |
+
greenlet==2.0.2
|
52 |
+
grequests==0.6.0
|
53 |
+
grpcio==1.51.3
|
54 |
+
h11==0.14.0
|
55 |
+
h5py==3.8.0
|
56 |
+
ibm-cloud-sdk-core==3.16.7
|
57 |
+
ibm-watson==7.0.0
|
58 |
+
idna==3.4
|
59 |
+
importlib-metadata==6.6.0
|
60 |
+
ipykernel==6.21.2
|
61 |
+
ipython==8.11.0
|
62 |
+
jax==0.4.10
|
63 |
+
jedi==0.18.2
|
64 |
+
Jinja2==3.1.2
|
65 |
+
joblib==1.2.0
|
66 |
+
jsonschema==4.17.3
|
67 |
+
jupyter_client==8.0.3
|
68 |
+
jupyter_core==5.2.0
|
69 |
+
keras==2.12.0
|
70 |
+
Keras-Preprocessing==1.1.2
|
71 |
+
kiwisolver==1.4.4
|
72 |
+
langchain==0.0.187
|
73 |
+
langcodes==3.3.0
|
74 |
+
libclang==15.0.6.1
|
75 |
+
lxml==4.9.2
|
76 |
+
Markdown==3.4.1
|
77 |
+
markdown-it-py==2.2.0
|
78 |
+
MarkupSafe==2.1.2
|
79 |
+
marshmallow==3.19.0
|
80 |
+
marshmallow-enum==1.5.1
|
81 |
+
matplotlib==3.7.0
|
82 |
+
matplotlib-inline==0.1.6
|
83 |
+
mdurl==0.1.2
|
84 |
+
ml-dtypes==0.1.0
|
85 |
+
multidict==6.0.4
|
86 |
+
murmurhash==1.0.9
|
87 |
+
mypy-extensions==1.0.0
|
88 |
+
mysql-connector-python==8.0.32
|
89 |
+
nest-asyncio==1.5.6
|
90 |
+
nltk==3.8.1
|
91 |
+
numexpr==2.8.4
|
92 |
+
numpy==1.23.5
|
93 |
+
oauthlib==3.2.2
|
94 |
+
openai==0.27.7
|
95 |
+
openapi-schema-pydantic==1.2.4
|
96 |
+
opencv-python==4.7.0.72
|
97 |
+
openpyxl==3.1.1
|
98 |
+
opt-einsum==3.3.0
|
99 |
+
outcome==1.2.0
|
100 |
+
packaging==23.0
|
101 |
+
pandas==1.5.3
|
102 |
+
parso==0.8.3
|
103 |
+
pathy==0.10.1
|
104 |
+
pickleshare==0.7.5
|
105 |
+
Pillow==9.4.0
|
106 |
+
pip-review==1.3.0
|
107 |
+
pipreqs==0.4.13
|
108 |
+
platformdirs==3.5.1
|
109 |
+
preshed==3.0.8
|
110 |
+
prompt-toolkit==3.0.38
|
111 |
+
protobuf==3.20.3
|
112 |
+
psutil==5.9.4
|
113 |
+
pure-eval==0.2.2
|
114 |
+
pyarrow==12.0.0
|
115 |
+
pyasn1==0.4.8
|
116 |
+
pyasn1-modules==0.2.8
|
117 |
+
pycparser==2.21
|
118 |
+
pydantic==1.10.7
|
119 |
+
pydeck==0.8.1b0
|
120 |
+
pygame==2.2.0
|
121 |
+
PyGithub==1.58.2
|
122 |
+
Pygments==2.14.0
|
123 |
+
PyJWT==2.7.0
|
124 |
+
Pympler==1.0.1
|
125 |
+
PyNaCl==1.5.0
|
126 |
+
pyOpenSSL==23.1.1
|
127 |
+
pyparsing==3.0.9
|
128 |
+
pyrsistent==0.19.3
|
129 |
+
PySocks==1.7.1
|
130 |
+
python-dateutil==2.8.2
|
131 |
+
python-dotenv==1.0.0
|
132 |
+
pytz==2022.7.1
|
133 |
+
pywin32==305
|
134 |
+
PyYAML==6.0
|
135 |
+
pyzmq==25.0.0
|
136 |
+
regex==2023.5.5
|
137 |
+
requests==2.31.0
|
138 |
+
requests-oauthlib==1.3.1
|
139 |
+
rich==13.4.1
|
140 |
+
rsa==4.9
|
141 |
+
scikit-learn==1.2.2
|
142 |
+
scipy==1.10.1
|
143 |
+
seaborn==0.12.2
|
144 |
+
selenium==4.2.0
|
145 |
+
six==1.16.0
|
146 |
+
smart-open==6.3.0
|
147 |
+
smmap==5.0.0
|
148 |
+
sniffio==1.3.0
|
149 |
+
sortedcontainers==2.4.0
|
150 |
+
soupsieve==2.4.1
|
151 |
+
spacy==3.5.3
|
152 |
+
spacy-legacy==3.0.12
|
153 |
+
spacy-loggers==1.0.4
|
154 |
+
SQLAlchemy==2.0.15
|
155 |
+
srsly==2.4.6
|
156 |
+
stack-data==0.6.2
|
157 |
+
streamlit==1.22.0
|
158 |
+
wcwidth==0.2.6
|
159 |
+
webdriver-manager==3.7.1
|
160 |
+
websocket-client==1.1.0
|
161 |
+
Werkzeug==2.2.3
|
162 |
+
wikipedia==1.4.0
|
163 |
+
wrapt==1.14.1
|
164 |
+
wsproto==1.2.0
|
165 |
+
yarg==0.1.9
|
166 |
+
yarl==1.9.2
|
167 |
+
zipp==3.15.0
|
168 |
+
zope.event==4.6
|
169 |
+
zope.interface==6.0
|