cocoindex 0.1.73__cp313-cp313-macosx_11_0_arm64.whl → 0.1.75__cp313-cp313-macosx_11_0_arm64.whl
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/__init__.py +5 -3
- cocoindex/_engine.cpython-313-darwin.so +0 -0
- cocoindex/convert.py +188 -167
- cocoindex/flow.py +29 -12
- cocoindex/op.py +264 -6
- cocoindex/tests/test_convert.py +184 -151
- cocoindex/tests/test_transform_flow.py +103 -0
- cocoindex/tests/test_typing.py +5 -12
- cocoindex/typing.py +8 -8
- {cocoindex-0.1.73.dist-info → cocoindex-0.1.75.dist-info}/METADATA +5 -3
- {cocoindex-0.1.73.dist-info → cocoindex-0.1.75.dist-info}/RECORD +14 -13
- {cocoindex-0.1.73.dist-info → cocoindex-0.1.75.dist-info}/WHEEL +1 -1
- {cocoindex-0.1.73.dist-info → cocoindex-0.1.75.dist-info}/entry_points.txt +0 -0
- {cocoindex-0.1.73.dist-info → cocoindex-0.1.75.dist-info}/licenses/LICENSE +0 -0
@@ -1,24 +1,25 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cocoindex
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.75
|
4
4
|
Requires-Dist: click>=8.1.8
|
5
5
|
Requires-Dist: rich>=14.0.0
|
6
6
|
Requires-Dist: python-dotenv>=1.1.0
|
7
7
|
Requires-Dist: watchfiles>=1.1.0
|
8
8
|
Requires-Dist: numpy>=1.23.2
|
9
9
|
Requires-Dist: pytest ; extra == 'dev'
|
10
|
+
Requires-Dist: pytest-asyncio ; extra == 'dev'
|
10
11
|
Requires-Dist: ruff ; extra == 'dev'
|
11
12
|
Requires-Dist: mypy ; extra == 'dev'
|
12
13
|
Requires-Dist: pre-commit ; extra == 'dev'
|
13
14
|
Requires-Dist: sentence-transformers>=3.3.1 ; extra == 'embeddings'
|
14
|
-
Requires-Dist:
|
15
|
+
Requires-Dist: sentence-transformers>=3.3.1 ; extra == 'all'
|
15
16
|
Provides-Extra: dev
|
16
17
|
Provides-Extra: embeddings
|
17
18
|
Provides-Extra: all
|
18
19
|
License-File: LICENSE
|
19
20
|
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.
|
20
21
|
Author-email: CocoIndex <cocoindex.io@gmail.com>
|
21
|
-
License: Apache-2.0
|
22
|
+
License-Expression: Apache-2.0
|
22
23
|
Requires-Python: >=3.11
|
23
24
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
24
25
|
Project-URL: Homepage, https://cocoindex.io/
|
@@ -210,6 +211,7 @@ It defines an index flow like this:
|
|
210
211
|
| [Image Search with Vision API](examples/image_search) | Generates detailed captions for images using a vision model, embeds them, enables live-updating semantic search via FastAPI and served on a React frontend|
|
211
212
|
| [Face Recognition](examples/face_recognition) | Recognize faces in images and build embedding index |
|
212
213
|
| [Paper Metadata](examples/paper_metadata) | Index papers in PDF files, and build metadata tables for each paper |
|
214
|
+
| [Custom Output Files](examples/custom_output_files) | Convert markdown files to HTML files and save them to a local directory, using *CocoIndex Custom Targets* |
|
213
215
|
|
214
216
|
More coming and stay tuned 👀!
|
215
217
|
|
@@ -1,18 +1,18 @@
|
|
1
|
-
cocoindex-0.1.
|
2
|
-
cocoindex-0.1.
|
3
|
-
cocoindex-0.1.
|
4
|
-
cocoindex-0.1.
|
5
|
-
cocoindex/__init__.py,sha256=
|
6
|
-
cocoindex/_engine.cpython-313-darwin.so,sha256=
|
1
|
+
cocoindex-0.1.75.dist-info/METADATA,sha256=kdYHdHSv-kunSaI3MoIUCoZ88Ne3pgeV5jS5WliHGrc,11533
|
2
|
+
cocoindex-0.1.75.dist-info/WHEEL,sha256=ftMPXhZi0LpoLHOL-_sSd_yyXJkIP_M7ji3o6sOVaR0,104
|
3
|
+
cocoindex-0.1.75.dist-info/entry_points.txt,sha256=_NretjYVzBdNTn7dK-zgwr7YfG2afz1u1uSE-5bZXF8,46
|
4
|
+
cocoindex-0.1.75.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
5
|
+
cocoindex/__init__.py,sha256=sLpSVO5Cotgn_82lawxvXnaqfa-qj33rytWBAe2MTtU,2201
|
6
|
+
cocoindex/_engine.cpython-313-darwin.so,sha256=_cgwEbIUQyFHMI1kBHi_XQw3D9YPKqMplNgMwgn4cBE,65097008
|
7
7
|
cocoindex/auth_registry.py,sha256=PE1-kVkcyC1G2C_V7b1kvYzeq73OFQehWKQP7ln7fJ8,1478
|
8
8
|
cocoindex/cli.py,sha256=-gp639JSyQN6YjnhGqCakIzYoSSqXxQMbxbkcYGP0QY,22359
|
9
|
-
cocoindex/convert.py,sha256=
|
10
|
-
cocoindex/flow.py,sha256=
|
9
|
+
cocoindex/convert.py,sha256=HodeDl1HVX8nnBH02lQKarw5i3xmkjB0nGj-DXt7Ifc,18284
|
10
|
+
cocoindex/flow.py,sha256=egKbBG2X9DjAqmcATcndyRhe9zMZHRd-YxKCpt9BsUg,36551
|
11
11
|
cocoindex/functions.py,sha256=LLu_ausirvqnsx_k3euZpv8sLCpBZ4DF77h2HOzbinE,3109
|
12
12
|
cocoindex/index.py,sha256=j93B9jEvvLXHtpzKWL88SY6wCGEoPgpsQhEGHlyYGFg,540
|
13
13
|
cocoindex/lib.py,sha256=f--9dAYd84CZosbDZqNW0oGbBLsY3dXiUTR1VrfQ_QY,817
|
14
14
|
cocoindex/llm.py,sha256=WxmWUbNcf9HOCM5xkbDeFs9lF67M3mr810B7deDDc-8,673
|
15
|
-
cocoindex/op.py,sha256=
|
15
|
+
cocoindex/op.py,sha256=oiG1rjxz6ad1jGS7DMya4NStrA_6LV3RbcVSR75XUl0,21516
|
16
16
|
cocoindex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
cocoindex/runtime.py,sha256=povilB3HH3y1JF-yxKwU-pD8n2WnAqyQxIgvXXHNc60,1080
|
18
18
|
cocoindex/setting.py,sha256=TwhQ6pEeZmvc8ZXlnT9d8Wn8Vz_u7Z5LJUkGsKmKSno,4859
|
@@ -20,11 +20,12 @@ cocoindex/setup.py,sha256=7uIHKN4FOCuoidPXcKyGTrkqpkl9luL49-6UcnMxYzw,3068
|
|
20
20
|
cocoindex/sources.py,sha256=69COA4qbZDipzGYfXv-WJSmicFkA509xIShRGDh6A0A,2083
|
21
21
|
cocoindex/targets.py,sha256=Nfh_tpFd1goTnS_cxBjIs4j9zl3Z4Z1JomAQ1dl3Sic,2796
|
22
22
|
cocoindex/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
cocoindex/tests/test_convert.py,sha256=
|
23
|
+
cocoindex/tests/test_convert.py,sha256=l7LqD7duV9-xkYTaKOsEPdqw7v14dUzE40f4VVLlBCQ,49423
|
24
24
|
cocoindex/tests/test_optional_database.py,sha256=snAmkNa6wtOSaxoZE1HgjvL5v_ylitt3Jt_9df4Cgdc,8506
|
25
|
-
cocoindex/tests/
|
25
|
+
cocoindex/tests/test_transform_flow.py,sha256=VvT5b895MH5kwT-h4OpdDTl545SU4nxeIm7E_QANmAk,2894
|
26
|
+
cocoindex/tests/test_typing.py,sha256=9OF3lO2uSpZBefkEJx7WRbnkXjwQtvlQIeeARYQID68,12391
|
26
27
|
cocoindex/tests/test_validation.py,sha256=X6AQzVs-hVKIXcrHMEMQnhfUE8at7iXQnPq8nHNhZ2Q,4543
|
27
|
-
cocoindex/typing.py,sha256=
|
28
|
+
cocoindex/typing.py,sha256=qQ0ANF3iuQDeSqipHgL2SDiiXL2reTMUN0aj4ve_T0w,13359
|
28
29
|
cocoindex/utils.py,sha256=hUhX-XV6XGCtJSEIpBOuDv6VvqImwPlgBxztBTw7u0U,598
|
29
30
|
cocoindex/validation.py,sha256=PZnJoby4sLbsmPv9fOjOQXuefjfZ7gmtsiTGU8SH-tc,3090
|
30
|
-
cocoindex-0.1.
|
31
|
+
cocoindex-0.1.75.dist-info/RECORD,,
|
File without changes
|
File without changes
|