linkml-store 0.1.14__py3-none-any.whl → 0.2.1__py3-none-any.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.
Potentially problematic release.
This version of linkml-store might be problematic. Click here for more details.
- linkml_store/api/collection.py +48 -5
- linkml_store/api/database.py +7 -1
- linkml_store/api/queries.py +3 -1
- linkml_store/api/stores/duckdb/duckdb_collection.py +8 -2
- linkml_store/cli.py +44 -18
- linkml_store/index/implementations/llm_indexer.py +20 -2
- linkml_store/index/indexer.py +51 -1
- linkml_store/inference/evaluation.py +195 -0
- linkml_store/inference/implementations/rag_inference_engine.py +120 -33
- linkml_store/inference/implementations/rule_based_inference_engine.py +15 -4
- linkml_store/inference/implementations/sklearn_inference_engine.py +20 -2
- linkml_store/inference/inference_config.py +1 -0
- linkml_store/inference/inference_engine.py +53 -19
- linkml_store/utils/format_utils.py +6 -0
- linkml_store/utils/llm_utils.py +2 -0
- linkml_store/utils/object_utils.py +100 -1
- {linkml_store-0.1.14.dist-info → linkml_store-0.2.1.dist-info}/METADATA +9 -1
- {linkml_store-0.1.14.dist-info → linkml_store-0.2.1.dist-info}/RECORD +21 -20
- {linkml_store-0.1.14.dist-info → linkml_store-0.2.1.dist-info}/LICENSE +0 -0
- {linkml_store-0.1.14.dist-info → linkml_store-0.2.1.dist-info}/WHEEL +0 -0
- {linkml_store-0.1.14.dist-info → linkml_store-0.2.1.dist-info}/entry_points.txt +0 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
linkml_store/__init__.py,sha256=jlU6WOUAn8cKIhzbTULmBTWpW9gZdEt7q_RI6KZN1bY,118
|
|
2
2
|
linkml_store/api/__init__.py,sha256=3CelcFEFz0y3MkQAzhQ9JxHIt1zFk6nYZxSmYTo8YZE,226
|
|
3
3
|
linkml_store/api/client.py,sha256=3klBXenQVbLjNQF3WmYfjASt3zvKOfWaCNp5aJM81Ec,12034
|
|
4
|
-
linkml_store/api/collection.py,sha256=
|
|
4
|
+
linkml_store/api/collection.py,sha256=98qUYKVJOEzC9Sl9iBqxdBWnm_4Q8UT9r5UPRb4UoAU,39300
|
|
5
5
|
linkml_store/api/config.py,sha256=71pxQ5jM-ETxJWU7CzmKjsH6IEJUMP5sml381u9TYVk,5654
|
|
6
|
-
linkml_store/api/database.py,sha256=
|
|
7
|
-
linkml_store/api/queries.py,sha256=
|
|
6
|
+
linkml_store/api/database.py,sha256=nvae8jnOZsQIFCsl_lRBnKcvrpJg4A10ujIKGeMyUS8,29350
|
|
7
|
+
linkml_store/api/queries.py,sha256=tx9fgGY5fC_2ZbIvg4BqTK_MXJwA_DI4mxr8HdQ6Vos,2075
|
|
8
8
|
linkml_store/api/stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
linkml_store/api/stores/chromadb/__init__.py,sha256=e9BkOPuPnVQKA5PRKDulag59yGNHDP3U2_DnPSrFAKM,132
|
|
10
10
|
linkml_store/api/stores/chromadb/chromadb_collection.py,sha256=RQUZx5oeotkzNihg-dlSevkiTiKY1d9x0bS63HF80W4,4270
|
|
11
11
|
linkml_store/api/stores/chromadb/chromadb_database.py,sha256=dZA3LQE8-ZMhJQOzsUFyxehnKpFF7adR182aggfkaFY,3205
|
|
12
12
|
linkml_store/api/stores/duckdb/__init__.py,sha256=rbQSDgNg-fdvi6-pHGYkJTST4p1qXUZBf9sFSsO3KPk,387
|
|
13
|
-
linkml_store/api/stores/duckdb/duckdb_collection.py,sha256=
|
|
13
|
+
linkml_store/api/stores/duckdb/duckdb_collection.py,sha256=Rkbm_uIVIRj5576lEolsyY_3Um1h8Lf3RHn8Fy3LIgU,7036
|
|
14
14
|
linkml_store/api/stores/duckdb/duckdb_database.py,sha256=GH9bcOfHpNp6r-Eu1C3W0xuYcLsqGFDH1Sh4weifGaQ,9923
|
|
15
15
|
linkml_store/api/stores/duckdb/mappings.py,sha256=tDce3W1Apwammhf4LS6cRJ0m4NiJ0eB7vOI_4U5ETY8,148
|
|
16
16
|
linkml_store/api/stores/filesystem/__init__.py,sha256=KjvCjdttwqMHNeGyL-gr59zRz0--HFEWWUNNCJ5hITs,347
|
|
@@ -30,32 +30,33 @@ linkml_store/api/stores/solr/solr_collection.py,sha256=ZlxC3JbVaHfSA4HuTeJTsp6qe
|
|
|
30
30
|
linkml_store/api/stores/solr/solr_database.py,sha256=TFjqbY7jAkdrhAchbNg0E-mChSP7ogNwFExslbvX7Yo,2877
|
|
31
31
|
linkml_store/api/stores/solr/solr_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
linkml_store/api/types.py,sha256=3aIQtDFMvsSmjuN5qrR2vNK5sHa6yzD_rEOPA6tHwvg,176
|
|
33
|
-
linkml_store/cli.py,sha256=
|
|
33
|
+
linkml_store/cli.py,sha256=6pcVHM_hNH7EicleoCkjMVAbrGFZu8V_k2mv3aX0SH8,27703
|
|
34
34
|
linkml_store/constants.py,sha256=x4ZmDsfE9rZcL5WpA93uTKrRWzCD6GodYXviVzIvR38,112
|
|
35
35
|
linkml_store/graphs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
linkml_store/graphs/graph_map.py,sha256=bYRxv8n1YPnFqE9d6JKNmRawb8EAhsPlHhBue0gvtZE,712
|
|
37
37
|
linkml_store/index/__init__.py,sha256=6SQzDe-WZSSqbGNsbCDfyPTyz0s9ISDKw1dm9xgQuT4,1396
|
|
38
38
|
linkml_store/index/implementations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
linkml_store/index/implementations/llm_indexer.py,sha256=
|
|
39
|
+
linkml_store/index/implementations/llm_indexer.py,sha256=y1xvfUm_rl4UEiWJbsUsEnTCma98XRB9C1XOnuaAv5o,5474
|
|
40
40
|
linkml_store/index/implementations/simple_indexer.py,sha256=KnkFJtXTHnwjhD_D6ZK2rFhBID1dgCedcOVPEWAY2NU,1282
|
|
41
|
-
linkml_store/index/indexer.py,sha256=
|
|
41
|
+
linkml_store/index/indexer.py,sha256=3P-VtIEqitnMoaFjcXIIosoU7tJInop1Qq39QRbcT-8,7107
|
|
42
42
|
linkml_store/inference/__init__.py,sha256=b8NAFNZjOYU_8gOvxdyCyoiHOOl5Ai2ckKs1tv7ZkkY,342
|
|
43
|
+
linkml_store/inference/evaluation.py,sha256=YDFYaEu2QLSfFq4oyARrnKfTiPLtNF8irhhspgVDfdY,6013
|
|
43
44
|
linkml_store/inference/implementations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
linkml_store/inference/implementations/rag_inference_engine.py,sha256=
|
|
45
|
-
linkml_store/inference/implementations/rule_based_inference_engine.py,sha256=
|
|
46
|
-
linkml_store/inference/implementations/sklearn_inference_engine.py,sha256=
|
|
47
|
-
linkml_store/inference/inference_config.py,sha256=
|
|
48
|
-
linkml_store/inference/inference_engine.py,sha256
|
|
45
|
+
linkml_store/inference/implementations/rag_inference_engine.py,sha256=zmcbxmVZTm8ViSp7WFs8KHRNbzWXdZQl7J7VvcIjDyU,9049
|
|
46
|
+
linkml_store/inference/implementations/rule_based_inference_engine.py,sha256=0IEY_fsHJPJy6QKbYQU_qE87RRnPOXQxPuJKXCQG8jU,6250
|
|
47
|
+
linkml_store/inference/implementations/sklearn_inference_engine.py,sha256=Sdi7CoRK3qoLJu3prgLy1Ck_zQ1gHWRKFybHe7XQ4_g,13192
|
|
48
|
+
linkml_store/inference/inference_config.py,sha256=SbAlgQDRCWawWohe0IWX_Kvy-DFeaLYsN1HqrmLvc0k,2052
|
|
49
|
+
linkml_store/inference/inference_engine.py,sha256=l2UB6cA0rW7a9qyiv8JF5Nzj8nRHGX_yqMYbiDnY1Qc,7055
|
|
49
50
|
linkml_store/inference/inference_engine_registry.py,sha256=6o66gvBYBwdeAKm62zqqvfaBlcopVP_cla3L6uXGsHA,3015
|
|
50
51
|
linkml_store/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
52
|
linkml_store/utils/change_utils.py,sha256=O2rvSvgTKB60reLLz9mX5OWykAA_m93bwnUh5ZWa0EY,471
|
|
52
53
|
linkml_store/utils/file_utils.py,sha256=rQ7-XpmI6_Kx_dhEnI98muFRr0MmgI_kZ_9cgJBf_0I,1411
|
|
53
|
-
linkml_store/utils/format_utils.py,sha256=
|
|
54
|
+
linkml_store/utils/format_utils.py,sha256=airJ2_tFsr0dTIbSHT5y0TZbDrvBBV4_qThFPFY5k8U,10925
|
|
54
55
|
linkml_store/utils/io.py,sha256=JHUrWDtlZC2jtN_PQZ4ypdGIyYlftZEN3JaCvEPs44w,884
|
|
55
|
-
linkml_store/utils/llm_utils.py,sha256=
|
|
56
|
+
linkml_store/utils/llm_utils.py,sha256=3jRFUtEywoKdomKb3aCH1GdI9hQJOQo8Udb3Jy4M-Xw,2885
|
|
56
57
|
linkml_store/utils/mongodb_utils.py,sha256=Rl1YmMKs1IXwSsJIViSDChbi0Oer5cBnMmjka2TeQS8,4665
|
|
57
58
|
linkml_store/utils/neo4j_utils.py,sha256=y3KPmDZ8mQmePgg0lUeKkeKqzEr2rV226xxEtHc5pRg,1266
|
|
58
|
-
linkml_store/utils/object_utils.py,sha256=
|
|
59
|
+
linkml_store/utils/object_utils.py,sha256=Vib-5Ip2DlRVKLZpU-008ZZI813-vfKVSCY0TksRenM,6293
|
|
59
60
|
linkml_store/utils/pandas_utils.py,sha256=djiFPO3YbgRVo2XAZuKCtgH8QVLuUyPIsfS8e-0umsU,3182
|
|
60
61
|
linkml_store/utils/patch_utils.py,sha256=q-h_v68okyruzdPTEHCe0WubbQHKpi1qy5bJ9vFWDo8,4823
|
|
61
62
|
linkml_store/utils/query_utils.py,sha256=HWt46BsGWoIGiNBTtvpXGY6onPRWsQky6eu_9cYqbvo,3440
|
|
@@ -71,8 +72,8 @@ linkml_store/webapi/html/database_details.html.j2,sha256=qtXdavbZb0mohiObI9dvJtk
|
|
|
71
72
|
linkml_store/webapi/html/databases.html.j2,sha256=a9BCWQYfPeFhdUd31CWhB0yWhTIFXQayO08JgjyqKoc,294
|
|
72
73
|
linkml_store/webapi/html/generic.html.j2,sha256=KtLaO2HUEF2Opq-OwHKgRKetNWe8IWc6JuIkxRPsywk,1018
|
|
73
74
|
linkml_store/webapi/main.py,sha256=B0Da575kKR7X88N9ykm99Dem8FyBAW9f-w3A_JwUzfw,29165
|
|
74
|
-
linkml_store-0.1.
|
|
75
|
-
linkml_store-0.1.
|
|
76
|
-
linkml_store-0.1.
|
|
77
|
-
linkml_store-0.1.
|
|
78
|
-
linkml_store-0.1.
|
|
75
|
+
linkml_store-0.2.1.dist-info/LICENSE,sha256=77mDOslUnalYnuq9xQYZKtIoNEzcH9mIjvWHOKjamnE,1086
|
|
76
|
+
linkml_store-0.2.1.dist-info/METADATA,sha256=ERSRCW1gMtcuLoWX-jKKfpgz10BBIUrGw-TvwXW3o-c,6977
|
|
77
|
+
linkml_store-0.2.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
78
|
+
linkml_store-0.2.1.dist-info/entry_points.txt,sha256=gWxVsHqx-t-UKWFHFzawQTvs4is4vC1rCF5AeKyqWWk,101
|
|
79
|
+
linkml_store-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|