bizvideoschool
commited on
Commit
•
85df0a9
1
Parent(s):
09b2212
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
import openai
|
3 |
|
4 |
# Access the OpenAI API key from Hugging Face Spaces secrets
|
@@ -10,7 +10,7 @@ st.title("2024 Video Marketing Plan Generator with Class Recommendations")
|
|
10 |
def recommend_classes(video_experience):
|
11 |
# Full class list from the Small Business Video Roadmap
|
12 |
class_list = [
|
13 |
-
"""
|
14 |
Getting Started with Video Using The 6-Step BVS Process
|
15 |
Class #1: Why Video Works and Outlining Your 12-Month Plan
|
16 |
Class #2: 6 Simple Steps to Creating a Video (Part 1)
|
@@ -311,7 +311,6 @@ Develop Your 2023 Real Estate Marketing Plan (Part 2)
|
|
311 |
Implement Tristan's SOI Video Touch System (Part 1)
|
312 |
Implement Tristan's SOI Video Touch System (Part 2)
|
313 |
"""
|
314 |
-
# Add your full class list here
|
315 |
]
|
316 |
|
317 |
if video_experience < 3:
|
@@ -369,4 +368,3 @@ if st.button('Generate My Video Marketing Plan and Class Recommendations'):
|
|
369 |
st.button("Copy to Clipboard", key="copy-button")
|
370 |
|
371 |
# No additional code needed beyond this point for your application
|
372 |
-
|
|
|
1 |
+
import streamlit as st
|
2 |
import openai
|
3 |
|
4 |
# Access the OpenAI API key from Hugging Face Spaces secrets
|
|
|
10 |
def recommend_classes(video_experience):
|
11 |
# Full class list from the Small Business Video Roadmap
|
12 |
class_list = [
|
13 |
+
"""Course #1
|
14 |
Getting Started with Video Using The 6-Step BVS Process
|
15 |
Class #1: Why Video Works and Outlining Your 12-Month Plan
|
16 |
Class #2: 6 Simple Steps to Creating a Video (Part 1)
|
|
|
311 |
Implement Tristan's SOI Video Touch System (Part 1)
|
312 |
Implement Tristan's SOI Video Touch System (Part 2)
|
313 |
"""
|
|
|
314 |
]
|
315 |
|
316 |
if video_experience < 3:
|
|
|
368 |
st.button("Copy to Clipboard", key="copy-button")
|
369 |
|
370 |
# No additional code needed beyond this point for your application
|
|