naas-abi-core 1.0.3.dev1__py3-none-any.whl → 1.0.4.dev1__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.
@@ -0,0 +1,69 @@
1
+ # This is used to test all imports and ensure all libraries are installed and imported correctly.
2
+
3
+
4
+ def test_imports():
5
+ from naas_abi_core.services.agent import Agent, IntentAgent
6
+ from naas_abi_core.services.cache import CacheFactory, CachePort, CacheService
7
+ from naas_abi_core.services.cache.adapters.secondary import CacheFSAdapter
8
+ from naas_abi_core.services.object_storage import ObjectStorageService
9
+ from naas_abi_core.services.object_storage.adapters.secondary import (
10
+ ObjectStorageSecondaryAdapterFS,
11
+ ObjectStorageSecondaryAdapterNaas,
12
+ ObjectStorageSecondaryAdapterS3,
13
+ )
14
+ from naas_abi_core.services.secret import Secret, SecretPorts
15
+ from naas_abi_core.services.secret.adaptors.secondary import (
16
+ Base64Secret,
17
+ NaasSecret,
18
+ dotenv_secret_secondaryadaptor,
19
+ )
20
+ from naas_abi_core.services.triple_store import (
21
+ TripleStoreFactory,
22
+ TripleStorePorts,
23
+ TripleStoreService,
24
+ )
25
+ from naas_abi_core.services.triple_store.adaptors.secondary import (
26
+ AWSNeptune,
27
+ Oxigraph,
28
+ )
29
+ from naas_abi_core.services.vector_store import (
30
+ IVectorStorePort,
31
+ VectorStoreFactory,
32
+ VectorStoreService,
33
+ )
34
+ from naas_abi_core.services.vector_store.adapters.QdrantAdapter import QdrantAdapter
35
+
36
+ Agent
37
+ IntentAgent
38
+ CacheService
39
+ CacheFactory
40
+ CachePort
41
+ CacheFSAdapter
42
+ ObjectStorageService
43
+ ObjectStorageSecondaryAdapterFS
44
+ ObjectStorageSecondaryAdapterNaas
45
+ ObjectStorageSecondaryAdapterS3
46
+ ObjectStorageSecondaryAdapterFS
47
+ ObjectStorageSecondaryAdapterNaas
48
+ ObjectStorageSecondaryAdapterS3
49
+ TripleStoreService
50
+ TripleStoreFactory
51
+ TripleStorePorts
52
+ AWSNeptune
53
+ Oxigraph
54
+ ObjectStorageSecondaryAdapterNaas
55
+ ObjectStorageSecondaryAdapterS3
56
+ TripleStoreService
57
+ TripleStoreFactory
58
+ Secret
59
+ SecretPorts
60
+ Base64Secret
61
+ dotenv_secret_secondaryadaptor
62
+ NaasSecret
63
+ VectorStoreFactory
64
+ VectorStoreService
65
+ IVectorStorePort
66
+ QdrantAdapter
67
+ VectorStoreService
68
+ IVectorStorePort
69
+ QdrantAdapter
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: naas-abi-core
3
- Version: 1.0.3.dev1
3
+ Version: 1.0.4.dev1
4
4
  Summary: Abi framework allowing you to build your AI system.
5
5
  Author-email: Maxime Jublou <maxime@naas.ai>, Florent Ravenel <florent@naas.ai>, Jeremy Ravenel <jeremy@naas.ai>
6
6
  Requires-Python: <4,>=3.10
7
- Requires-Dist: boto3<2,>=1.38.19
8
7
  Requires-Dist: click<8.2,>=8.1.1
9
8
  Requires-Dist: dotenv>=0.9.9
9
+ Requires-Dist: fastapi<0.116,>=0.115.5
10
10
  Requires-Dist: langchain-openai<0.4,>=0.3.3
11
11
  Requires-Dist: langgraph-checkpoint-postgres>=2.0.21
12
12
  Requires-Dist: langgraph>=0.6.6
@@ -15,7 +15,7 @@ Requires-Dist: pip>=25.1.1
15
15
  Requires-Dist: psycopg[binary,pool]>=3.0.0
16
16
  Requires-Dist: pydantic>=2.11.5
17
17
  Requires-Dist: pydash>=8.0.5
18
- Requires-Dist: qdrant-client>=1.14.3
18
+ Requires-Dist: pytz>=2025.2
19
19
  Requires-Dist: rdflib<8,>=7.1.1
20
20
  Requires-Dist: rich<14,>=13.9.4
21
21
  Requires-Dist: spacy>=3.8.7
@@ -23,6 +23,10 @@ Requires-Dist: sparqlwrapper>=2.0.0
23
23
  Requires-Dist: sse-starlette<3,>=2.1.3
24
24
  Requires-Dist: starlette>=0.46.2
25
25
  Requires-Dist: types-tqdm>=4.67.0.20250809
26
+ Provides-Extra: aws
27
+ Requires-Dist: boto3<2,>=1.38.19; extra == 'aws'
28
+ Provides-Extra: qdrant
29
+ Requires-Dist: qdrant-client>=1.14.3; extra == 'qdrant'
26
30
  Provides-Extra: ssh
27
31
  Requires-Dist: paramiko<4.0.0,>=3.5.1; extra == 'ssh'
28
32
  Requires-Dist: sshtunnel>=0.4.0; extra == 'ssh'
@@ -99,6 +99,7 @@ naas_abi_core/services/vector_store/VectorStoreService_test.py,sha256=LKGdUJoayV
99
99
  naas_abi_core/services/vector_store/__init__.py,sha256=tuRLebTOVhH5UF8JRke3rVTze1V3WK1DFT4k9ZYHqeA,407
100
100
  naas_abi_core/services/vector_store/adapters/QdrantAdapter.py,sha256=rlgjwbPXxFU1sAiNX8_57ia-5svN3e5kAkE6p42kJRI,7981
101
101
  naas_abi_core/services/vector_store/adapters/QdrantAdapter_test.py,sha256=JyKNfx-e4M7VybWViWrGWG8KiAnBa0oOwT-W_Yg23Uw,1891
102
+ naas_abi_core/tests/test_services_imports.py,sha256=zxVTxeuF-apcoeK3aXRpw0Tdesj9asVLof3nJxBax1c,2133
102
103
  naas_abi_core/utils/Expose.py,sha256=ycxiz2tOXkRco_fiNM281e85RWHWi2xUT82PEE_Hdjk,1746
103
104
  naas_abi_core/utils/Graph.py,sha256=FoBuiTrcLw4dzhROnd7JHp-LMxMuwJISFbtdrwpoM24,6288
104
105
  naas_abi_core/utils/JSON.py,sha256=onIs-E3GWz4fvRuWBQpyb9qRNXCOJPf9x1yV1-jDlqU,1687
@@ -119,7 +120,7 @@ naas_abi_core/utils/onto2py/onto2py.py,sha256=_wn9qrrsWd8gO-BY4_jQJVfY87e9MJ2Er2
119
120
  naas_abi_core/utils/onto2py/tests/ttl2py_test.py,sha256=5OZqSxPffjJYiX9T4rT1mV0PT1Qhf6goqEYT_mAPnaI,8055
120
121
  naas_abi_core/workflow/__init__.py,sha256=hZD58mCB1PApxITqftP_xgjxL7NeLvOfI-rJENg1ENs,250
121
122
  naas_abi_core/workflow/workflow.py,sha256=ZufSS073JztVl0OQRTqNyK7FepFvv7gXlc4j5FAEZCI,1216
122
- naas_abi_core-1.0.3.dev1.dist-info/METADATA,sha256=UOS_Na1xUMnzwS_H_NeIhLs7sojsmA5YlDRuU31jqMY,3197
123
- naas_abi_core-1.0.3.dev1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
124
- naas_abi_core-1.0.3.dev1.dist-info/entry_points.txt,sha256=R6N3E2Hh92nTrji34JIwBgc6c-wVpfBYBTwkU0xe64E,79
125
- naas_abi_core-1.0.3.dev1.dist-info/RECORD,,
123
+ naas_abi_core-1.0.4.dev1.dist-info/METADATA,sha256=p_I9Oi76jYOD8b98CKStW9OTVHzQXaI6UdJAN4JKGFo,3342
124
+ naas_abi_core-1.0.4.dev1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
125
+ naas_abi_core-1.0.4.dev1.dist-info/entry_points.txt,sha256=R6N3E2Hh92nTrji34JIwBgc6c-wVpfBYBTwkU0xe64E,79
126
+ naas_abi_core-1.0.4.dev1.dist-info/RECORD,,