cocoindex 0.2.16__tar.gz → 0.2.18__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/workflows/_test.yml +4 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.pre-commit-config.yaml +7 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/Cargo.lock +77 -38
- {cocoindex-0.2.16 → cocoindex-0.2.18}/Cargo.toml +10 -4
- {cocoindex-0.2.16 → cocoindex-0.2.18}/PKG-INFO +4 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/THIRD_PARTY_NOTICES.html +54 -21
- cocoindex-0.2.18/dev/README.md +37 -0
- cocoindex-0.2.18/dev/generate_cli_docs.py +286 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/contributing/guide.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/contributing/new_built_in_target.mdx +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/contributing/setup_dev_environment.md +5 -2
- cocoindex-0.2.18/docs/docs/core/cli-commands.md +215 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/cli.mdx +3 -20
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/data_types.mdx +30 -9
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/flow_def.mdx +30 -30
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/flow_methods.mdx +4 -4
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/settings.mdx +20 -18
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/academic_papers_index.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/codebase_index.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/custom_targets.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/docs_to_knowledge_graph.md +4 -4
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/patient_form_extraction.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/photo_search.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/postgres_source.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/product_recommendation.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/simple_vector_index.md +3 -3
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/getting_started/quickstart.md +2 -2
- cocoindex-0.2.18/docs/docs/ops/functions.md +252 -0
- cocoindex-0.2.16/docs/docs/ops/sources.md → cocoindex-0.2.18/docs/docs/sources/index.md +18 -1
- cocoindex-0.2.18/docs/docs/targets/index.md +340 -0
- cocoindex-0.2.18/docs/docs/targets/kuzu.md +60 -0
- cocoindex-0.2.18/docs/docs/targets/lancedb.md +92 -0
- cocoindex-0.2.18/docs/docs/targets/neo4j.md +52 -0
- cocoindex-0.2.18/docs/docs/targets/postgres.md +104 -0
- cocoindex-0.2.18/docs/docs/targets/qdrant.md +56 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docusaurus.config.ts +9 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/sidebars.ts +23 -7
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/code_embedding/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/custom_output_files/README.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/docs_to_knowledge_graph/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/README.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/dockerfile +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/gdrive_text_embedding/README.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/live_updates/README.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/pdf_embedding/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/postgres_source/README.md +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/main.py +0 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_qdrant/README.md +2 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/pyproject.toml +15 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/auth_registry.py +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/cli.py +121 -41
- cocoindex-0.2.18/python/cocoindex/engine_object.py +272 -0
- cocoindex-0.2.16/python/cocoindex/convert.py → cocoindex-0.2.18/python/cocoindex/engine_value.py +64 -208
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/flow.py +7 -2
- cocoindex-0.2.18/python/cocoindex/functions/__init__.py +40 -0
- cocoindex-0.2.18/python/cocoindex/functions/_engine_builtin_specs.py +66 -0
- cocoindex-0.2.18/python/cocoindex/functions/colpali.py +250 -0
- cocoindex-0.2.18/python/cocoindex/functions/sbert.py +63 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/lib.py +1 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/op.py +7 -3
- cocoindex-0.2.18/python/cocoindex/sources/__init__.py +5 -0
- cocoindex-0.2.16/python/cocoindex/sources.py → cocoindex-0.2.18/python/cocoindex/sources/_engine_builtin_specs.py +3 -3
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/targets/_engine_builtin_specs.py +19 -1
- cocoindex-0.2.18/python/cocoindex/tests/test_engine_object.py +331 -0
- cocoindex-0.2.16/python/cocoindex/tests/test_convert.py → cocoindex-0.2.18/python/cocoindex/tests/test_engine_value.py +150 -26
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/typing.py +125 -3
- cocoindex-0.2.18/src/base/json_schema.rs +1420 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/base/schema.rs +19 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/base/spec.rs +4 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/builder/analyzer.rs +54 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/builder/exec_ctx.rs +12 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/builder/flow_builder.rs +9 -3
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/builder/plan.rs +2 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/db_tracking_setup.rs +4 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/evaluator.rs +87 -45
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/live_updater.rs +217 -155
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/row_indexer.rs +32 -7
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/source_indexer.rs +34 -1
- cocoindex-0.2.18/src/execution/stats.rs +660 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/gemini.rs +39 -1
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/openai.rs +102 -76
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/factory_bases.rs +99 -1
- cocoindex-0.2.18/src/ops/functions/detect_program_lang.rs +125 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/functions/mod.rs +1 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/functions/split_recursively.rs +326 -411
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/interface.rs +46 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/registration.rs +19 -4
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/registry.rs +22 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/shared/mod.rs +1 -0
- cocoindex-0.2.18/src/ops/shared/program_langs.rs +495 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/neo4j.rs +1 -2
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/postgres.rs +372 -58
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/py/convert.rs +5 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/setup/db_metadata.rs +1 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/setup/driver.rs +157 -35
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/setup/states.rs +101 -5
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/retryable.rs +36 -19
- cocoindex-0.2.16/docs/docs/ops/functions.md +0 -241
- cocoindex-0.2.16/docs/docs/ops/targets.md +0 -562
- cocoindex-0.2.16/python/cocoindex/tests/test_load_convert.py +0 -118
- cocoindex-0.2.16/src/base/json_schema.rs +0 -354
- cocoindex-0.2.16/src/execution/stats.rs +0 -173
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.cargo/config.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.env.lib_debug +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/ISSUE_TEMPLATE//360/237/220/233-bug-report.md" +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/ISSUE_TEMPLATE//360/237/222/241-feature-request.md" +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/SECURITY.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/scripts/update_version.sh +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/workflows/CI.yml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/workflows/_docs_release.yml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/workflows/docs_release.yml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/workflows/docs_test.yml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/workflows/format.yml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.github/workflows/release.yml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/CODE_OF_CONDUCT.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/CONTRIBUTING.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/LICENSE +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/README.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/about.hbs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/about.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/dev/neo4j.yaml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/dev/postgres.yaml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/README.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/about/community.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/ai/llm.mdx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/basics.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/data_example.svg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/core/flow_example.svg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/custom_ops/custom_functions.mdx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/custom_ops/custom_targets.mdx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/document_ai.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/image_search.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/manual_extraction.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/examples/multi_format_index.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/examples/index.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/getting_started/installation.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/getting_started/markdown_files.zip +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/getting_started/overview.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/query.mdx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/tutorials/live_updates.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/docs/tutorials/manage_flow_dynamically.mdx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/package.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/src/components/GitHubButton/index.tsx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/src/css/custom.css +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/src/theme/DocCard/index.tsx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/src/theme/DocCard/styles.module.css +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/src/theme/DocCardList/index.tsx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/src/theme/DocCardList/styles.module.css +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/src/theme/Root.js +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/.nojekyll +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/docusaurus.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/academic_papers_index/abstract_chunks.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/academic_papers_index/basic_info.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/academic_papers_index/chunk_embedding.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/academic_papers_index/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/academic_papers_index/first_page.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/academic_papers_index/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/academic_papers_index/metadata.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/codebase_index/chunk.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/codebase_index/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/codebase_index/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/custom_targets/convert.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/custom_targets/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/dedupe.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/export_document.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/export_relationship.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/extract_relationship.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/relationship.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/docs_to_knowledge_graph/summary.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/document_ai/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/document_ai/document_ai.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/document_ai/processor.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/image_search/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/image_search/embedding.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/image_search/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/image_search/multi_modal_architecture.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/image_search/result.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/manual_extraction/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/manual_extraction/extraction.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/manual_extraction/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/manual_extraction/summary.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/multi_format_index/colpali_architecture.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/multi_format_index/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/multi_format_index/embed.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/multi_format_index/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/multi_format_index/pages.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/patient_form_extraction/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/patient_form_extraction/extraction.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/patient_form_extraction/fields.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/patient_form_extraction/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/patient_form_extraction/tomarkdown.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/photo_search/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/photo_search/extraction.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/photo_search/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/collector.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/description.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/embed.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/lineage.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/price.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/postgres_source/source.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/dedupe.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/export_all.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/export_product.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/export_taxonomy.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/extract_product.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/extract_taxonomy.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/neo4j.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/parse_json.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/product_recommendation/taxonomy.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/simple_vector_index/chunk.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/simple_vector_index/cover.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/simple_vector_index/embed.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/examples/simple_vector_index/flow.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/favicon.ico +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/icon.svg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/img/incremental-etl.gif +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/static/robots.txt +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/tsconfig.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/docs/yarn.lock +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/amazon_s3_embedding/.env.example +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/amazon_s3_embedding/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/amazon_s3_embedding/README.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/amazon_s3_embedding/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/amazon_s3_embedding/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/azure_blob_embedding/.env.example +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/azure_blob_embedding/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/azure_blob_embedding/README.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/azure_blob_embedding/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/azure_blob_embedding/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/code_embedding/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/code_embedding/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/code_embedding/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/custom_output_files/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/custom_output_files/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/custom_output_files/data/bizarre_animals.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/custom_output_files/data/chunk_norris.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/custom_output_files/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/custom_output_files/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/docs_to_knowledge_graph/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/docs_to_knowledge_graph/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/docs_to_knowledge_graph/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/images/Carter_welcomes_Reagan.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/images/Solvay_conference_1927.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/images/Steve_Jobs_and_Bill_Gates_(522695099).jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/images/einplanck3.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/face_recognition/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/.dockerignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/compose.yaml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/files/1810.04805v2.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/fastapi_server_docker/requirements.txt +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/gdrive_text_embedding/.env.example +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/gdrive_text_embedding/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/gdrive_text_embedding/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/gdrive_text_embedding/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/README.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/colpali_main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/index.html +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/package-lock.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/package.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/src/App.jsx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/src/main.jsx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/src/style.css +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/frontend/vite.config.js +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/img/cat1.jpeg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/img/dog1.jpeg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/img/elephant1.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/img/giraffe.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/image_search/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/live_updates/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/live_updates/data/bizarre_animals.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/live_updates/data/chunk_norris.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/live_updates/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/live_updates/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/manuals/array.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/manuals/base64.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/manuals/copy.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/manuals/glob.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/manuals_llm_extraction/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/1706.03762v7.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/1810.04805v2.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/2502.06786v3.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/healthcare_industry_test_p101.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/healthcare_industry_test_p86.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/healthcare_industry_test_p9.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/restaurant_brands_international_2023.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/multi_format_indexing/source_files/sweetgreen_2023.jpg +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/.env.example +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/papers/1706.03762v7.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/papers/1810.04805v2.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/papers/2502.06786v3.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/papers/2502.20346v1.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/paper_metadata/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/.env.example +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/data/README.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_David_Artificial.docx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Emily_Artificial.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Joe_Artificial.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_From_Jane_Artificial.docx +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/patient_intake_extraction/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/pdf_embedding/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/pdf_embedding/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/pdf_embedding/pdf_files/1706.03762v7.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/pdf_embedding/pdf_files/1810.04805v2.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/pdf_embedding/pdf_files/rfc8259.pdf +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/pdf_embedding/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/postgres_source/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/postgres_source/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/postgres_source/prepare_source_data.sql +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/postgres_source/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/.env.example +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/img/cocoinsight.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/img/neo4j.png +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p1.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p2.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p3.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p4.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p5.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p6.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p7.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p8.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/products/p9.json +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/product_recommendation/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/Text_Embedding.ipynb +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/markdown_files/1706.03762v7.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/markdown_files/1810.04805v2.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/markdown_files/rfc8259.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_lancedb/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_lancedb/.gitignore +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_lancedb/README.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_lancedb/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_lancedb/markdown_files/rfc8259.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_lancedb/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_qdrant/.env +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_qdrant/main.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_qdrant/markdown_files/rfc8259.md +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/examples/text_embedding_qdrant/pyproject.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/__init__.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/functions.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/index.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/llm.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/py.typed +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/query_handler.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/runtime.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/setting.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/setup.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/subprocess_exec.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/targets/__init__.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/targets/lancedb.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/tests/__init__.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/tests/test_optional_database.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/tests/test_transform_flow.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/tests/test_typing.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/tests/test_validation.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/user_app_loader.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/utils.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/python/cocoindex/validation.py +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/ruff.toml +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/base/duration.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/base/field_attrs.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/base/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/base/value.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/builder/analyzed_flow.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/builder/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/db_tracking.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/dumper.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/indexing_status.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/memoization.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/execution/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/lib.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/lib_context.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/anthropic.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/litellm.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/ollama.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/openrouter.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/vllm.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/llm/voyage.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/functions/embed_text.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/functions/extract_by_llm.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/functions/parse_json.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/functions/split_by_separators.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/functions/test_utils.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/py_factory.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sdk.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/shared/postgres.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/shared/split.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/amazon_s3.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/azure_blob.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/google_drive.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/local_file.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/postgres.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/shared/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/sources/shared/pattern_matcher.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/kuzu.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/qdrant.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/shared/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/shared/property_graph.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/ops/targets/shared/table_columns.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/prelude.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/py/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/server.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/service/error.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/service/flows.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/service/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/service/query_handler.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/settings.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/setup/auth_registry.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/setup/components.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/setup/flow_features.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/setup/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/concur_control.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/db.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/deser.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/fingerprint.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/immutable.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/mod.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/str_sanitize.rs +0 -0
- {cocoindex-0.2.16 → cocoindex-0.2.18}/src/utils/yaml_ser.rs +0 -0
@@ -35,6 +35,9 @@ jobs:
|
|
35
35
|
uses: Swatinem/rust-cache@v2
|
36
36
|
with:
|
37
37
|
key: rust-${{ matrix.platform.runner }}-${{ matrix.python-version }}
|
38
|
+
- name: Rust tests (no default features)
|
39
|
+
run: cargo test --no-default-features --verbose
|
40
|
+
|
38
41
|
- name: Rust tests
|
39
42
|
run: cargo test --verbose
|
40
43
|
|
@@ -81,4 +84,4 @@ jobs:
|
|
81
84
|
if [ $status -ne 0 ]; then
|
82
85
|
echo "::error::Third-party notices validation failed. Please update /about.toml and rerun."
|
83
86
|
exit $status
|
84
|
-
fi
|
87
|
+
fi
|
@@ -33,6 +33,13 @@ repos:
|
|
33
33
|
files: ^(python/|src/|Cargo\.toml|pyproject\.toml)
|
34
34
|
pass_filenames: false
|
35
35
|
|
36
|
+
- id: generate-cli-docs
|
37
|
+
name: generate CLI documentation
|
38
|
+
entry: python dev/generate_cli_docs.py
|
39
|
+
language: system
|
40
|
+
files: ^(python/cocoindex/cli\.py|dev/generate_cli_docs\.py)$
|
41
|
+
pass_filenames: false
|
42
|
+
|
36
43
|
- id: cargo-fmt
|
37
44
|
name: cargo fmt
|
38
45
|
entry: cargo fmt
|
@@ -1283,7 +1283,7 @@ dependencies = [
|
|
1283
1283
|
|
1284
1284
|
[[package]]
|
1285
1285
|
name = "cocoindex"
|
1286
|
-
version = "0.2.
|
1286
|
+
version = "0.2.18"
|
1287
1287
|
dependencies = [
|
1288
1288
|
"anyhow",
|
1289
1289
|
"async-openai",
|
@@ -1306,9 +1306,11 @@ dependencies = [
|
|
1306
1306
|
"const_format",
|
1307
1307
|
"derivative",
|
1308
1308
|
"env_logger",
|
1309
|
+
"expect-test",
|
1309
1310
|
"futures",
|
1310
1311
|
"globset",
|
1311
1312
|
"google-cloud-aiplatform-v1",
|
1313
|
+
"google-cloud-gax",
|
1312
1314
|
"google-drive3",
|
1313
1315
|
"hex",
|
1314
1316
|
"http-body-util",
|
@@ -1718,12 +1720,12 @@ dependencies = [
|
|
1718
1720
|
|
1719
1721
|
[[package]]
|
1720
1722
|
name = "deranged"
|
1721
|
-
version = "0.4
|
1723
|
+
version = "0.5.4"
|
1722
1724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1723
|
-
checksum = "
|
1725
|
+
checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071"
|
1724
1726
|
dependencies = [
|
1725
1727
|
"powerfmt",
|
1726
|
-
"
|
1728
|
+
"serde_core",
|
1727
1729
|
]
|
1728
1730
|
|
1729
1731
|
[[package]]
|
@@ -1791,6 +1793,12 @@ dependencies = [
|
|
1791
1793
|
"syn 2.0.105",
|
1792
1794
|
]
|
1793
1795
|
|
1796
|
+
[[package]]
|
1797
|
+
name = "dissimilar"
|
1798
|
+
version = "1.0.10"
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1800
|
+
checksum = "8975ffdaa0ef3661bfe02dbdcc06c9f829dfafe6a3c474de366a8d5e44276921"
|
1801
|
+
|
1794
1802
|
[[package]]
|
1795
1803
|
name = "dlv-list"
|
1796
1804
|
version = "0.5.2"
|
@@ -1966,6 +1974,16 @@ dependencies = [
|
|
1966
1974
|
"pin-project-lite",
|
1967
1975
|
]
|
1968
1976
|
|
1977
|
+
[[package]]
|
1978
|
+
name = "expect-test"
|
1979
|
+
version = "1.5.1"
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1981
|
+
checksum = "63af43ff4431e848fb47472a920f14fa71c24de13255a5692e93d4e90302acb0"
|
1982
|
+
dependencies = [
|
1983
|
+
"dissimilar",
|
1984
|
+
"once_cell",
|
1985
|
+
]
|
1986
|
+
|
1969
1987
|
[[package]]
|
1970
1988
|
name = "fastrand"
|
1971
1989
|
version = "1.9.0"
|
@@ -2271,9 +2289,9 @@ dependencies = [
|
|
2271
2289
|
|
2272
2290
|
[[package]]
|
2273
2291
|
name = "google-cloud-aiplatform-v1"
|
2274
|
-
version = "0.4.
|
2292
|
+
version = "0.4.5"
|
2275
2293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2276
|
-
checksum = "
|
2294
|
+
checksum = "5107fa98584038337478df0e92b04ea391095097d572e5e16b211ce016e3a719"
|
2277
2295
|
dependencies = [
|
2278
2296
|
"async-trait",
|
2279
2297
|
"bytes",
|
@@ -2297,9 +2315,9 @@ dependencies = [
|
|
2297
2315
|
|
2298
2316
|
[[package]]
|
2299
2317
|
name = "google-cloud-api"
|
2300
|
-
version = "0.4.
|
2318
|
+
version = "0.4.5"
|
2301
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2302
|
-
checksum = "
|
2320
|
+
checksum = "65af2a7c8a7918c2fad32d15317f18a5097b8280ac8ee91471b91ede42066ee8"
|
2303
2321
|
dependencies = [
|
2304
2322
|
"bytes",
|
2305
2323
|
"google-cloud-wkt",
|
@@ -2310,9 +2328,9 @@ dependencies = [
|
|
2310
2328
|
|
2311
2329
|
[[package]]
|
2312
2330
|
name = "google-cloud-auth"
|
2313
|
-
version = "0.22.
|
2331
|
+
version = "0.22.4"
|
2314
2332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2315
|
-
checksum = "
|
2333
|
+
checksum = "7314c5dcd0feb905728aa809f46d10a58587be2bdd90f3003e09bcef05e919dc"
|
2316
2334
|
dependencies = [
|
2317
2335
|
"async-trait",
|
2318
2336
|
"base64 0.22.1",
|
@@ -2332,9 +2350,9 @@ dependencies = [
|
|
2332
2350
|
|
2333
2351
|
[[package]]
|
2334
2352
|
name = "google-cloud-gax"
|
2335
|
-
version = "0.
|
2353
|
+
version = "0.24.0"
|
2336
2354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2337
|
-
checksum = "
|
2355
|
+
checksum = "58148fad34ed71d986c8e3244c1575793445d211bee643740066e3a2388f4319"
|
2338
2356
|
dependencies = [
|
2339
2357
|
"base64 0.22.1",
|
2340
2358
|
"bytes",
|
@@ -2352,9 +2370,9 @@ dependencies = [
|
|
2352
2370
|
|
2353
2371
|
[[package]]
|
2354
2372
|
name = "google-cloud-gax-internal"
|
2355
|
-
version = "0.5.
|
2373
|
+
version = "0.5.1"
|
2356
2374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2357
|
-
checksum = "
|
2375
|
+
checksum = "fd98433cb4b63ad67dc3dabf605b8d81b60532ab4a0f11454e5e50c4b7de28b6"
|
2358
2376
|
dependencies = [
|
2359
2377
|
"bytes",
|
2360
2378
|
"google-cloud-auth",
|
@@ -2373,9 +2391,9 @@ dependencies = [
|
|
2373
2391
|
|
2374
2392
|
[[package]]
|
2375
2393
|
name = "google-cloud-iam-v1"
|
2376
|
-
version = "0.4.
|
2394
|
+
version = "0.4.5"
|
2377
2395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2378
|
-
checksum = "
|
2396
|
+
checksum = "fd3e85f307194a75c71e0334b904249ca723ee84ec6fe2adfb5c4f70becef5a2"
|
2379
2397
|
dependencies = [
|
2380
2398
|
"async-trait",
|
2381
2399
|
"bytes",
|
@@ -2393,9 +2411,9 @@ dependencies = [
|
|
2393
2411
|
|
2394
2412
|
[[package]]
|
2395
2413
|
name = "google-cloud-location"
|
2396
|
-
version = "0.4.
|
2414
|
+
version = "0.4.5"
|
2397
2415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2398
|
-
checksum = "
|
2416
|
+
checksum = "d5cd87c00a682e0240814960e3e1997f1ca169fc0287c29c809ab005eab28d63"
|
2399
2417
|
dependencies = [
|
2400
2418
|
"async-trait",
|
2401
2419
|
"bytes",
|
@@ -2412,9 +2430,9 @@ dependencies = [
|
|
2412
2430
|
|
2413
2431
|
[[package]]
|
2414
2432
|
name = "google-cloud-longrunning"
|
2415
|
-
version = "0.25.
|
2433
|
+
version = "0.25.5"
|
2416
2434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417
|
-
checksum = "
|
2435
|
+
checksum = "950cd494f916958b45e8c86b7778c89fcbdcda51c9ca3f93a0805ffccd2cfbaa"
|
2418
2436
|
dependencies = [
|
2419
2437
|
"async-trait",
|
2420
2438
|
"bytes",
|
@@ -2432,9 +2450,9 @@ dependencies = [
|
|
2432
2450
|
|
2433
2451
|
[[package]]
|
2434
2452
|
name = "google-cloud-lro"
|
2435
|
-
version = "0.3.
|
2453
|
+
version = "0.3.5"
|
2436
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2437
|
-
checksum = "
|
2455
|
+
checksum = "9433e5b1307fe9c8ae5c096da1e9ffc06725ced30f473fac8468ded9af2a0db3"
|
2438
2456
|
dependencies = [
|
2439
2457
|
"google-cloud-gax",
|
2440
2458
|
"google-cloud-longrunning",
|
@@ -2446,9 +2464,9 @@ dependencies = [
|
|
2446
2464
|
|
2447
2465
|
[[package]]
|
2448
2466
|
name = "google-cloud-rpc"
|
2449
|
-
version = "0.4.
|
2467
|
+
version = "0.4.5"
|
2450
2468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2451
|
-
checksum = "
|
2469
|
+
checksum = "94b443385571575a4552687a9072c4c8b7778e3f3c03fe95f3caf8df1a5e4ef2"
|
2452
2470
|
dependencies = [
|
2453
2471
|
"bytes",
|
2454
2472
|
"google-cloud-wkt",
|
@@ -2459,9 +2477,9 @@ dependencies = [
|
|
2459
2477
|
|
2460
2478
|
[[package]]
|
2461
2479
|
name = "google-cloud-type"
|
2462
|
-
version = "0.4.
|
2480
|
+
version = "0.4.5"
|
2463
2481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2464
|
-
checksum = "
|
2482
|
+
checksum = "bc36106fb51a6e8daff1007cd888ef6530e00860f4dcc1bcafac429a8f9af24e"
|
2465
2483
|
dependencies = [
|
2466
2484
|
"bytes",
|
2467
2485
|
"google-cloud-wkt",
|
@@ -2555,6 +2573,16 @@ dependencies = [
|
|
2555
2573
|
"tracing",
|
2556
2574
|
]
|
2557
2575
|
|
2576
|
+
[[package]]
|
2577
|
+
name = "half"
|
2578
|
+
version = "2.6.0"
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2580
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
2581
|
+
dependencies = [
|
2582
|
+
"cfg-if",
|
2583
|
+
"crunchy",
|
2584
|
+
]
|
2585
|
+
|
2558
2586
|
[[package]]
|
2559
2587
|
name = "hashbrown"
|
2560
2588
|
version = "0.12.3"
|
@@ -3703,6 +3731,7 @@ version = "0.4.1"
|
|
3703
3731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3704
3732
|
checksum = "fc58e2d255979a31caa7cabfa7aac654af0354220719ab7a68520ae7a91e8c0b"
|
3705
3733
|
dependencies = [
|
3734
|
+
"half",
|
3706
3735
|
"sqlx",
|
3707
3736
|
]
|
3708
3737
|
|
@@ -4789,10 +4818,11 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
4789
4818
|
|
4790
4819
|
[[package]]
|
4791
4820
|
name = "serde"
|
4792
|
-
version = "1.0.
|
4821
|
+
version = "1.0.228"
|
4793
4822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4794
|
-
checksum = "
|
4823
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
4795
4824
|
dependencies = [
|
4825
|
+
"serde_core",
|
4796
4826
|
"serde_derive",
|
4797
4827
|
]
|
4798
4828
|
|
@@ -4807,11 +4837,20 @@ dependencies = [
|
|
4807
4837
|
"typeid",
|
4808
4838
|
]
|
4809
4839
|
|
4840
|
+
[[package]]
|
4841
|
+
name = "serde_core"
|
4842
|
+
version = "1.0.228"
|
4843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4844
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
4845
|
+
dependencies = [
|
4846
|
+
"serde_derive",
|
4847
|
+
]
|
4848
|
+
|
4810
4849
|
[[package]]
|
4811
4850
|
name = "serde_derive"
|
4812
|
-
version = "1.0.
|
4851
|
+
version = "1.0.228"
|
4813
4852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4814
|
-
checksum = "
|
4853
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
4815
4854
|
dependencies = [
|
4816
4855
|
"proc-macro2",
|
4817
4856
|
"quote",
|
@@ -5379,9 +5418,9 @@ dependencies = [
|
|
5379
5418
|
|
5380
5419
|
[[package]]
|
5381
5420
|
name = "time"
|
5382
|
-
version = "0.3.
|
5421
|
+
version = "0.3.44"
|
5383
5422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5384
|
-
checksum = "
|
5423
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
5385
5424
|
dependencies = [
|
5386
5425
|
"deranged",
|
5387
5426
|
"itoa",
|
@@ -5397,15 +5436,15 @@ dependencies = [
|
|
5397
5436
|
|
5398
5437
|
[[package]]
|
5399
5438
|
name = "time-core"
|
5400
|
-
version = "0.1.
|
5439
|
+
version = "0.1.6"
|
5401
5440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5402
|
-
checksum = "
|
5441
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
5403
5442
|
|
5404
5443
|
[[package]]
|
5405
5444
|
name = "time-macros"
|
5406
|
-
version = "0.2.
|
5445
|
+
version = "0.2.24"
|
5407
5446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5408
|
-
checksum = "
|
5447
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
5409
5448
|
dependencies = [
|
5410
5449
|
"num-conv",
|
5411
5450
|
"time-core",
|
@@ -5817,9 +5856,9 @@ checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8"
|
|
5817
5856
|
|
5818
5857
|
[[package]]
|
5819
5858
|
name = "tree-sitter-md"
|
5820
|
-
version = "0.
|
5859
|
+
version = "0.5.1"
|
5821
5860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
5822
|
-
checksum = "
|
5861
|
+
checksum = "2b55ea8733e098490746a07d6f629d1f7820e8953a4aab1341ae39123bcdf93d"
|
5823
5862
|
dependencies = [
|
5824
5863
|
"cc",
|
5825
5864
|
"tree-sitter-language",
|
@@ -2,7 +2,7 @@
|
|
2
2
|
name = "cocoindex"
|
3
3
|
# Version used for local development is always higher than others to take precedence.
|
4
4
|
# Will be overridden for specific release versions.
|
5
|
-
version = "0.2.
|
5
|
+
version = "0.2.18"
|
6
6
|
edition = "2024"
|
7
7
|
rust-version = "1.89"
|
8
8
|
license = "Apache-2.0"
|
@@ -16,6 +16,10 @@ lto = true
|
|
16
16
|
name = "cocoindex_engine"
|
17
17
|
crate-type = ["cdylib"]
|
18
18
|
|
19
|
+
[features]
|
20
|
+
default = ["legacy-states-v0"]
|
21
|
+
legacy-states-v0 = []
|
22
|
+
|
19
23
|
[dependencies]
|
20
24
|
pyo3 = { version = "0.25.1", features = [
|
21
25
|
"abi3-py311",
|
@@ -58,7 +62,7 @@ tower = "0.5.2"
|
|
58
62
|
tower-http = { version = "0.6.6", features = ["cors", "trace"] }
|
59
63
|
indexmap = { version = "2.10.0", features = ["serde"] }
|
60
64
|
blake2 = "0.10.6"
|
61
|
-
pgvector = { version = "0.4.1", features = ["sqlx"] }
|
65
|
+
pgvector = { version = "0.4.1", features = ["sqlx", "halfvec"] }
|
62
66
|
phf = { version = "0.12.1", features = ["macros"] }
|
63
67
|
indenter = "0.3.4"
|
64
68
|
itertools = "0.14.0"
|
@@ -87,7 +91,7 @@ tree-sitter-javascript = "0.23.1"
|
|
87
91
|
tree-sitter-json = "0.24.8"
|
88
92
|
# The other more popular crate tree-sitter-kotlin requires tree-sitter < 0.23 for now
|
89
93
|
tree-sitter-kotlin-ng = "1.1.0"
|
90
|
-
tree-sitter-md = "0.
|
94
|
+
tree-sitter-md = "0.5.1"
|
91
95
|
tree-sitter-pascal = "0.10.0"
|
92
96
|
tree-sitter-php = "0.23.11"
|
93
97
|
tree-sitter-python = "0.23.6"
|
@@ -130,9 +134,10 @@ time = { version = "0.3", features = ["macros", "serde"] }
|
|
130
134
|
numpy = "0.25.0"
|
131
135
|
infer = "0.19.0"
|
132
136
|
serde_with = { version = "3.14.0", features = ["base64"] }
|
133
|
-
google-cloud-aiplatform-v1 = { version = "0.4.
|
137
|
+
google-cloud-aiplatform-v1 = { version = "0.4.5", default-features = false, features = [
|
134
138
|
"prediction-service",
|
135
139
|
] }
|
140
|
+
google-cloud-gax = "0.24.0"
|
136
141
|
|
137
142
|
azure_identity = { version = "0.21.0", default-features = false, features = [
|
138
143
|
"enable_reqwest_rustls",
|
@@ -147,3 +152,4 @@ azure_storage_blobs = { version = "0.21.0", default-features = false, features =
|
|
147
152
|
"hmac_rust",
|
148
153
|
] }
|
149
154
|
serde_path_to_error = "0.1.17"
|
155
|
+
expect-test = "1.5.0"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cocoindex
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.18
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
5
5
|
Classifier: License :: OSI Approved :: Apache Software License
|
6
6
|
Classifier: Operating System :: OS Independent
|
@@ -31,13 +31,16 @@ Requires-Dist: pre-commit ; extra == 'dev'
|
|
31
31
|
Requires-Dist: sentence-transformers>=3.3.1 ; extra == 'embeddings'
|
32
32
|
Requires-Dist: colpali-engine ; extra == 'colpali'
|
33
33
|
Requires-Dist: lancedb>=0.25.0 ; extra == 'lancedb'
|
34
|
+
Requires-Dist: pydantic>=2.11.9 ; extra == 'pydantic'
|
34
35
|
Requires-Dist: sentence-transformers>=3.3.1 ; extra == 'all'
|
35
36
|
Requires-Dist: colpali-engine ; extra == 'all'
|
36
37
|
Requires-Dist: lancedb>=0.25.0 ; extra == 'all'
|
38
|
+
Requires-Dist: pydantic>=2.11.9 ; extra == 'all'
|
37
39
|
Provides-Extra: dev
|
38
40
|
Provides-Extra: embeddings
|
39
41
|
Provides-Extra: colpali
|
40
42
|
Provides-Extra: lancedb
|
43
|
+
Provides-Extra: pydantic
|
41
44
|
Provides-Extra: all
|
42
45
|
License-File: THIRD_PARTY_NOTICES.html
|
43
46
|
Summary: With CocoIndex, users declare the transformation, CocoIndex creates & maintains an index, and keeps the derived index up to date based on source update, with minimal computation and changes.
|
@@ -44,8 +44,8 @@
|
|
44
44
|
|
45
45
|
<h2>Overview of licenses:</h2>
|
46
46
|
<ul class="licenses-overview">
|
47
|
-
<li><a href="#Apache-2.0">Apache License 2.0</a> (
|
48
|
-
<li><a href="#MIT">MIT License</a> (
|
47
|
+
<li><a href="#Apache-2.0">Apache License 2.0</a> (416)</li>
|
48
|
+
<li><a href="#MIT">MIT License</a> (126)</li>
|
49
49
|
<li><a href="#Unicode-3.0">Unicode License v3</a> (19)</li>
|
50
50
|
<li><a href="#ISC">ISC License</a> (8)</li>
|
51
51
|
<li><a href="#BSD-3-Clause">BSD 3-Clause "New" or "Revised" License</a> (6)</li>
|
@@ -691,7 +691,7 @@
|
|
691
691
|
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
692
692
|
<h4>Used by:</h4>
|
693
693
|
<ul class="license-used-by">
|
694
|
-
<li><a href=" https://github.com/jhpratt/deranged ">deranged 0.4
|
694
|
+
<li><a href=" https://github.com/jhpratt/deranged ">deranged 0.5.4</a></li>
|
695
695
|
</ul>
|
696
696
|
<pre class="license-text">
|
697
697
|
Apache License
|
@@ -2428,7 +2428,7 @@ Software.
|
|
2428
2428
|
<h3 id="Apache-2.0">Apache License 2.0</h3>
|
2429
2429
|
<h4>Used by:</h4>
|
2430
2430
|
<ul class="license-used-by">
|
2431
|
-
<li><a href=" https://crates.io/crates/cocoindex ">cocoindex 0.2.
|
2431
|
+
<li><a href=" https://crates.io/crates/cocoindex ">cocoindex 0.2.18</a></li>
|
2432
2432
|
<li><a href=" https://github.com/awesomized/crc-fast-rust ">crc-fast 1.3.0</a></li>
|
2433
2433
|
<li><a href=" https://github.com/qdrant/rust-client ">qdrant-client 1.15.0</a></li>
|
2434
2434
|
</ul>
|
@@ -6891,6 +6891,7 @@ limitations under the License.
|
|
6891
6891
|
<li><a href=" https://github.com/smol-rs/event-listener-strategy ">event-listener-strategy 0.5.4</a></li>
|
6892
6892
|
<li><a href=" https://github.com/smol-rs/event-listener ">event-listener 2.5.3</a></li>
|
6893
6893
|
<li><a href=" https://github.com/smol-rs/event-listener ">event-listener 5.4.1</a></li>
|
6894
|
+
<li><a href=" https://github.com/rust-analyzer/expect-test ">expect-test 1.5.1</a></li>
|
6894
6895
|
<li><a href=" https://github.com/smol-rs/fastrand ">fastrand 1.9.0</a></li>
|
6895
6896
|
<li><a href=" https://github.com/smol-rs/fastrand ">fastrand 2.3.0</a></li>
|
6896
6897
|
<li><a href=" https://github.com/rust-lang/flate2-rs ">flate2 1.1.2</a></li>
|
@@ -9540,23 +9541,25 @@ limitations under the License.
|
|
9540
9541
|
<li><a href=" https://github.com/elastio/bon ">bon-macros 3.7.0</a></li>
|
9541
9542
|
<li><a href=" https://github.com/elastio/bon ">bon 3.7.0</a></li>
|
9542
9543
|
<li><a href=" https://github.com/kobzol/rust-delegate ">delegate 0.10.0</a></li>
|
9544
|
+
<li><a href=" https://github.com/dtolnay/dissimilar ">dissimilar 1.0.10</a></li>
|
9543
9545
|
<li><a href=" https://gitlab.com/kornelski/dunce ">dunce 1.0.5</a></li>
|
9544
9546
|
<li><a href=" https://github.com/dtolnay/dyn-clone ">dyn-clone 1.0.20</a></li>
|
9545
9547
|
<li><a href=" https://github.com/dtolnay/erased-serde ">erased-serde 0.4.6</a></li>
|
9546
9548
|
<li><a href=" https://github.com/lunacookies/etcetera ">etcetera 0.8.0</a></li>
|
9547
9549
|
<li><a href=" https://github.com/jpopesculian/eventsource-stream ">eventsource-stream 0.2.3</a></li>
|
9548
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-aiplatform-v1 0.4.
|
9549
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-api 0.4.
|
9550
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-auth 0.22.
|
9551
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-gax-internal 0.5.
|
9552
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-gax 0.
|
9553
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-iam-v1 0.4.
|
9554
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-location 0.4.
|
9555
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-longrunning 0.25.
|
9556
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-lro 0.3.
|
9557
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-rpc 0.4.
|
9558
|
-
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-type 0.4.
|
9550
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-aiplatform-v1 0.4.5</a></li>
|
9551
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-api 0.4.5</a></li>
|
9552
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-auth 0.22.4</a></li>
|
9553
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-gax-internal 0.5.1</a></li>
|
9554
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-gax 0.24.0</a></li>
|
9555
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-iam-v1 0.4.5</a></li>
|
9556
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-location 0.4.5</a></li>
|
9557
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-longrunning 0.25.5</a></li>
|
9558
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-lro 0.3.5</a></li>
|
9559
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-rpc 0.4.5</a></li>
|
9560
|
+
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-type 0.4.5</a></li>
|
9559
9561
|
<li><a href=" https://github.com/googleapis/google-cloud-rust/tree/main ">google-cloud-wkt 0.5.4</a></li>
|
9562
|
+
<li><a href=" https://github.com/VoidStarKat/half-rs ">half 2.6.0</a></li>
|
9560
9563
|
<li><a href=" https://github.com/TedDriggs/ident_case ">ident_case 1.0.1</a></li>
|
9561
9564
|
<li><a href=" https://github.com/yaahc/indenter ">indenter 0.3.4</a></li>
|
9562
9565
|
<li><a href=" https://github.com/dtolnay/indoc ">indoc 2.0.6</a></li>
|
@@ -9587,8 +9590,9 @@ limitations under the License.
|
|
9587
9590
|
<li><a href=" https://github.com/dtolnay/ryu ">ryu 1.0.20</a></li>
|
9588
9591
|
<li><a href=" https://github.com/dtolnay/semver ">semver 1.0.26</a></li>
|
9589
9592
|
<li><a href=" https://github.com/dtolnay/serde-untagged ">serde-untagged 0.1.8</a></li>
|
9590
|
-
<li><a href=" https://github.com/serde-rs/serde ">serde 1.0.
|
9591
|
-
<li><a href=" https://github.com/serde-rs/serde ">
|
9593
|
+
<li><a href=" https://github.com/serde-rs/serde ">serde 1.0.228</a></li>
|
9594
|
+
<li><a href=" https://github.com/serde-rs/serde ">serde_core 1.0.228</a></li>
|
9595
|
+
<li><a href=" https://github.com/serde-rs/serde ">serde_derive 1.0.228</a></li>
|
9592
9596
|
<li><a href=" https://github.com/serde-rs/serde ">serde_derive_internals 0.29.1</a></li>
|
9593
9597
|
<li><a href=" https://github.com/serde-rs/json ">serde_json 1.0.142</a></li>
|
9594
9598
|
<li><a href=" https://github.com/dtolnay/path-to-error ">serde_path_to_error 0.1.17</a></li>
|
@@ -9602,9 +9606,9 @@ limitations under the License.
|
|
9602
9606
|
<li><a href=" https://github.com/dtolnay/thiserror ">thiserror-impl 2.0.14</a></li>
|
9603
9607
|
<li><a href=" https://github.com/dtolnay/thiserror ">thiserror 1.0.69</a></li>
|
9604
9608
|
<li><a href=" https://github.com/dtolnay/thiserror ">thiserror 2.0.14</a></li>
|
9605
|
-
<li><a href=" https://github.com/time-rs/time ">time-core 0.1.
|
9606
|
-
<li><a href=" https://github.com/time-rs/time ">time-macros 0.2.
|
9607
|
-
<li><a href=" https://github.com/time-rs/time ">time 0.3.
|
9609
|
+
<li><a href=" https://github.com/time-rs/time ">time-core 0.1.6</a></li>
|
9610
|
+
<li><a href=" https://github.com/time-rs/time ">time-macros 0.2.24</a></li>
|
9611
|
+
<li><a href=" https://github.com/time-rs/time ">time 0.3.44</a></li>
|
9608
9612
|
<li><a href=" https://github.com/dtolnay/typeid ">typeid 1.0.3</a></li>
|
9609
9613
|
<li><a href=" https://github.com/dtolnay/unicode-ident ">unicode-ident 1.0.18</a></li>
|
9610
9614
|
<li><a href=" https://github.com/dtolnay/indoc ">unindent 0.2.4</a></li>
|
@@ -11928,7 +11932,7 @@ SOFTWARE.
|
|
11928
11932
|
<li><a href=" https://github.com/tree-sitter/tree-sitter-json ">tree-sitter-json 0.24.8</a></li>
|
11929
11933
|
<li><a href=" https://github.com/tree-sitter-grammars/tree-sitter-kotlin ">tree-sitter-kotlin-ng 1.1.0</a></li>
|
11930
11934
|
<li><a href=" https://github.com/tree-sitter/tree-sitter ">tree-sitter-language 0.1.5</a></li>
|
11931
|
-
<li><a href=" https://github.com/tree-sitter-grammars/tree-sitter-markdown ">tree-sitter-md 0.
|
11935
|
+
<li><a href=" https://github.com/tree-sitter-grammars/tree-sitter-markdown ">tree-sitter-md 0.5.1</a></li>
|
11932
11936
|
<li><a href=" https://github.com/Isopod/tree-sitter-pascal ">tree-sitter-pascal 0.10.0</a></li>
|
11933
11937
|
<li><a href=" https://github.com/tree-sitter/tree-sitter-php ">tree-sitter-php 0.23.11</a></li>
|
11934
11938
|
<li><a href=" https://github.com/tree-sitter/tree-sitter-python ">tree-sitter-python 0.23.6</a></li>
|
@@ -12171,6 +12175,35 @@ furnished to do so, subject to the following conditions:
|
|
12171
12175
|
The above copyright notice and this permission notice shall be included in all
|
12172
12176
|
copies or substantial portions of the Software.
|
12173
12177
|
|
12178
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
12179
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
12180
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
12181
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
12182
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
12183
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
12184
|
+
SOFTWARE.
|
12185
|
+
</pre>
|
12186
|
+
</li>
|
12187
|
+
<li class="license">
|
12188
|
+
<h3 id="MIT">MIT License</h3>
|
12189
|
+
<h4>Used by:</h4>
|
12190
|
+
<ul class="license-used-by">
|
12191
|
+
<li><a href=" https://github.com/eira-fransham/crunchy ">crunchy 0.2.4</a></li>
|
12192
|
+
</ul>
|
12193
|
+
<pre class="license-text">The MIT License (MIT)
|
12194
|
+
|
12195
|
+
Copyright 2017-2023 Eira Fransham.
|
12196
|
+
|
12197
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
12198
|
+
of this software and associated documentation files (the "Software"), to deal
|
12199
|
+
in the Software without restriction, including without limitation the rights
|
12200
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
12201
|
+
copies of the Software, and to permit persons to whom the Software is
|
12202
|
+
furnished to do so, subject to the following conditions:
|
12203
|
+
|
12204
|
+
The above copyright notice and this permission notice shall be included in all
|
12205
|
+
copies or substantial portions of the Software.
|
12206
|
+
|
12174
12207
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
12175
12208
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
12176
12209
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Development Scripts
|
2
|
+
|
3
|
+
This directory contains development and maintenance scripts for the CocoIndex project.
|
4
|
+
|
5
|
+
## Scripts
|
6
|
+
|
7
|
+
### `generate_cli_docs.py`
|
8
|
+
|
9
|
+
Automatically generates CLI documentation from the CocoIndex Click commands.
|
10
|
+
|
11
|
+
**Usage:**
|
12
|
+
|
13
|
+
```bash
|
14
|
+
python dev/generate_cli_docs.py
|
15
|
+
```
|
16
|
+
|
17
|
+
**What it does:**
|
18
|
+
|
19
|
+
- Extracts help messages from all Click commands in `python/cocoindex/cli.py`
|
20
|
+
- Generates comprehensive Markdown documentation with properly formatted tables
|
21
|
+
- Saves the output to `docs/docs/core/cli-commands.md` for direct import into CLI documentation
|
22
|
+
- Only updates the file if content has changed (avoids unnecessary git diffs)
|
23
|
+
- Automatically escapes HTML-like tags to prevent MDX parsing issues
|
24
|
+
- Wraps URLs with placeholders in code blocks for proper rendering
|
25
|
+
|
26
|
+
**Integration:**
|
27
|
+
|
28
|
+
- Runs automatically as a pre-commit hook when `python/cocoindex/cli.py` is modified
|
29
|
+
- The generated documentation is directly imported into `docs/docs/core/cli.mdx` via MDX import
|
30
|
+
- Provides seamless single-page CLI documentation experience without separate reference pages
|
31
|
+
|
32
|
+
**Dependencies:**
|
33
|
+
|
34
|
+
- `md-click` package for extracting Click help information
|
35
|
+
- `cocoindex` package must be importable (the CLI module)
|
36
|
+
|
37
|
+
This ensures that CLI documentation is always kept in sync with the actual command-line interface.
|