├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── __init__.py ├── embedding ├── __init__.py └── emb.py ├── example.py ├── qa ├── __init__.py └── claude.py ├── requirements.txt ├── store ├── __init__.py └── ch.py └── tests ├── bitcoin.pdf └── vectordb.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | clickagent 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | ClickAgent - A vector database implementation using chdb 3 | """ 4 | -------------------------------------------------------------------------------- /embedding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/embedding/__init__.py -------------------------------------------------------------------------------- /embedding/emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/embedding/emb.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/example.py -------------------------------------------------------------------------------- /qa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/qa/__init__.py -------------------------------------------------------------------------------- /qa/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/qa/claude.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/requirements.txt -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/store/__init__.py -------------------------------------------------------------------------------- /store/ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/store/ch.py -------------------------------------------------------------------------------- /tests/bitcoin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/tests/bitcoin.pdf -------------------------------------------------------------------------------- /tests/vectordb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auxten/clickagent/HEAD/tests/vectordb.csv --------------------------------------------------------------------------------