cocoindex 0.1.65__tar.gz → 0.1.67__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.
Files changed (275) hide show
  1. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/workflows/_test.yml +1 -1
  2. {cocoindex-0.1.65 → cocoindex-0.1.67}/.gitignore +1 -0
  3. {cocoindex-0.1.65 → cocoindex-0.1.67}/.pre-commit-config.yaml +1 -1
  4. {cocoindex-0.1.65 → cocoindex-0.1.67}/Cargo.lock +717 -13
  5. {cocoindex-0.1.65 → cocoindex-0.1.67}/Cargo.toml +18 -1
  6. {cocoindex-0.1.65 → cocoindex-0.1.67}/PKG-INFO +44 -18
  7. {cocoindex-0.1.65 → cocoindex-0.1.67}/README.md +41 -17
  8. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/ai/llm.mdx +68 -2
  9. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/data_types.mdx +14 -7
  10. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/ops/sources.md +66 -0
  11. cocoindex-0.1.67/examples/azure_blob_embedding/.env.example +7 -0
  12. cocoindex-0.1.67/examples/azure_blob_embedding/README.md +65 -0
  13. cocoindex-0.1.67/examples/azure_blob_embedding/main.py +125 -0
  14. cocoindex-0.1.67/examples/azure_blob_embedding/pyproject.toml +9 -0
  15. cocoindex-0.1.67/examples/gdrive_text_embedding/.gitignore +1 -0
  16. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/main.py +1 -2
  17. {cocoindex-0.1.65 → cocoindex-0.1.67}/pyproject.toml +1 -0
  18. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/__init__.py +1 -0
  19. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/convert.py +47 -1
  20. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/functions.py +8 -13
  21. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/llm.py +12 -0
  22. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/sources.py +15 -0
  23. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/tests/test_convert.py +112 -0
  24. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/tests/test_typing.py +4 -1
  25. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/typing.py +13 -4
  26. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/base/duration.rs +7 -14
  27. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/base/schema.rs +8 -7
  28. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/base/spec.rs +10 -10
  29. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/base/value.rs +9 -11
  30. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/builder/analyzer.rs +5 -4
  31. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/builder/exec_ctx.rs +1 -1
  32. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/builder/flow_builder.rs +9 -8
  33. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/db_tracking.rs +2 -0
  34. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/db_tracking_setup.rs +1 -1
  35. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/dumper.rs +1 -1
  36. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/evaluator.rs +17 -6
  37. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/indexing_status.rs +3 -4
  38. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/live_updater.rs +2 -8
  39. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/row_indexer.rs +8 -5
  40. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/source_indexer.rs +2 -2
  41. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/stats.rs +2 -2
  42. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/lib_context.rs +8 -3
  43. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/anthropic.rs +0 -1
  44. cocoindex-0.1.67/src/llm/gemini.rs +370 -0
  45. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/mod.rs +24 -3
  46. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/ollama.rs +2 -2
  47. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/openai.rs +1 -1
  48. cocoindex-0.1.67/src/llm/vertex_ai.rs +1 -0
  49. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/factory_bases.rs +4 -4
  50. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/functions/embed_text.rs +10 -4
  51. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/functions/extract_by_llm.rs +8 -3
  52. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/functions/parse_json.rs +3 -3
  53. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/functions/split_recursively.rs +12 -13
  54. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/interface.rs +2 -2
  55. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/py_factory.rs +7 -7
  56. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/registration.rs +1 -0
  57. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/sources/amazon_s3.rs +3 -3
  58. cocoindex-0.1.67/src/ops/sources/azure_blob.rs +238 -0
  59. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/sources/mod.rs +1 -0
  60. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/kuzu.rs +53 -61
  61. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/neo4j.rs +6 -7
  62. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/postgres.rs +6 -6
  63. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/qdrant.rs +1 -6
  64. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/shared/property_graph.rs +1 -4
  65. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/shared/table_columns.rs +41 -43
  66. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/py/convert.rs +7 -7
  67. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/py/mod.rs +10 -10
  68. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/settings.rs +0 -1
  69. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/setup/components.rs +1 -1
  70. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/setup/db_metadata.rs +1 -1
  71. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/setup/driver.rs +5 -5
  72. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/setup/states.rs +6 -6
  73. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/utils/concur_control.rs +7 -9
  74. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/utils/retryable.rs +1 -1
  75. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/utils/yaml_ser.rs +3 -6
  76. cocoindex-0.1.65/src/llm/gemini.rs +0 -196
  77. {cocoindex-0.1.65 → cocoindex-0.1.67}/.cargo/config.toml +0 -0
  78. {cocoindex-0.1.65 → cocoindex-0.1.67}/.env.lib_debug +0 -0
  79. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/ISSUE_TEMPLATE//360/237/220/233-bug-report.md" +0 -0
  80. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/ISSUE_TEMPLATE//360/237/222/241-feature-request.md" +0 -0
  81. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/scripts/update_version.sh +0 -0
  82. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/workflows/CI.yml +0 -0
  83. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/workflows/_doc_release.yml +0 -0
  84. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/workflows/docs.yml +0 -0
  85. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/workflows/format.yml +0 -0
  86. {cocoindex-0.1.65 → cocoindex-0.1.67}/.github/workflows/release.yml +0 -0
  87. {cocoindex-0.1.65 → cocoindex-0.1.67}/CODE_OF_CONDUCT.md +0 -0
  88. {cocoindex-0.1.65 → cocoindex-0.1.67}/CONTRIBUTING.md +0 -0
  89. {cocoindex-0.1.65 → cocoindex-0.1.67}/LICENSE +0 -0
  90. {cocoindex-0.1.65 → cocoindex-0.1.67}/dev/neo4j.yaml +0 -0
  91. {cocoindex-0.1.65 → cocoindex-0.1.67}/dev/postgres.yaml +0 -0
  92. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/.gitignore +0 -0
  93. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/README.md +0 -0
  94. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/about/community.md +0 -0
  95. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/about/contributing.md +0 -0
  96. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/basics.md +0 -0
  97. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/cli.mdx +0 -0
  98. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/custom_function.mdx +0 -0
  99. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/data_example.svg +0 -0
  100. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/flow_def.mdx +0 -0
  101. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/flow_example.svg +0 -0
  102. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/flow_methods.mdx +0 -0
  103. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/core/settings.mdx +0 -0
  104. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/getting_started/installation.md +0 -0
  105. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/getting_started/markdown_files.zip +0 -0
  106. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/getting_started/overview.md +0 -0
  107. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/getting_started/quickstart.md +0 -0
  108. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/ops/functions.md +0 -0
  109. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/ops/targets.md +0 -0
  110. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docs/query.mdx +0 -0
  111. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/docusaurus.config.ts +0 -0
  112. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/package.json +0 -0
  113. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/sidebars.ts +0 -0
  114. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/src/components/HomepageFeatures/index.tsx +0 -0
  115. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/src/components/HomepageFeatures/styles.module.css +0 -0
  116. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/src/css/custom.css +0 -0
  117. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/src/theme/Root.js +0 -0
  118. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/static/.nojekyll +0 -0
  119. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/static/img/docusaurus.png +0 -0
  120. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/static/img/favicon.ico +0 -0
  121. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/static/img/icon.svg +0 -0
  122. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/static/img/incremental-etl.gif +0 -0
  123. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/static/robots.txt +0 -0
  124. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/tsconfig.json +0 -0
  125. {cocoindex-0.1.65 → cocoindex-0.1.67}/docs/yarn.lock +0 -0
  126. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/amazon_s3_embedding/.env.example +0 -0
  127. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/amazon_s3_embedding/.gitignore +0 -0
  128. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/amazon_s3_embedding/README.md +0 -0
  129. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/amazon_s3_embedding/main.py +0 -0
  130. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/amazon_s3_embedding/pyproject.toml +0 -0
  131. {cocoindex-0.1.65/examples/gdrive_text_embedding → cocoindex-0.1.67/examples/azure_blob_embedding}/.gitignore +0 -0
  132. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/code_embedding/.env +0 -0
  133. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/code_embedding/README.md +0 -0
  134. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/code_embedding/main.py +0 -0
  135. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/code_embedding/pyproject.toml +0 -0
  136. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/docs_to_knowledge_graph/.env +0 -0
  137. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/docs_to_knowledge_graph/README.md +0 -0
  138. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/docs_to_knowledge_graph/main.py +0 -0
  139. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/docs_to_knowledge_graph/pyproject.toml +0 -0
  140. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/.dockerignore +0 -0
  141. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/.env +0 -0
  142. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/README.md +0 -0
  143. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/compose.yaml +0 -0
  144. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/dockerfile +0 -0
  145. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/files/1810.04805v2.md +0 -0
  146. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/main.py +0 -0
  147. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/fastapi_server_docker/requirements.txt +0 -0
  148. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/gdrive_text_embedding/.env.example +0 -0
  149. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/gdrive_text_embedding/README.md +0 -0
  150. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/gdrive_text_embedding/main.py +0 -0
  151. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/gdrive_text_embedding/pyproject.toml +0 -0
  152. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/.env +0 -0
  153. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/README.md +0 -0
  154. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/.gitignore +0 -0
  155. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/index.html +0 -0
  156. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/package-lock.json +0 -0
  157. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/package.json +0 -0
  158. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/src/App.jsx +0 -0
  159. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/src/main.jsx +0 -0
  160. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/src/style.css +0 -0
  161. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/frontend/vite.config.js +0 -0
  162. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/img/cat1.jpeg +0 -0
  163. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/img/dog1.jpeg +0 -0
  164. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/img/elephant1.jpg +0 -0
  165. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/img/giraffe.jpg +0 -0
  166. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/main.py +0 -0
  167. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/image_search/pyproject.toml +0 -0
  168. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/.env +0 -0
  169. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/README.md +0 -0
  170. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/main.py +0 -0
  171. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/manuals/array.pdf +0 -0
  172. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/manuals/base64.pdf +0 -0
  173. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/manuals/copy.pdf +0 -0
  174. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/manuals/glob.pdf +0 -0
  175. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/manuals_llm_extraction/pyproject.toml +0 -0
  176. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/.env.example +0 -0
  177. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/.gitignore +0 -0
  178. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/README.md +0 -0
  179. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/main.py +0 -0
  180. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/papers/1706.03762v7.pdf +0 -0
  181. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/papers/1810.04805v2.pdf +0 -0
  182. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/papers/2502.06786v3.pdf +0 -0
  183. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/papers/2502.20346v1.pdf +0 -0
  184. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/paper_metadata/pyproject.toml +0 -0
  185. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/.env.example +0 -0
  186. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/README.md +0 -0
  187. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/data/README.md +0 -0
  188. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_David_Artificial.docx +0 -0
  189. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Emily_Artificial.pdf +0 -0
  190. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_Form_Joe_Artificial.pdf +0 -0
  191. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/data/patient_forms/Patient_Intake_From_Jane_Artificial.docx +0 -0
  192. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/main.py +0 -0
  193. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/patient_intake_extraction/pyproject.toml +0 -0
  194. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/pdf_embedding/.env +0 -0
  195. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/pdf_embedding/README.md +0 -0
  196. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/pdf_embedding/main.py +0 -0
  197. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/pdf_embedding/pdf_files/1706.03762v7.pdf +0 -0
  198. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/pdf_embedding/pdf_files/1810.04805v2.pdf +0 -0
  199. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/pdf_embedding/pdf_files/rfc8259.pdf +0 -0
  200. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/pdf_embedding/pyproject.toml +0 -0
  201. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/.env +0 -0
  202. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/README.md +0 -0
  203. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/img/cocoinsight.png +0 -0
  204. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/img/neo4j.png +0 -0
  205. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/main.py +0 -0
  206. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p1.json +0 -0
  207. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p2.json +0 -0
  208. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p3.json +0 -0
  209. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p4.json +0 -0
  210. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p5.json +0 -0
  211. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p6.json +0 -0
  212. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p7.json +0 -0
  213. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p8.json +0 -0
  214. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/products/p9.json +0 -0
  215. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/product_recommendation/pyproject.toml +0 -0
  216. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/.env +0 -0
  217. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/README.md +0 -0
  218. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/Text_Embedding.ipynb +0 -0
  219. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/markdown_files/1706.03762v7.md +0 -0
  220. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/markdown_files/1810.04805v2.md +0 -0
  221. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/markdown_files/rfc8259.md +0 -0
  222. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding/pyproject.toml +0 -0
  223. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding_qdrant/.env +0 -0
  224. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding_qdrant/README.md +0 -0
  225. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding_qdrant/main.py +0 -0
  226. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding_qdrant/markdown_files/rfc8259.md +0 -0
  227. {cocoindex-0.1.65 → cocoindex-0.1.67}/examples/text_embedding_qdrant/pyproject.toml +0 -0
  228. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/auth_registry.py +0 -0
  229. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/cli.py +0 -0
  230. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/flow.py +0 -0
  231. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/index.py +0 -0
  232. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/lib.py +0 -0
  233. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/op.py +0 -0
  234. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/py.typed +0 -0
  235. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/runtime.py +0 -0
  236. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/setting.py +0 -0
  237. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/setup.py +0 -0
  238. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/targets.py +0 -0
  239. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/tests/__init__.py +0 -0
  240. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/tests/test_optional_database.py +0 -0
  241. {cocoindex-0.1.65 → cocoindex-0.1.67}/python/cocoindex/utils.py +0 -0
  242. {cocoindex-0.1.65 → cocoindex-0.1.67}/ruff.toml +0 -0
  243. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/base/field_attrs.rs +0 -0
  244. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/base/json_schema.rs +0 -0
  245. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/base/mod.rs +0 -0
  246. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/builder/analyzed_flow.rs +0 -0
  247. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/builder/mod.rs +0 -0
  248. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/builder/plan.rs +0 -0
  249. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/memoization.rs +0 -0
  250. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/execution/mod.rs +0 -0
  251. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/lib.rs +0 -0
  252. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/litellm.rs +0 -0
  253. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/openrouter.rs +0 -0
  254. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/vllm.rs +0 -0
  255. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/llm/voyage.rs +0 -0
  256. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/functions/mod.rs +0 -0
  257. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/functions/test_utils.rs +0 -0
  258. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/mod.rs +0 -0
  259. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/registry.rs +0 -0
  260. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/sdk.rs +0 -0
  261. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/sources/google_drive.rs +0 -0
  262. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/sources/local_file.rs +0 -0
  263. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/mod.rs +0 -0
  264. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/ops/targets/shared/mod.rs +0 -0
  265. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/prelude.rs +0 -0
  266. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/server.rs +0 -0
  267. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/service/error.rs +0 -0
  268. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/service/flows.rs +0 -0
  269. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/service/mod.rs +0 -0
  270. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/setup/auth_registry.rs +0 -0
  271. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/setup/mod.rs +0 -0
  272. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/utils/db.rs +0 -0
  273. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/utils/fingerprint.rs +0 -0
  274. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/utils/immutable.rs +0 -0
  275. {cocoindex-0.1.65 → cocoindex-0.1.67}/src/utils/mod.rs +0 -0
@@ -47,7 +47,7 @@ jobs:
47
47
  - name: Python build
48
48
  run: |
49
49
  source .venv/bin/activate
50
- maturin develop
50
+ maturin develop -E all
51
51
  - name: Python type check (mypy)
52
52
  run: |
53
53
  source .venv/bin/activate
@@ -20,3 +20,4 @@ dist/
20
20
  examples/**/eval_*
21
21
 
22
22
  /.vscode
23
+ /*.session.sql
@@ -28,7 +28,7 @@ repos:
28
28
  hooks:
29
29
  - id: maturin-develop
30
30
  name: maturin develop
31
- entry: maturin develop
31
+ entry: maturin develop -E all
32
32
  language: system
33
33
  files: ^(python/|src/|Cargo\.toml|pyproject\.toml)
34
34
  pass_filenames: false