Spaces:
Running
Running
sanjeevl10
commited on
Commit
•
fbdf835
1
Parent(s):
6752e11
Fix stock image
Browse files- .gitignore +3 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -3,4 +3,6 @@ __pycache__/
|
|
3 |
.chainlit
|
4 |
*.faiss
|
5 |
*.pkl
|
6 |
-
.files
|
|
|
|
|
|
3 |
.chainlit
|
4 |
*.faiss
|
5 |
*.pkl
|
6 |
+
.files
|
7 |
+
.st
|
8 |
+
.stock_image1.png
|
app.py
CHANGED
@@ -196,7 +196,7 @@ async def on_chat_start():
|
|
196 |
cl.user_session.set("counter", 0)
|
197 |
# Sending an image with the local file path
|
198 |
elements = [
|
199 |
-
cl.Image(name="image1", display="inline", path="./
|
200 |
]
|
201 |
await cl.Message(content="Hello there, Welcome to ##StockSavyy!", elements=elements).send()
|
202 |
await cl.Message(content="Tell me the stockticker you want me to analyze.").send()
|
|
|
196 |
cl.user_session.set("counter", 0)
|
197 |
# Sending an image with the local file path
|
198 |
elements = [
|
199 |
+
cl.Image(name="image1", display="inline", path="./good_day.png",size="large")
|
200 |
]
|
201 |
await cl.Message(content="Hello there, Welcome to ##StockSavyy!", elements=elements).send()
|
202 |
await cl.Message(content="Tell me the stockticker you want me to analyze.").send()
|