hexdag-plugins 0.1.0__tar.gz → 0.2.0.dev3__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.
@@ -1,17 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hexdag-plugins
3
- Version: 0.1.0
3
+ Version: 0.2.0.dev3
4
4
  Summary: Official plugins for hexDAG framework - Azure, MySQL, ETL, and storage adapters
5
5
  Project-URL: Homepage, https://hexdag.ai
6
6
  Project-URL: Repository, https://github.com/omniviser/hexdag
7
7
  Project-URL: Documentation, https://hexdag.ai/docs/plugins
8
8
  Project-URL: Bug Reports, https://github.com/omniviser/hexdag/issues
9
- Author-email: hexDAG Team <team@hexdag.ai>
10
- License: MIT
9
+ Author-email: hexDAG Team <developers@omniviser.ai>
10
+ License: Apache-2.0
11
11
  Keywords: adapter,azure,etl,hexdag,mysql,plugins,storage
12
12
  Classifier: Development Status :: 4 - Beta
13
13
  Classifier: Intended Audience :: Developers
14
- Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
@@ -62,7 +62,7 @@ spec:
62
62
 
63
63
  ```python
64
64
  from hexdag_plugins.azure import AzureOpenAIAdapter
65
- from hexdag.core.ports.llm import Message
65
+ from hexdag.kernel.ports.llm import Message
66
66
 
67
67
  # Create adapter (API key auto-resolved from AZURE_OPENAI_API_KEY)
68
68
  adapter = AzureOpenAIAdapter(
@@ -1,10 +1,10 @@
1
1
  [project]
2
2
  name = "hexdag-plugins"
3
- version = "0.1.0"
3
+ version = "0.2.0.dev3"
4
4
  description = "Official plugins for hexDAG framework - Azure, MySQL, ETL, and storage adapters"
5
5
  readme = "README.md"
6
- license = { text = "MIT" }
7
- authors = [{ name = "hexDAG Team", email = "team@hexdag.ai" }]
6
+ license = { text = "Apache-2.0" }
7
+ authors = [{ name = "hexDAG Team", email = "developers@omniviser.ai" }]
8
8
  requires-python = ">=3.12"
9
9
  keywords = [
10
10
  "hexdag",
@@ -18,7 +18,7 @@ keywords = [
18
18
  classifiers = [
19
19
  "Development Status :: 4 - Beta",
20
20
  "Intended Audience :: Developers",
21
- "License :: OSI Approved :: MIT License",
21
+ "License :: OSI Approved :: Apache Software License",
22
22
  "Programming Language :: Python :: 3",
23
23
  "Programming Language :: Python :: 3.12",
24
24
  "Topic :: Software Development :: Libraries :: Python Modules",
@@ -109,8 +109,8 @@ health = await storage.ahealth_check()
109
109
  ### Ports
110
110
 
111
111
  **In hexDAG Core:**
112
- - `DatabasePort` - SQL database operations
113
- - `FileStoragePort` - File storage operations
112
+ - `Database` - SQL database operations
113
+ - `FileStorage` - File storage operations
114
114
 
115
115
  **In hexdag-storage:**
116
116
  - `VectorStorePort` - Specialized for vector similarity search
@@ -119,7 +119,7 @@ health = await storage.ahealth_check()
119
119
 
120
120
  ```
121
121
  hexdag_plugins/storage/
122
- ├── sql/ # DatabasePort implementations
122
+ ├── sql/ # Database implementations
123
123
  │ ├── postgresql.py
124
124
  │ ├── mysql.py
125
125
  │ └── sqlite.py
@@ -129,7 +129,7 @@ hexdag_plugins/storage/
129
129
  │ ├── chromadb.py # ChromaDB
130
130
  │ └── in_memory.py # In-memory (testing)
131
131
 
132
- └── file/ # FileStoragePort implementations
132
+ └── file/ # FileStorage implementations
133
133
  └── local.py # Local filesystem
134
134
  ```
135
135