From 7b1f0965ddb210dba6168d64ac7ecde3d4d0a498 Mon Sep 17 00:00:00 2001 From: sreyakumar <121137643+sreyakumar@users.noreply.github.com> Date: Wed, 27 Nov 2024 11:52:29 -0800 Subject: [PATCH] added streamlit --- app.py | 3 +-- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 85d9b41..996665e 100644 --- a/app.py +++ b/app.py @@ -6,16 +6,15 @@ import sys import os -sys.path.insert(0, os.path.abspath('./src')) from metadata_chatbot.agents.GAMER import GAMER #run on terminal with streamlit run c:/Users/sreya.kumar/Documents/GitHub/metadata-chatbot/app.py [ARGUMENTS] +unique_id = str(uuid.uuid4()) async def main(): llm = GAMER() - unique_id = str(uuid.uuid4()) message = st.chat_message("assistant") message.write("Hello! How can I help you?") diff --git a/pyproject.toml b/pyproject.toml index b2589a4..b208f63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,8 @@ dependencies = [ 'pytest', 'fastapi', 'uvicorn', - 'sshtunnel' + 'sshtunnel', + 'streamlit' ] [project.optional-dependencies]