From 920fe19608ba06ed8c2b4c9a23944af35cf24e56 Mon Sep 17 00:00:00 2001 From: Raju Komati Date: Fri, 28 Apr 2023 00:40:43 +0530 Subject: added main module for accessing all services --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 300ad223..cec7eee1 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,5 @@ *.log cookie.json + +*.pyc -- cgit v1.2.3 From 479b8d6d104a353eab94bff07b1cd429da0278f0 Mon Sep 17 00:00:00 2001 From: Raju Komati Date: Fri, 28 Apr 2023 03:26:39 +0530 Subject: added pyproject.toml file --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index cec7eee1..eaa668e6 100644 --- a/.gitignore +++ b/.gitignore @@ -9,10 +9,12 @@ .idea/ -*/__pycache__/ +**/__pycache__/ *.log cookie.json *.pyc + +dist/ -- cgit v1.2.3 From 952f7dbee9e702f12dfa0a25f26159a9c8421cee Mon Sep 17 00:00:00 2001 From: noptuno Date: Thu, 27 Apr 2023 19:15:50 -0400 Subject: First implementation of streamlit chat app in gui folder --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 300ad223..e73dcc13 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,15 @@ /dataSources/ /dataSources.local.xml +# Ignore local python virtual environment +venv/ + +# Ignore streamlit_chat_app.py conversations pickle +conversations.pkl + +# Ignore accounts created by api's +accounts.txt + .idea/ */__pycache__/ -- cgit v1.2.3 From 104e58a3421665fc3acfd7fea8e1317fe1181c6d Mon Sep 17 00:00:00 2001 From: noptuno Date: Thu, 27 Apr 2023 20:48:00 -0400 Subject: merged pr #218 with the new streamlit --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index b063aca5..4034c08f 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,8 @@ accounts.txt **/__pycache__/ +__pycache__/ + *.log cookie.json -- cgit v1.2.3 From efcab486896e84a016850523f6967b0cdbf25f54 Mon Sep 17 00:00:00 2001 From: noptuno Date: Thu, 27 Apr 2023 22:23:38 -0400 Subject: Remove ignored files from repository --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 4034c08f..e4553fbb 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ venv/ # Ignore streamlit_chat_app.py conversations pickle conversations.pkl +*.pkl # Ignore accounts created by api's accounts.txt -- cgit v1.2.3