├── .env ├── README.md ├── constants.py ├── db ├── chroma-collections.parquet ├── chroma-embeddings.parquet └── index │ ├── id_to_uuid_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl │ ├── index_b9718edd-fd19-45ce-8e90-58831cc9eefc.bin │ ├── index_metadata_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl │ └── uuid_to_id_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl ├── ingest.py ├── own private gpt.PNG ├── owngpt.py ├── requirements.txt └── source_documents └── chatGpt.txt /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/README.md -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/constants.py -------------------------------------------------------------------------------- /db/chroma-collections.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/db/chroma-collections.parquet -------------------------------------------------------------------------------- /db/chroma-embeddings.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/db/chroma-embeddings.parquet -------------------------------------------------------------------------------- /db/index/id_to_uuid_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/db/index/id_to_uuid_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl -------------------------------------------------------------------------------- /db/index/index_b9718edd-fd19-45ce-8e90-58831cc9eefc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/db/index/index_b9718edd-fd19-45ce-8e90-58831cc9eefc.bin -------------------------------------------------------------------------------- /db/index/index_metadata_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/db/index/index_metadata_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl -------------------------------------------------------------------------------- /db/index/uuid_to_id_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/db/index/uuid_to_id_b9718edd-fd19-45ce-8e90-58831cc9eefc.pkl -------------------------------------------------------------------------------- /ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/ingest.py -------------------------------------------------------------------------------- /own private gpt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/own private gpt.PNG -------------------------------------------------------------------------------- /owngpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/owngpt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /source_documents/chatGpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviggithub/OwnGPT/HEAD/source_documents/chatGpt.txt --------------------------------------------------------------------------------