├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements-dev.lock ├── requirements.lock ├── requirements.txt └── src └── anychat ├── .streamlit ├── config.toml └── secrets_example.toml ├── __init__.py ├── chatbot.py ├── helper ├── __pycache__ │ ├── helper.cpython-310.pyc │ └── helper.cpython-312.pyc └── helper.py ├── ingest.py ├── langchain_local.py └── uploadFile.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.2 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/requirements-dev.lock -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/requirements.lock -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/anychat/.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/.streamlit/config.toml -------------------------------------------------------------------------------- /src/anychat/.streamlit/secrets_example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/.streamlit/secrets_example.toml -------------------------------------------------------------------------------- /src/anychat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/__init__.py -------------------------------------------------------------------------------- /src/anychat/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/chatbot.py -------------------------------------------------------------------------------- /src/anychat/helper/__pycache__/helper.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/helper/__pycache__/helper.cpython-310.pyc -------------------------------------------------------------------------------- /src/anychat/helper/__pycache__/helper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/helper/__pycache__/helper.cpython-312.pyc -------------------------------------------------------------------------------- /src/anychat/helper/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/helper/helper.py -------------------------------------------------------------------------------- /src/anychat/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/ingest.py -------------------------------------------------------------------------------- /src/anychat/langchain_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/langchain_local.py -------------------------------------------------------------------------------- /src/anychat/uploadFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shitan198u/AnyChat/HEAD/src/anychat/uploadFile.py --------------------------------------------------------------------------------