Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -66,6 +66,66 @@ def display_context_table(context_words):
|
|
66 |
table += f"| {before if before else ''} | {high} | {after if after else ''} |\n"
|
67 |
st.markdown(table)
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
# Load example files
|
70 |
def load_example_files():
|
71 |
example_files = [f for f in os.listdir() if f.endswith('.txt')]
|
@@ -103,4 +163,7 @@ if file_text:
|
|
103 |
display_context_graph(context_words)
|
104 |
|
105 |
with st.expander("π Context Table"):
|
106 |
-
display_context_table(context_words)
|
|
|
|
|
|
|
|
66 |
table += f"| {before if before else ''} | {high} | {after if after else ''} |\n"
|
67 |
st.markdown(table)
|
68 |
|
69 |
+
def showInnovationOutlines():
|
70 |
+
st.markdown("""
|
71 |
+
|
72 |
+
# AI App Areas in Demand and Opportunities for 100x π
|
73 |
+
|
74 |
+
## Creativity + Productivity π¨β
|
75 |
+
|
76 |
+
| **Area** | **Opportunity** | **Innovation Keywords** |
|
77 |
+
|---------------------|---------------------------------------------------------------------------------|---------------------------------------------------------------------|
|
78 |
+
| **Content Generation** | Enable consumers to create art, music, videos, or graphics without complex training. | **Bridges creativity and craft**, making imagination a reality. |
|
79 |
+
| **Content Editing** | Automate editing workflows and introduce AI-native edits. | **Compose, refine, remix** content seamlessly. |
|
80 |
+
| **Productivity** | Transform tasks into actions, providing leverage on time. | **Executing tasks** and **giving leverage** on time. |
|
81 |
+
|
82 |
+
## High Opportunities for 100x π
|
83 |
+
|
84 |
+
### Content Generation
|
85 |
+
|
86 |
+
| **What We're Looking For** | **Details** | **Emoji** |
|
87 |
+
|----------------------------------|-----------------------------------------------------------------------------------------------------|-----------|
|
88 |
+
| **Killing the "blank page problem"** | From text prompts to slide decks, generation products that **create content** from "blank pages". | πβ‘οΈπ |
|
89 |
+
| **Making open source models accessible** | Products that **utilize tech** in the browser or app, making open-source models accessible. | π»π |
|
90 |
+
| **Creating remixable outputs** | Platforms that allow creators to **make work instantly remixable**, enhancing creativity. | ππ¨ |
|
91 |
+
|
92 |
+
### Content Editing
|
93 |
+
|
94 |
+
| **What We're Looking For** | **Details** | **Emoji** |
|
95 |
+
|----------------------------------|-----------------------------------------------------------------------------------------------|-----------|
|
96 |
+
| **Owning multi-media workflows** | Workflow products that allow users to **generate, refine, and stitch different content types**. | πΌοΈ+π΅ |
|
97 |
+
| **Enabling in-platform refinement** | AI products that help users **automatically improve** their creations. | β¨π§ |
|
98 |
+
| **Iterating with intelligent editors** | Products that enable users to **refine existing outputs** without starting from scratch. | πβοΈ |
|
99 |
+
|
100 |
+
### Productivity
|
101 |
+
|
102 |
+
| **What We're Looking For** | **Details** | **Emoji** |
|
103 |
+
|------------------------------|-----------------------------------------------------------------------------------------------------|-----------|
|
104 |
+
| **Agents that act as systems of action** | General and specialized agents that **complete tasks**, like booking restaurants or analyzing data. | π€πΌ |
|
105 |
+
| **Voice-first apps** | AI apps that prioritize **voice input**, making interaction more natural. | π£οΈπ± |
|
106 |
+
| **Apps that provide in-flow assistance** | Tools that **minimize context switching** by offering information and actions within workflow. | ππ οΈ |
|
107 |
+
|
108 |
+
## Companionship + Social π§βπ€βπ§π
|
109 |
+
|
110 |
+
| **Area** | **Opportunity** | **Innovation Keywords** |
|
111 |
+
|---------------------|---------------------------------------------------------------------|--------------------------------------------------------------|
|
112 |
+
| **Companionship** | AI offers an **infinitely patient and engaging friend**. | **Engaging in conversation** about any topic. |
|
113 |
+
| **Social** | Enhancing interactions and helping **meet new people**. | **Fun interactions** and **enhanced matchmaking**. |
|
114 |
+
|
115 |
+
## Personal Growth π±
|
116 |
+
|
117 |
+
| **Area** | **Opportunity** | **Innovation Keywords** |
|
118 |
+
|---------------------|---------------------------------------------------------------------|--------------------------------------------------------------|
|
119 |
+
| **Education** | Personalized learning environments for every consumer. | **Personalized support** at a lower cost. |
|
120 |
+
| **Personal Finance**| AI-driven financial advice and portfolio management. | **Money on autopilot** and **self-managing assets**. |
|
121 |
+
| **Wellness** | Judgment-free expert advice for a better future. | **Judgment-free experts** and **personalized wellness plans**.|
|
122 |
+
|
123 |
+
This table encapsulates the essence of AI's transformative potential across creativity, productivity, companionship, social engagement, and personal growth. By focusing on these key areas and innovation keywords, we identify the high-impact opportunities where AI can multiply value and redefine experiences.
|
124 |
+
|
125 |
+
|
126 |
+
""")
|
127 |
+
|
128 |
+
|
129 |
# Load example files
|
130 |
def load_example_files():
|
131 |
example_files = [f for f in os.listdir() if f.endswith('.txt')]
|
|
|
163 |
display_context_graph(context_words)
|
164 |
|
165 |
with st.expander("π Context Table"):
|
166 |
+
display_context_table(context_words)
|
167 |
+
|
168 |
+
with st.expander("Innovation Outlines"):
|
169 |
+
showInnovationOutlines()
|