Skip to content

Commit

Permalink
added streamlit
Browse files Browse the repository at this point in the history
  • Loading branch information
sreyakumar committed Nov 27, 2024
1 parent 8de1020 commit 7b1f096
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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?")
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ dependencies = [
'pytest',
'fastapi',
'uvicorn',
'sshtunnel'
'sshtunnel',
'streamlit'
]

[project.optional-dependencies]
Expand Down

0 comments on commit 7b1f096

Please sign in to comment.