gitextract_i8arbao_/ ├── .dockerignore ├── .github/ │ ├── README-exec/ │ │ ├── onnx.readme.md │ │ └── torch.readme.md │ ├── codecov.yml │ ├── labeler.yml │ ├── release-template.ejs │ └── workflows/ │ ├── cd.yml │ ├── ci.yml │ ├── force-docker-build-cas.yml │ ├── force-docker-build.yml │ ├── force-docs-build.yml │ ├── force-hub-push.yml │ ├── force-release.yml │ ├── label-pr.yml │ └── tag.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Dockerfiles/ │ ├── base.Dockerfile │ ├── cuda.Dockerfile │ ├── server.Dockerfile │ └── tensorrt.Dockerfile ├── LICENSE ├── README.md ├── client/ │ ├── clip_client/ │ │ ├── __init__.py │ │ ├── client.py │ │ └── helper.py │ └── setup.py ├── docs/ │ ├── Makefile │ ├── _static/ │ │ ├── cas-grafana.json │ │ ├── demo-embed.html │ │ ├── demo-text-rank.html │ │ └── main.css │ ├── _templates/ │ │ ├── page.html │ │ └── sidebar/ │ │ ├── brand.html │ │ └── navigation.html │ ├── changelog/ │ │ └── index.md │ ├── conf.py │ ├── hosting/ │ │ ├── by-jina.md │ │ ├── cas-on-colab.ipynb │ │ ├── colab.md │ │ └── on-jcloud.md │ ├── html_extra/ │ │ └── robots.txt │ ├── index.md │ ├── makedoc.sh │ ├── playground/ │ │ ├── embedding.md │ │ ├── reasoning.md │ │ └── searching.md │ ├── requirements.txt │ └── user-guides/ │ ├── benchmark.rst │ ├── client.md │ ├── faq.md │ ├── finetuner.md │ ├── retriever.md │ └── server.md ├── scripts/ │ ├── MANIFEST.in │ ├── benchmark.py │ ├── black.sh │ ├── docstrings_lint.sh │ ├── get-all-test-paths.sh │ ├── get-last-release-note.py │ ├── get-requirements.py │ ├── onnx_helper.py │ ├── release.sh │ └── setup.py ├── server/ │ ├── MANIFEST.in │ ├── clip_server/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── executors/ │ │ │ ├── __init__.py │ │ │ ├── clip_onnx.py │ │ │ ├── clip_tensorrt.py │ │ │ ├── clip_torch.py │ │ │ └── helper.py │ │ ├── helper.py │ │ ├── model/ │ │ │ ├── __init__.py │ │ │ ├── clip.py │ │ │ ├── clip_model.py │ │ │ ├── clip_onnx.py │ │ │ ├── clip_trt.py │ │ │ ├── cnclip_model.py │ │ │ ├── flash_attention.py │ │ │ ├── mclip_model.py │ │ │ ├── model.py │ │ │ ├── openclip_model.py │ │ │ ├── pretrained_models.py │ │ │ ├── simple_tokenizer.py │ │ │ ├── tokenization.py │ │ │ └── trt_utils.py │ │ ├── onnx-flow.yml │ │ ├── tensorrt-flow.yml │ │ └── torch-flow.yml │ └── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── test_asyncio.py ├── test_client.py ├── test_helper.py ├── test_model.py ├── test_ranker.py ├── test_search.py ├── test_server.py ├── test_simple.py ├── test_tensorrt.py └── test_tokenization.py