Yara Kyrychenko
commited on
Commit
Β·
00ac83a
1
Parent(s):
8754364
min upd
Browse files- .DS_Store +0 -0
- README.md +3 -3
- src/.streamlit/config.toml +8 -0
- src/streamlit_app.py +5 -0
.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
---
|
| 2 |
title: Chat
|
| 3 |
emoji: π
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: docker
|
| 7 |
app_port: 8501
|
| 8 |
tags:
|
| 9 |
- streamlit
|
| 10 |
pinned: false
|
| 11 |
-
short_description:
|
| 12 |
---
|
| 13 |
|
| 14 |
# Welcome to Streamlit!
|
|
|
|
| 1 |
---
|
| 2 |
title: Chat
|
| 3 |
emoji: π
|
| 4 |
+
colorFrom: white
|
| 5 |
+
colorTo: purple
|
| 6 |
sdk: docker
|
| 7 |
app_port: 8501
|
| 8 |
tags:
|
| 9 |
- streamlit
|
| 10 |
pinned: false
|
| 11 |
+
short_description: Chat
|
| 12 |
---
|
| 13 |
|
| 14 |
# Welcome to Streamlit!
|
src/.streamlit/config.toml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[server]
|
| 2 |
+
port = 8501
|
| 3 |
+
|
| 4 |
+
[browser]
|
| 5 |
+
gatherUsageStats = false
|
| 6 |
+
|
| 7 |
+
[theme]
|
| 8 |
+
base="light"
|
src/streamlit_app.py
CHANGED
|
@@ -4,6 +4,11 @@ import pandas as pd
|
|
| 4 |
import streamlit as st
|
| 5 |
|
| 6 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
# Welcome to Streamlit!
|
| 8 |
|
| 9 |
Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
|
|
|
|
| 4 |
import streamlit as st
|
| 5 |
|
| 6 |
"""
|
| 7 |
+
HELLO STREAMLIT!
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
# Welcome to Streamlit!
|
| 13 |
|
| 14 |
Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
|