Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
st.markdown('''
|
| 3 |
+
|
| 4 |
+
1. Productivity
|
| 5 |
+
- Agents that act as systems of action which complete common tasks.
|
| 6 |
+
- Voice first apps
|
| 7 |
+
- Apps that provide in flow assistance avoiding context switches or breaks in flow of work.
|
| 8 |
+
2. Consumer Founders
|
| 9 |
+
- AI creates opportunities for challengers
|
| 10 |
+
- The what if it works is gigantic.
|
| 11 |
+
- Culture x technology are converging
|
| 12 |
+
3. Working
|
| 13 |
+
- Consumer can be observed but not predicted - product magic and founder intuition
|
| 14 |
+
- Culture shift plus platform shift intersection
|
| 15 |
+
- Extreme product wins with word of mouth
|
| 16 |
+
4. Creativity and Productivity
|
| 17 |
+
- Content Generation - Creativity and Craft Imagination.
|
| 18 |
+
- Content Editing - Compose, Refine and Remix.
|
| 19 |
+
- Productivity Tools - Take Action For Us
|
| 20 |
+
5. Content Generation
|
| 21 |
+
- Magic to solve creativity / writers block - no blank page problem to starting
|
| 22 |
+
- Accessible open source models on Huggingface
|
| 23 |
+
- Creating Remixable Outputs
|
| 24 |
+
|
| 25 |
+
## Inputs
|
| 26 |
+
๐ ๐ ๐ท ๐ผ๏ธ ๐๏ธ ๐ง ๐ฅ ๐น
|
| 27 |
+
|
| 28 |
+
## Outputs
|
| 29 |
+
๐ฌ โ๏ธ ๐จ ๐ ๐ต ๐ถ ๐ผ ๐ฟ
|
| 30 |
+
|
| 31 |
+
## Health
|
| 32 |
+
๐ ๐ฉบ ๐ฅ ๐ ๐ ๐ฉน ๐งฌ ๐ฌ ๐ก๏ธ ๐
|
| 33 |
+
|
| 34 |
+
## Learning
|
| 35 |
+
๐ ๐ง ๐ฉโ๐ ๐ ๐ ๐ ๐ ๐๏ธ ๐จโ๐ซ ๐งฉ
|
| 36 |
+
|
| 37 |
+
## AI
|
| 38 |
+
๐ค ๐พ ๐ป ๐งฎ ๐ก ๐ ๐น๏ธ ๐ฅ๏ธ ๐งโ๐ป ๐จโ๐ฌ
|
| 39 |
+
|
| 40 |
+
## Writing
|
| 41 |
+
โ๏ธ ๐ ๐๏ธ ๐๏ธ ๐ ๐ ๐ ๐ โ๏ธ ๐
|
| 42 |
+
|
| 43 |
+
## Coding
|
| 44 |
+
๐ป ๐ฅ๏ธ ๐ง ๐ ๐ ๐จโ๐ป ๐งโ๐ป โจ๏ธ ๐ฑ๏ธ ๐ฉโ๐ป
|
| 45 |
+
|
| 46 |
+
## Remix
|
| 47 |
+
๐๏ธ ๐๏ธ ๐ง ๐ ๐ ๐ฟ ๐ถ ๐ต ๐ป ๐ค
|
| 48 |
+
|
| 49 |
+
## Movies
|
| 50 |
+
๐ฌ ๐ฟ ๐ฅ ๐ฝ๏ธ ๐๏ธ ๐บ ๐ผ ๐ ๐ฅ๏ธ ๐ป
|
| 51 |
+
|
| 52 |
+
## Video
|
| 53 |
+
๐ฅ ๐น ๐ผ ๐บ ๐ฌ ๐ฅ๏ธ ๐ป ๐๏ธ ๐ฝ๏ธ ๐
|
| 54 |
+
|
| 55 |
+
## Audio
|
| 56 |
+
๐ต ๐ถ ๐ง ๐ป ๐ค ๐ ๐๏ธ ๐๏ธ ๐๏ธ ๐ฟ
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
''')
|