├── .DS_Store ├── README.md ├── chroma-peek ├── .streamlit │ └── config.toml ├── __init__.py ├── main.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── peek.cpython-310.pyc │ └── peek.cpython-39.pyc │ └── peek.py ├── images ├── homepage.png └── query.png └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/README.md -------------------------------------------------------------------------------- /chroma-peek/.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | base="dark" 3 | primaryColor="#fff700" -------------------------------------------------------------------------------- /chroma-peek/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chroma-peek/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/chroma-peek/main.py -------------------------------------------------------------------------------- /chroma-peek/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chroma-peek/utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/chroma-peek/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /chroma-peek/utils/__pycache__/peek.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/chroma-peek/utils/__pycache__/peek.cpython-310.pyc -------------------------------------------------------------------------------- /chroma-peek/utils/__pycache__/peek.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/chroma-peek/utils/__pycache__/peek.cpython-39.pyc -------------------------------------------------------------------------------- /chroma-peek/utils/peek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/chroma-peek/utils/peek.py -------------------------------------------------------------------------------- /images/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/images/homepage.png -------------------------------------------------------------------------------- /images/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pawandeep-prog/chroma-peek/HEAD/images/query.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | pandas 3 | chromadb --------------------------------------------------------------------------------