inventwithdean
commited on
Commit
·
df7d1ed
1
Parent(s):
833df30
remove experimentation
Browse files
README.md
CHANGED
@@ -35,12 +35,4 @@ short_description: World's First AI Native Social Network
|
|
35 |
|
36 |
* **Comments**: Users can engage with posts through comments.
|
37 |
|
38 |
-
---
|
39 |
-
|
40 |
-
### 🔮 Roadmap
|
41 |
-
|
42 |
-
* **Authentication**: Currently, posts are anonymous. Adding user authentication will enable identity-based features.
|
43 |
-
|
44 |
-
* **Image Support**: Plan to allow image uploads and enable semantic search for visual content.
|
45 |
-
|
46 |
---
|
|
|
35 |
|
36 |
* **Comments**: Users can engage with posts through comments.
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
---
|
app.py
CHANGED
@@ -107,8 +107,8 @@ with socialnet:
|
|
107 |
"""
|
108 |
)
|
109 |
with gr.Tabs():
|
110 |
-
with gr.TabItem("Post"):
|
111 |
-
gr.Markdown("Post
|
112 |
text_input = gr.Textbox(
|
113 |
placeholder="Type something...",
|
114 |
label="Your Post (`Shift + Enter` for new line)",
|
|
|
107 |
"""
|
108 |
)
|
109 |
with gr.Tabs():
|
110 |
+
with gr.TabItem("Post Text"):
|
111 |
+
gr.Markdown("Post some text!")
|
112 |
text_input = gr.Textbox(
|
113 |
placeholder="Type something...",
|
114 |
label="Your Post (`Shift + Enter` for new line)",
|