├── .github └── workflows │ ├── CI.yml │ ├── PyPI.yml │ └── TestPyPI.yml ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── demo_ss.png ├── pyproject.toml ├── pyrightconfig.json ├── requirements.txt ├── src ├── streamlit_chromadb_connection.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt └── streamlit_chromadb_connection │ ├── __init__.py │ └── chromadb_connection.py └── tests └── unit_tests ├── collection_test.py └── connect_test.py /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/PyPI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/.github/workflows/PyPI.yml -------------------------------------------------------------------------------- /.github/workflows/TestPyPI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/.github/workflows/TestPyPI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/README.md -------------------------------------------------------------------------------- /demo_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/demo_ss.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/streamlit_chromadb_connection.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/src/streamlit_chromadb_connection.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/streamlit_chromadb_connection.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/src/streamlit_chromadb_connection.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/streamlit_chromadb_connection.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/streamlit_chromadb_connection.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/src/streamlit_chromadb_connection.egg-info/requires.txt -------------------------------------------------------------------------------- /src/streamlit_chromadb_connection.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | streamlit_chromadb_connection 2 | -------------------------------------------------------------------------------- /src/streamlit_chromadb_connection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/streamlit_chromadb_connection/chromadb_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/src/streamlit_chromadb_connection/chromadb_connection.py -------------------------------------------------------------------------------- /tests/unit_tests/collection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/tests/unit_tests/collection_test.py -------------------------------------------------------------------------------- /tests/unit_tests/connect_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev317/streamlit_chromadb_connection/HEAD/tests/unit_tests/connect_test.py --------------------------------------------------------------------------------