vectorizer-sdk 1.0.0__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.
- utils/__init__.py +39 -0
- utils/http_client.py +145 -0
- utils/transport.py +108 -0
- utils/umicp_client.py +174 -0
- utils/validation.py +163 -0
- vectorizer_sdk-1.0.0.dist-info/METADATA +304 -0
- vectorizer_sdk-1.0.0.dist-info/RECORD +11 -0
- vectorizer_sdk-1.0.0.dist-info/WHEEL +5 -0
- vectorizer_sdk-1.0.0.dist-info/entry_points.txt +2 -0
- vectorizer_sdk-1.0.0.dist-info/licenses/LICENSE +21 -0
- vectorizer_sdk-1.0.0.dist-info/top_level.txt +1 -0
utils/__init__.py
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Utils package for the Hive Vectorizer SDK.
|
|
3
|
+
|
|
4
|
+
This package contains utility functions for validation, HTTP client, and other common operations.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .validation import (
|
|
8
|
+
validate_non_empty_string,
|
|
9
|
+
validate_positive_number,
|
|
10
|
+
validate_non_negative_number,
|
|
11
|
+
validate_number_range,
|
|
12
|
+
validate_number_array,
|
|
13
|
+
validate_boolean
|
|
14
|
+
)
|
|
15
|
+
from .http_client import HTTPClient
|
|
16
|
+
from .transport import TransportFactory, TransportProtocol, parse_connection_string
|
|
17
|
+
|
|
18
|
+
try:
|
|
19
|
+
from .umicp_client import UMICPClient
|
|
20
|
+
UMICP_AVAILABLE = True
|
|
21
|
+
except ImportError:
|
|
22
|
+
UMICPClient = None
|
|
23
|
+
UMICP_AVAILABLE = False
|
|
24
|
+
|
|
25
|
+
__all__ = [
|
|
26
|
+
'validate_non_empty_string',
|
|
27
|
+
'validate_positive_number',
|
|
28
|
+
'validate_non_negative_number',
|
|
29
|
+
'validate_number_range',
|
|
30
|
+
'validate_number_array',
|
|
31
|
+
'validate_boolean',
|
|
32
|
+
'HTTPClient',
|
|
33
|
+
'TransportFactory',
|
|
34
|
+
'TransportProtocol',
|
|
35
|
+
'parse_connection_string',
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
if UMICP_AVAILABLE:
|
|
39
|
+
__all__.append('UMICPClient')
|
utils/http_client.py
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"""
|
|
2
|
+
HTTP client utility for making API requests using aiohttp.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from typing import Optional, Dict, Any
|
|
6
|
+
import aiohttp
|
|
7
|
+
import asyncio
|
|
8
|
+
import logging
|
|
9
|
+
|
|
10
|
+
try:
|
|
11
|
+
from ..exceptions import (
|
|
12
|
+
NetworkError,
|
|
13
|
+
ServerError,
|
|
14
|
+
AuthenticationError,
|
|
15
|
+
)
|
|
16
|
+
except ImportError:
|
|
17
|
+
from exceptions import (
|
|
18
|
+
NetworkError,
|
|
19
|
+
ServerError,
|
|
20
|
+
AuthenticationError,
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
logger = logging.getLogger(__name__)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class HTTPClient:
|
|
27
|
+
"""HTTP transport client."""
|
|
28
|
+
|
|
29
|
+
def __init__(
|
|
30
|
+
self,
|
|
31
|
+
base_url: str = "http://localhost:15002",
|
|
32
|
+
api_key: Optional[str] = None,
|
|
33
|
+
timeout: int = 30,
|
|
34
|
+
max_retries: int = 3
|
|
35
|
+
):
|
|
36
|
+
"""
|
|
37
|
+
Initialize HTTP client.
|
|
38
|
+
|
|
39
|
+
Args:
|
|
40
|
+
base_url: Base URL for HTTP API
|
|
41
|
+
api_key: API key for authentication
|
|
42
|
+
timeout: Request timeout in seconds
|
|
43
|
+
max_retries: Maximum number of retry attempts
|
|
44
|
+
"""
|
|
45
|
+
self.base_url = base_url.rstrip('/')
|
|
46
|
+
self.api_key = api_key
|
|
47
|
+
self.timeout = timeout
|
|
48
|
+
self.max_retries = max_retries
|
|
49
|
+
self._session: Optional[aiohttp.ClientSession] = None
|
|
50
|
+
|
|
51
|
+
async def _ensure_session(self):
|
|
52
|
+
"""Ensure aiohttp session is created."""
|
|
53
|
+
if self._session is None or self._session.closed:
|
|
54
|
+
headers = {"Content-Type": "application/json"}
|
|
55
|
+
if self.api_key:
|
|
56
|
+
headers["Authorization"] = f"Bearer {self.api_key}"
|
|
57
|
+
|
|
58
|
+
timeout_config = aiohttp.ClientTimeout(total=self.timeout)
|
|
59
|
+
self._session = aiohttp.ClientSession(
|
|
60
|
+
headers=headers,
|
|
61
|
+
timeout=timeout_config
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
async def close(self):
|
|
65
|
+
"""Close the HTTP session."""
|
|
66
|
+
if self._session and not self._session.closed:
|
|
67
|
+
await self._session.close()
|
|
68
|
+
self._session = None
|
|
69
|
+
|
|
70
|
+
async def request(
|
|
71
|
+
self,
|
|
72
|
+
method: str,
|
|
73
|
+
path: str,
|
|
74
|
+
data: Optional[Dict[str, Any]] = None
|
|
75
|
+
) -> Any:
|
|
76
|
+
"""
|
|
77
|
+
Make an HTTP request.
|
|
78
|
+
|
|
79
|
+
Args:
|
|
80
|
+
method: HTTP method
|
|
81
|
+
path: API endpoint path
|
|
82
|
+
data: Request data
|
|
83
|
+
|
|
84
|
+
Returns:
|
|
85
|
+
Response data
|
|
86
|
+
"""
|
|
87
|
+
await self._ensure_session()
|
|
88
|
+
|
|
89
|
+
url = f"{self.base_url}{path}"
|
|
90
|
+
|
|
91
|
+
try:
|
|
92
|
+
async with self._session.request(
|
|
93
|
+
method,
|
|
94
|
+
url,
|
|
95
|
+
json=data if data else None
|
|
96
|
+
) as response:
|
|
97
|
+
if response.status >= 400:
|
|
98
|
+
error_text = await response.text()
|
|
99
|
+
raise self._handle_error(response.status, error_text)
|
|
100
|
+
|
|
101
|
+
content_type = response.headers.get('Content-Type', '')
|
|
102
|
+
if 'application/json' in content_type:
|
|
103
|
+
return await response.json()
|
|
104
|
+
return await response.text()
|
|
105
|
+
|
|
106
|
+
except (ServerError, AuthenticationError):
|
|
107
|
+
raise
|
|
108
|
+
except aiohttp.ClientError as e:
|
|
109
|
+
raise NetworkError(f"HTTP request failed: {e}")
|
|
110
|
+
except asyncio.TimeoutError:
|
|
111
|
+
raise NetworkError("Request timeout")
|
|
112
|
+
except Exception as e:
|
|
113
|
+
raise NetworkError(f"Unknown error: {e}")
|
|
114
|
+
|
|
115
|
+
async def get(self, path: str) -> Any:
|
|
116
|
+
"""Make a GET request."""
|
|
117
|
+
return await self.request("GET", path)
|
|
118
|
+
|
|
119
|
+
async def post(self, path: str, data: Optional[Dict[str, Any]] = None) -> Any:
|
|
120
|
+
"""Make a POST request."""
|
|
121
|
+
return await self.request("POST", path, data)
|
|
122
|
+
|
|
123
|
+
async def put(self, path: str, data: Optional[Dict[str, Any]] = None) -> Any:
|
|
124
|
+
"""Make a PUT request."""
|
|
125
|
+
return await self.request("PUT", path, data)
|
|
126
|
+
|
|
127
|
+
async def delete(self, path: str) -> Any:
|
|
128
|
+
"""Make a DELETE request."""
|
|
129
|
+
return await self.request("DELETE", path)
|
|
130
|
+
|
|
131
|
+
def _handle_error(self, status: int, error_text: str) -> Exception:
|
|
132
|
+
"""Handle HTTP errors and convert to appropriate exceptions."""
|
|
133
|
+
message = f"HTTP {status}: {error_text}"
|
|
134
|
+
|
|
135
|
+
if status == 401:
|
|
136
|
+
return AuthenticationError(message)
|
|
137
|
+
elif status == 403:
|
|
138
|
+
return AuthenticationError("Access forbidden")
|
|
139
|
+
elif status == 404:
|
|
140
|
+
return ServerError("Resource not found")
|
|
141
|
+
elif status in (429, 500, 502, 503, 504):
|
|
142
|
+
return ServerError(message)
|
|
143
|
+
else:
|
|
144
|
+
return ServerError(message)
|
|
145
|
+
|
utils/transport.py
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Transport abstraction layer for Vectorizer client.
|
|
3
|
+
|
|
4
|
+
Supports multiple transport protocols:
|
|
5
|
+
- HTTP/HTTPS (default)
|
|
6
|
+
- UMICP (Universal Messaging and Inter-process Communication Protocol)
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from typing import Optional, Dict, Any, Protocol as TypingProtocol
|
|
10
|
+
from enum import Enum
|
|
11
|
+
from urllib.parse import urlparse
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class TransportProtocol(str, Enum):
|
|
15
|
+
"""Transport protocol enum."""
|
|
16
|
+
HTTP = "http"
|
|
17
|
+
UMICP = "umicp"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class Transport(TypingProtocol):
|
|
21
|
+
"""Transport protocol interface."""
|
|
22
|
+
|
|
23
|
+
async def get(self, path: str) -> Any:
|
|
24
|
+
"""Make a GET request."""
|
|
25
|
+
...
|
|
26
|
+
|
|
27
|
+
async def post(self, path: str, data: Optional[Dict[str, Any]] = None) -> Any:
|
|
28
|
+
"""Make a POST request."""
|
|
29
|
+
...
|
|
30
|
+
|
|
31
|
+
async def put(self, path: str, data: Optional[Dict[str, Any]] = None) -> Any:
|
|
32
|
+
"""Make a PUT request."""
|
|
33
|
+
...
|
|
34
|
+
|
|
35
|
+
async def delete(self, path: str) -> Any:
|
|
36
|
+
"""Make a DELETE request."""
|
|
37
|
+
...
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class TransportFactory:
|
|
41
|
+
"""Factory for creating transport clients."""
|
|
42
|
+
|
|
43
|
+
@staticmethod
|
|
44
|
+
def create(protocol: TransportProtocol, config: Dict[str, Any]) -> Transport:
|
|
45
|
+
"""
|
|
46
|
+
Create a transport client based on protocol.
|
|
47
|
+
|
|
48
|
+
Args:
|
|
49
|
+
protocol: Transport protocol to use
|
|
50
|
+
config: Configuration dict
|
|
51
|
+
|
|
52
|
+
Returns:
|
|
53
|
+
Transport client instance
|
|
54
|
+
"""
|
|
55
|
+
if protocol == TransportProtocol.HTTP:
|
|
56
|
+
# Import here to avoid circular dependency
|
|
57
|
+
from .http_client import HTTPClient
|
|
58
|
+
return HTTPClient(**config)
|
|
59
|
+
|
|
60
|
+
elif protocol == TransportProtocol.UMICP:
|
|
61
|
+
from .umicp_client import UMICPClient
|
|
62
|
+
return UMICPClient(**config)
|
|
63
|
+
|
|
64
|
+
else:
|
|
65
|
+
raise ValueError(f"Unsupported protocol: {protocol}")
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
def parse_connection_string(connection_string: str, api_key: Optional[str] = None) -> tuple:
|
|
69
|
+
"""
|
|
70
|
+
Parse a connection string into protocol and configuration.
|
|
71
|
+
|
|
72
|
+
Examples:
|
|
73
|
+
- "http://localhost:15002" -> HTTP transport
|
|
74
|
+
- "https://api.example.com" -> HTTPS transport
|
|
75
|
+
- "umicp://localhost:15003" -> UMICP transport
|
|
76
|
+
|
|
77
|
+
Args:
|
|
78
|
+
connection_string: Connection URI
|
|
79
|
+
api_key: Optional API key
|
|
80
|
+
|
|
81
|
+
Returns:
|
|
82
|
+
Tuple of (protocol, config_dict)
|
|
83
|
+
"""
|
|
84
|
+
parsed = urlparse(connection_string)
|
|
85
|
+
|
|
86
|
+
if parsed.scheme in ("http", "https"):
|
|
87
|
+
return (
|
|
88
|
+
TransportProtocol.HTTP,
|
|
89
|
+
{
|
|
90
|
+
"base_url": f"{parsed.scheme}://{parsed.netloc}",
|
|
91
|
+
"api_key": api_key,
|
|
92
|
+
}
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
elif parsed.scheme == "umicp":
|
|
96
|
+
port = parsed.port or 15003
|
|
97
|
+
return (
|
|
98
|
+
TransportProtocol.UMICP,
|
|
99
|
+
{
|
|
100
|
+
"host": parsed.hostname,
|
|
101
|
+
"port": port,
|
|
102
|
+
"api_key": api_key,
|
|
103
|
+
}
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
else:
|
|
107
|
+
raise ValueError(f"Unsupported protocol in connection string: {parsed.scheme}")
|
|
108
|
+
|
utils/umicp_client.py
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
"""
|
|
2
|
+
UMICP client utility using the official umicp-python package.
|
|
3
|
+
|
|
4
|
+
Wrapper around UMICP client for Vectorizer API requests.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from typing import Optional, Dict, Any
|
|
8
|
+
import json
|
|
9
|
+
import asyncio
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from umicp import UMICPClient as BaseUMICPClient, Envelope, Priority
|
|
13
|
+
UMICP_AVAILABLE = True
|
|
14
|
+
except ImportError:
|
|
15
|
+
UMICP_AVAILABLE = False
|
|
16
|
+
BaseUMICPClient = None
|
|
17
|
+
Envelope = None
|
|
18
|
+
Priority = None
|
|
19
|
+
|
|
20
|
+
try:
|
|
21
|
+
from ..exceptions import NetworkError, ServerError, AuthenticationError
|
|
22
|
+
except ImportError:
|
|
23
|
+
from exceptions import NetworkError, ServerError, AuthenticationError
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class UMICPClient:
|
|
27
|
+
"""UMICP transport client for Vectorizer."""
|
|
28
|
+
|
|
29
|
+
def __init__(
|
|
30
|
+
self,
|
|
31
|
+
host: str = "localhost",
|
|
32
|
+
port: int = 15003,
|
|
33
|
+
api_key: Optional[str] = None,
|
|
34
|
+
timeout: int = 30
|
|
35
|
+
):
|
|
36
|
+
"""
|
|
37
|
+
Initialize UMICP client.
|
|
38
|
+
|
|
39
|
+
Args:
|
|
40
|
+
host: Server hostname
|
|
41
|
+
port: Server port
|
|
42
|
+
api_key: API key for authentication
|
|
43
|
+
timeout: Request timeout in seconds
|
|
44
|
+
"""
|
|
45
|
+
if not UMICP_AVAILABLE:
|
|
46
|
+
raise ImportError(
|
|
47
|
+
"umicp-python is not installed. "
|
|
48
|
+
"Install it with: pip install umicp-python"
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
self.host = host
|
|
52
|
+
self.port = port
|
|
53
|
+
self.api_key = api_key
|
|
54
|
+
self.timeout = timeout
|
|
55
|
+
self._client: Optional[BaseUMICPClient] = None
|
|
56
|
+
self._connected = False
|
|
57
|
+
|
|
58
|
+
async def connect(self) -> None:
|
|
59
|
+
"""Connect to UMICP server."""
|
|
60
|
+
if self._connected and self._client:
|
|
61
|
+
return
|
|
62
|
+
|
|
63
|
+
try:
|
|
64
|
+
self._client = BaseUMICPClient(
|
|
65
|
+
host=self.host,
|
|
66
|
+
port=self.port,
|
|
67
|
+
timeout=self.timeout
|
|
68
|
+
)
|
|
69
|
+
await self._client.connect()
|
|
70
|
+
self._connected = True
|
|
71
|
+
except Exception as e:
|
|
72
|
+
raise NetworkError(f"Failed to connect to UMICP server: {e}")
|
|
73
|
+
|
|
74
|
+
async def disconnect(self) -> None:
|
|
75
|
+
"""Disconnect from UMICP server."""
|
|
76
|
+
if self._client:
|
|
77
|
+
await self._client.close()
|
|
78
|
+
self._connected = False
|
|
79
|
+
self._client = None
|
|
80
|
+
|
|
81
|
+
def is_connected(self) -> bool:
|
|
82
|
+
"""Check if connected to UMICP server."""
|
|
83
|
+
return self._connected and self._client is not None
|
|
84
|
+
|
|
85
|
+
async def request(
|
|
86
|
+
self,
|
|
87
|
+
method: str,
|
|
88
|
+
path: str,
|
|
89
|
+
data: Optional[Dict[str, Any]] = None
|
|
90
|
+
) -> Any:
|
|
91
|
+
"""
|
|
92
|
+
Make a request via UMICP.
|
|
93
|
+
|
|
94
|
+
Args:
|
|
95
|
+
method: HTTP method
|
|
96
|
+
path: API endpoint path
|
|
97
|
+
data: Request data
|
|
98
|
+
|
|
99
|
+
Returns:
|
|
100
|
+
Response data
|
|
101
|
+
"""
|
|
102
|
+
if not self.is_connected():
|
|
103
|
+
await self.connect()
|
|
104
|
+
|
|
105
|
+
if not self._client:
|
|
106
|
+
raise NetworkError("UMICP client not initialized")
|
|
107
|
+
|
|
108
|
+
payload = {
|
|
109
|
+
"method": method,
|
|
110
|
+
"path": path,
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if data:
|
|
114
|
+
payload["body"] = data
|
|
115
|
+
|
|
116
|
+
if self.api_key:
|
|
117
|
+
payload["authorization"] = f"Bearer {self.api_key}"
|
|
118
|
+
|
|
119
|
+
try:
|
|
120
|
+
envelope = Envelope(
|
|
121
|
+
from_addr="vectorizer-client",
|
|
122
|
+
to_addr="vectorizer-server",
|
|
123
|
+
content_type="application/json",
|
|
124
|
+
payload=json.dumps(payload)
|
|
125
|
+
)
|
|
126
|
+
|
|
127
|
+
envelope.set_priority(Priority.NORMAL)
|
|
128
|
+
|
|
129
|
+
response = await self._client.send(envelope)
|
|
130
|
+
response_data = json.loads(response.get_payload())
|
|
131
|
+
|
|
132
|
+
# Handle HTTP-like status codes
|
|
133
|
+
if isinstance(response_data, dict) and "statusCode" in response_data:
|
|
134
|
+
if response_data["statusCode"] >= 400:
|
|
135
|
+
raise self._handle_error(response_data)
|
|
136
|
+
|
|
137
|
+
return response_data
|
|
138
|
+
except (ServerError, AuthenticationError):
|
|
139
|
+
raise
|
|
140
|
+
except Exception as e:
|
|
141
|
+
raise NetworkError(f"UMICP request failed: {e}")
|
|
142
|
+
|
|
143
|
+
async def get(self, path: str) -> Any:
|
|
144
|
+
"""Make a GET request."""
|
|
145
|
+
return await self.request("GET", path)
|
|
146
|
+
|
|
147
|
+
async def post(self, path: str, data: Optional[Dict[str, Any]] = None) -> Any:
|
|
148
|
+
"""Make a POST request."""
|
|
149
|
+
return await self.request("POST", path, data)
|
|
150
|
+
|
|
151
|
+
async def put(self, path: str, data: Optional[Dict[str, Any]] = None) -> Any:
|
|
152
|
+
"""Make a PUT request."""
|
|
153
|
+
return await self.request("PUT", path, data)
|
|
154
|
+
|
|
155
|
+
async def delete(self, path: str) -> Any:
|
|
156
|
+
"""Make a DELETE request."""
|
|
157
|
+
return await self.request("DELETE", path)
|
|
158
|
+
|
|
159
|
+
def _handle_error(self, response_data: Dict[str, Any]) -> Exception:
|
|
160
|
+
"""Handle UMICP errors and convert to appropriate exceptions."""
|
|
161
|
+
message = response_data.get("message", f"UMICP Error {response_data.get('statusCode', 'Unknown')}")
|
|
162
|
+
status_code = response_data.get("statusCode", 500)
|
|
163
|
+
|
|
164
|
+
if status_code == 401:
|
|
165
|
+
return AuthenticationError(message)
|
|
166
|
+
elif status_code == 403:
|
|
167
|
+
return AuthenticationError("Access forbidden")
|
|
168
|
+
elif status_code == 404:
|
|
169
|
+
return ServerError("Resource not found")
|
|
170
|
+
elif status_code in (429, 500, 502, 503, 504):
|
|
171
|
+
return ServerError(message)
|
|
172
|
+
else:
|
|
173
|
+
return ServerError(message)
|
|
174
|
+
|
utils/validation.py
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Validation utilities for the Hive Vectorizer SDK.
|
|
3
|
+
|
|
4
|
+
This module provides validation functions for various data types and constraints,
|
|
5
|
+
mirroring the validation functionality of the JavaScript/TypeScript SDKs.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import math
|
|
9
|
+
from typing import Any, List, Union
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def validate_non_empty_string(value: Any) -> str:
|
|
13
|
+
"""
|
|
14
|
+
Validate that a value is a non-empty string.
|
|
15
|
+
|
|
16
|
+
Args:
|
|
17
|
+
value: The value to validate
|
|
18
|
+
|
|
19
|
+
Returns:
|
|
20
|
+
The validated string
|
|
21
|
+
|
|
22
|
+
Raises:
|
|
23
|
+
ValueError: If the value is not a string or is empty/whitespace-only
|
|
24
|
+
"""
|
|
25
|
+
if not isinstance(value, str):
|
|
26
|
+
raise ValueError("Value must be a string")
|
|
27
|
+
|
|
28
|
+
if not value.strip():
|
|
29
|
+
raise ValueError("String cannot be empty or whitespace-only")
|
|
30
|
+
|
|
31
|
+
return value
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def validate_positive_number(value: Any) -> Union[int, float]:
|
|
35
|
+
"""
|
|
36
|
+
Validate that a value is a positive number.
|
|
37
|
+
|
|
38
|
+
Args:
|
|
39
|
+
value: The value to validate
|
|
40
|
+
|
|
41
|
+
Returns:
|
|
42
|
+
The validated number
|
|
43
|
+
|
|
44
|
+
Raises:
|
|
45
|
+
ValueError: If the value is not a number or is not positive
|
|
46
|
+
"""
|
|
47
|
+
if not isinstance(value, (int, float)):
|
|
48
|
+
raise ValueError("Value must be a number")
|
|
49
|
+
|
|
50
|
+
if math.isnan(value) or math.isinf(value):
|
|
51
|
+
raise ValueError("Value cannot be NaN or Infinity")
|
|
52
|
+
|
|
53
|
+
if value <= 0:
|
|
54
|
+
raise ValueError("Value must be positive")
|
|
55
|
+
|
|
56
|
+
return value
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
def validate_non_negative_number(value: Any) -> Union[int, float]:
|
|
60
|
+
"""
|
|
61
|
+
Validate that a value is a non-negative number.
|
|
62
|
+
|
|
63
|
+
Args:
|
|
64
|
+
value: The value to validate
|
|
65
|
+
|
|
66
|
+
Returns:
|
|
67
|
+
The validated number
|
|
68
|
+
|
|
69
|
+
Raises:
|
|
70
|
+
ValueError: If the value is not a number or is negative
|
|
71
|
+
"""
|
|
72
|
+
if not isinstance(value, (int, float)):
|
|
73
|
+
raise ValueError("Value must be a number")
|
|
74
|
+
|
|
75
|
+
if math.isnan(value) or math.isinf(value):
|
|
76
|
+
raise ValueError("Value cannot be NaN or Infinity")
|
|
77
|
+
|
|
78
|
+
if value < 0:
|
|
79
|
+
raise ValueError("Value must be non-negative")
|
|
80
|
+
|
|
81
|
+
return value
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def validate_number_range(value: Any, min_val: Union[int, float] = None, max_val: Union[int, float] = None) -> Union[int, float]:
|
|
85
|
+
"""
|
|
86
|
+
Validate that a value is a number within a specified range.
|
|
87
|
+
|
|
88
|
+
Args:
|
|
89
|
+
value: The value to validate
|
|
90
|
+
min_val: Minimum allowed value (optional)
|
|
91
|
+
max_val: Maximum allowed value (optional)
|
|
92
|
+
|
|
93
|
+
Returns:
|
|
94
|
+
The validated number
|
|
95
|
+
|
|
96
|
+
Raises:
|
|
97
|
+
ValueError: If the value is not a number or outside the allowed range
|
|
98
|
+
"""
|
|
99
|
+
if not isinstance(value, (int, float)):
|
|
100
|
+
raise ValueError("Value must be a number")
|
|
101
|
+
|
|
102
|
+
if math.isnan(value) or math.isinf(value):
|
|
103
|
+
raise ValueError("Value cannot be NaN or Infinity")
|
|
104
|
+
|
|
105
|
+
if min_val is not None and value < min_val:
|
|
106
|
+
raise ValueError(f"Value must be at least {min_val}")
|
|
107
|
+
|
|
108
|
+
if max_val is not None and value > max_val:
|
|
109
|
+
raise ValueError(f"Value must be at most {max_val}")
|
|
110
|
+
|
|
111
|
+
return value
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
def validate_number_array(value: Any) -> List[Union[int, float]]:
|
|
115
|
+
"""
|
|
116
|
+
Validate that a value is an array of finite numbers.
|
|
117
|
+
|
|
118
|
+
Args:
|
|
119
|
+
value: The value to validate
|
|
120
|
+
|
|
121
|
+
Returns:
|
|
122
|
+
The validated array of numbers
|
|
123
|
+
|
|
124
|
+
Raises:
|
|
125
|
+
ValueError: If the value is not an array or contains invalid numbers
|
|
126
|
+
"""
|
|
127
|
+
if not isinstance(value, list):
|
|
128
|
+
raise ValueError("Value must be an array")
|
|
129
|
+
|
|
130
|
+
if not value:
|
|
131
|
+
raise ValueError("Array cannot be empty")
|
|
132
|
+
|
|
133
|
+
for i, item in enumerate(value):
|
|
134
|
+
if not isinstance(item, (int, float)):
|
|
135
|
+
raise ValueError(f"Array item at index {i} must be a number")
|
|
136
|
+
|
|
137
|
+
if math.isnan(item):
|
|
138
|
+
raise ValueError(f"Array item at index {i} cannot be NaN")
|
|
139
|
+
|
|
140
|
+
if math.isinf(item):
|
|
141
|
+
raise ValueError(f"Array item at index {i} cannot be Infinity")
|
|
142
|
+
|
|
143
|
+
return value
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
def validate_boolean(value: Any) -> bool:
|
|
147
|
+
"""
|
|
148
|
+
Validate that a value is a boolean.
|
|
149
|
+
|
|
150
|
+
Args:
|
|
151
|
+
value: The value to validate
|
|
152
|
+
|
|
153
|
+
Returns:
|
|
154
|
+
The validated boolean
|
|
155
|
+
|
|
156
|
+
Raises:
|
|
157
|
+
ValueError: If the value is not a boolean
|
|
158
|
+
"""
|
|
159
|
+
if not isinstance(value, bool):
|
|
160
|
+
raise ValueError("Value must be a boolean")
|
|
161
|
+
|
|
162
|
+
return value
|
|
163
|
+
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vectorizer_sdk
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Python SDK for Vectorizer - Semantic search and vector operations with UMICP protocol support
|
|
5
|
+
Author-email: HiveLLM Team <team@hivellm.org>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/hivellm/vectorizer
|
|
8
|
+
Project-URL: Documentation, https://github.com/hivellm/vectorizer/tree/main/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/hivellm/vectorizer
|
|
10
|
+
Project-URL: Issues, https://github.com/hivellm/vectorizer/issues
|
|
11
|
+
Keywords: vectorizer,semantic-search,embeddings,machine-learning,ai,search,vectors,similarity,hivellm,umicp
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
23
|
+
Classifier: Topic :: Text Processing :: Indexing
|
|
24
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
25
|
+
Requires-Python: >=3.8
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
License-File: LICENSE
|
|
28
|
+
Requires-Dist: aiohttp>=3.8.0
|
|
29
|
+
Requires-Dist: umicp-sdk>=0.3.2
|
|
30
|
+
Provides-Extra: dev
|
|
31
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
32
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
33
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
34
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
35
|
+
Requires-Dist: isort>=5.12.0; extra == "dev"
|
|
36
|
+
Requires-Dist: flake8>=6.0.0; extra == "dev"
|
|
37
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
38
|
+
Requires-Dist: pre-commit>=3.0.0; extra == "dev"
|
|
39
|
+
Provides-Extra: docs
|
|
40
|
+
Requires-Dist: sphinx>=6.0.0; extra == "docs"
|
|
41
|
+
Requires-Dist: sphinx-rtd-theme>=1.2.0; extra == "docs"
|
|
42
|
+
Requires-Dist: myst-parser>=1.0.0; extra == "docs"
|
|
43
|
+
Provides-Extra: test
|
|
44
|
+
Requires-Dist: pytest>=7.0.0; extra == "test"
|
|
45
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
|
|
46
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "test"
|
|
47
|
+
Requires-Dist: httpx>=0.24.0; extra == "test"
|
|
48
|
+
Dynamic: license-file
|
|
49
|
+
|
|
50
|
+
# Hive Vectorizer Python SDK
|
|
51
|
+
|
|
52
|
+
A comprehensive Python client library for the Hive Vectorizer service.
|
|
53
|
+
|
|
54
|
+
## Features
|
|
55
|
+
|
|
56
|
+
- **Multiple Transport Protocols**: HTTP/HTTPS and UMICP support
|
|
57
|
+
- **UMICP Protocol**: High-performance protocol using umicp-python package
|
|
58
|
+
- **Vector Operations**: Insert, search, and manage vectors
|
|
59
|
+
- **Collection Management**: Create, delete, and monitor collections
|
|
60
|
+
- **Semantic Search**: Find similar content using embeddings
|
|
61
|
+
- **Intelligent Search**: Advanced multi-query search with domain expansion
|
|
62
|
+
- **Contextual Search**: Context-aware search with metadata filtering
|
|
63
|
+
- **Multi-Collection Search**: Cross-collection search with intelligent aggregation
|
|
64
|
+
- **Batch Operations**: Efficient bulk operations
|
|
65
|
+
- **Error Handling**: Comprehensive exception handling
|
|
66
|
+
- **Async Support**: Full async/await support for high performance
|
|
67
|
+
- **Type Safety**: Full type hints and validation
|
|
68
|
+
|
|
69
|
+
## Installation
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
pip install hive-vectorizer
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Quick Start
|
|
76
|
+
|
|
77
|
+
```python
|
|
78
|
+
import asyncio
|
|
79
|
+
from vectorizer import VectorizerClient, Vector
|
|
80
|
+
|
|
81
|
+
async def main():
|
|
82
|
+
async with VectorizerClient() as client:
|
|
83
|
+
# Create a collection
|
|
84
|
+
await client.create_collection("my_collection", dimension=512)
|
|
85
|
+
|
|
86
|
+
# Generate embedding
|
|
87
|
+
embedding = await client.embed_text("Hello, world!")
|
|
88
|
+
|
|
89
|
+
# Create vector
|
|
90
|
+
vector = Vector(
|
|
91
|
+
id="doc1",
|
|
92
|
+
data=embedding,
|
|
93
|
+
metadata={"text": "Hello, world!"}
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
# Insert text
|
|
97
|
+
await client.insert_texts("my_collection", [{
|
|
98
|
+
"id": "doc1",
|
|
99
|
+
"text": "Hello, world!",
|
|
100
|
+
"metadata": {"source": "example"}
|
|
101
|
+
}])
|
|
102
|
+
|
|
103
|
+
# Search for similar vectors
|
|
104
|
+
results = await client.search_vectors(
|
|
105
|
+
collection="my_collection",
|
|
106
|
+
query="greeting",
|
|
107
|
+
limit=5
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
# Intelligent search with multi-query expansion
|
|
111
|
+
from models import IntelligentSearchRequest
|
|
112
|
+
intelligent_results = await client.intelligent_search(
|
|
113
|
+
IntelligentSearchRequest(
|
|
114
|
+
query="machine learning algorithms",
|
|
115
|
+
collections=["my_collection", "research"],
|
|
116
|
+
max_results=15,
|
|
117
|
+
domain_expansion=True,
|
|
118
|
+
technical_focus=True,
|
|
119
|
+
mmr_enabled=True,
|
|
120
|
+
mmr_lambda=0.7
|
|
121
|
+
)
|
|
122
|
+
)
|
|
123
|
+
|
|
124
|
+
# Semantic search with reranking
|
|
125
|
+
from models import SemanticSearchRequest
|
|
126
|
+
semantic_results = await client.semantic_search(
|
|
127
|
+
SemanticSearchRequest(
|
|
128
|
+
query="neural networks",
|
|
129
|
+
collection="my_collection",
|
|
130
|
+
max_results=10,
|
|
131
|
+
semantic_reranking=True,
|
|
132
|
+
similarity_threshold=0.6
|
|
133
|
+
)
|
|
134
|
+
)
|
|
135
|
+
|
|
136
|
+
# Contextual search with metadata filtering
|
|
137
|
+
from models import ContextualSearchRequest
|
|
138
|
+
contextual_results = await client.contextual_search(
|
|
139
|
+
ContextualSearchRequest(
|
|
140
|
+
query="deep learning",
|
|
141
|
+
collection="my_collection",
|
|
142
|
+
context_filters={"category": "AI", "year": 2023},
|
|
143
|
+
max_results=10,
|
|
144
|
+
context_weight=0.4
|
|
145
|
+
)
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
# Multi-collection search
|
|
149
|
+
from models import MultiCollectionSearchRequest
|
|
150
|
+
multi_results = await client.multi_collection_search(
|
|
151
|
+
MultiCollectionSearchRequest(
|
|
152
|
+
query="artificial intelligence",
|
|
153
|
+
collections=["my_collection", "research", "tutorials"],
|
|
154
|
+
max_per_collection=5,
|
|
155
|
+
max_total_results=20,
|
|
156
|
+
cross_collection_reranking=True
|
|
157
|
+
)
|
|
158
|
+
)
|
|
159
|
+
|
|
160
|
+
print(f"Found {len(results)} similar vectors")
|
|
161
|
+
|
|
162
|
+
asyncio.run(main())
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
## Configuration
|
|
166
|
+
|
|
167
|
+
### HTTP Configuration (Default)
|
|
168
|
+
|
|
169
|
+
```python
|
|
170
|
+
from vectorizer import VectorizerClient
|
|
171
|
+
|
|
172
|
+
# Default HTTP configuration
|
|
173
|
+
client = VectorizerClient(
|
|
174
|
+
base_url="http://localhost:15002",
|
|
175
|
+
api_key="your-api-key",
|
|
176
|
+
timeout=30
|
|
177
|
+
)
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
### UMICP Configuration (High Performance)
|
|
181
|
+
|
|
182
|
+
[UMICP (Universal Messaging and Inter-process Communication Protocol)](https://pypi.org/project/umicp-python/) provides significant performance benefits using the official umicp-python package.
|
|
183
|
+
|
|
184
|
+
#### Using Connection String
|
|
185
|
+
|
|
186
|
+
```python
|
|
187
|
+
from vectorizer import VectorizerClient
|
|
188
|
+
|
|
189
|
+
client = VectorizerClient(
|
|
190
|
+
connection_string="umicp://localhost:15003",
|
|
191
|
+
api_key="your-api-key"
|
|
192
|
+
)
|
|
193
|
+
|
|
194
|
+
print(f"Using protocol: {client.get_protocol()}") # Output: umicp
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
#### Using Explicit Configuration
|
|
198
|
+
|
|
199
|
+
```python
|
|
200
|
+
from vectorizer import VectorizerClient
|
|
201
|
+
|
|
202
|
+
client = VectorizerClient(
|
|
203
|
+
protocol="umicp",
|
|
204
|
+
api_key="your-api-key",
|
|
205
|
+
umicp={
|
|
206
|
+
"host": "localhost",
|
|
207
|
+
"port": 15003
|
|
208
|
+
},
|
|
209
|
+
timeout=60
|
|
210
|
+
)
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
#### When to Use UMICP
|
|
214
|
+
|
|
215
|
+
Use UMICP when:
|
|
216
|
+
- **Large Payloads**: Inserting or searching large batches of vectors
|
|
217
|
+
- **High Throughput**: Need maximum performance for production workloads
|
|
218
|
+
- **Low Latency**: Need minimal protocol overhead
|
|
219
|
+
|
|
220
|
+
Use HTTP when:
|
|
221
|
+
- **Development**: Quick testing and debugging
|
|
222
|
+
- **Firewall Restrictions**: Only HTTP/HTTPS allowed
|
|
223
|
+
- **Simple Deployments**: No need for custom protocol setup
|
|
224
|
+
|
|
225
|
+
#### Protocol Comparison
|
|
226
|
+
|
|
227
|
+
| Feature | HTTP/HTTPS | UMICP |
|
|
228
|
+
|---------|-----------|-------|
|
|
229
|
+
| Transport | aiohttp (standard HTTP) | umicp-python package |
|
|
230
|
+
| Performance | Standard | Optimized for large payloads |
|
|
231
|
+
| Latency | Standard | Lower overhead |
|
|
232
|
+
| Firewall | Widely supported | May require configuration |
|
|
233
|
+
| Installation | Default | Requires umicp-python |
|
|
234
|
+
|
|
235
|
+
#### Installing with UMICP Support
|
|
236
|
+
|
|
237
|
+
```bash
|
|
238
|
+
pip install hive-vectorizer umicp-python
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
## Testing
|
|
242
|
+
|
|
243
|
+
The SDK includes a comprehensive test suite with 73+ tests covering all functionality:
|
|
244
|
+
|
|
245
|
+
### Running Tests
|
|
246
|
+
|
|
247
|
+
```bash
|
|
248
|
+
# Run basic tests (recommended)
|
|
249
|
+
python3 test_simple.py
|
|
250
|
+
|
|
251
|
+
# Run comprehensive tests
|
|
252
|
+
python3 test_sdk_comprehensive.py
|
|
253
|
+
|
|
254
|
+
# Run all tests with detailed reporting
|
|
255
|
+
python3 run_tests.py
|
|
256
|
+
|
|
257
|
+
# Run specific test
|
|
258
|
+
python3 -m unittest test_simple.TestBasicFunctionality
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
### Test Coverage
|
|
262
|
+
|
|
263
|
+
- **Data Models**: 100% coverage (Vector, Collection, CollectionInfo, SearchResult)
|
|
264
|
+
- **Exceptions**: 100% coverage (all 12 custom exceptions)
|
|
265
|
+
- **Client Operations**: 95% coverage (all CRUD operations)
|
|
266
|
+
- **Edge Cases**: 100% coverage (Unicode, large vectors, special data types)
|
|
267
|
+
- **Validation**: Complete input validation testing
|
|
268
|
+
- **Error Handling**: Comprehensive exception testing
|
|
269
|
+
|
|
270
|
+
### Test Results
|
|
271
|
+
|
|
272
|
+
```
|
|
273
|
+
🧪 Basic Tests: ✅ 18/18 (100% success)
|
|
274
|
+
🧪 Comprehensive Tests: ⚠️ 53/55 (96% success)
|
|
275
|
+
🧪 Syntax Validation: ✅ 7/7 (100% success)
|
|
276
|
+
🧪 Import Validation: ✅ 5/5 (100% success)
|
|
277
|
+
|
|
278
|
+
📊 Overall Success Rate: 75%
|
|
279
|
+
⏱️ Total Execution Time: <0.4 seconds
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
### Test Categories
|
|
283
|
+
|
|
284
|
+
1. **Unit Tests**: Individual component testing
|
|
285
|
+
2. **Integration Tests**: Mock-based workflow testing
|
|
286
|
+
3. **Validation Tests**: Input validation and error handling
|
|
287
|
+
4. **Edge Case Tests**: Unicode, large data, special scenarios
|
|
288
|
+
5. **Syntax Tests**: Code compilation and import validation
|
|
289
|
+
|
|
290
|
+
## Documentation
|
|
291
|
+
|
|
292
|
+
- [Full Documentation](https://docs.cmmv-hive.org/vectorizer)
|
|
293
|
+
- [API Reference](https://docs.cmmv-hive.org/vectorizer/api)
|
|
294
|
+
- [Examples](examples.py)
|
|
295
|
+
- [Test Documentation](TESTES_RESUMO.md)
|
|
296
|
+
|
|
297
|
+
## License
|
|
298
|
+
|
|
299
|
+
MIT License - see LICENSE file for details.
|
|
300
|
+
|
|
301
|
+
## Support
|
|
302
|
+
|
|
303
|
+
- GitHub Issues: https://github.com/cmmv-hive/vectorizer/issues
|
|
304
|
+
- Email: team@hivellm.org
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
utils/__init__.py,sha256=JRgKOqRz3LL38p7UbtrdmLjS0KX4dLKXtfxLsybSb-s,1005
|
|
2
|
+
utils/http_client.py,sha256=u206uUPBOHYzZtkyaOXMQY8_qW7VMdtyjtqMSDpuBbU,4644
|
|
3
|
+
utils/transport.py,sha256=BOUVsPjIBTB8aa6O8a41VWsXPCmEfqQixzEFoXvs7tM,3109
|
|
4
|
+
utils/umicp_client.py,sha256=fCOQGDrIG22YJXuWqnn8yYBWWXLrI7-z0G189lg2stE,5585
|
|
5
|
+
utils/validation.py,sha256=YTesbx7csT6vD3zElRhvb-rjsn6O3tr4hlVS89BubKM,4289
|
|
6
|
+
vectorizer_sdk-1.0.0.dist-info/licenses/LICENSE,sha256=AU_2w25hAWjaCMyQy0VFPVRarptCZyIri5-CD3TZbUQ,1094
|
|
7
|
+
vectorizer_sdk-1.0.0.dist-info/METADATA,sha256=HW9kxQ1eYrW1KR64H8ORNkAT2SuCzQ3QAoeemWVRRhE,9723
|
|
8
|
+
vectorizer_sdk-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
+
vectorizer_sdk-1.0.0.dist-info/entry_points.txt,sha256=oKaUZ3DkSvDqN26w_zbh2fRGM0USyVTlfJQN4WHKw8A,44
|
|
10
|
+
vectorizer_sdk-1.0.0.dist-info/top_level.txt,sha256=BXdhaaHBJTl5WDScj-NdcpdW6F1g7hNN3YP0CLPxk-0,6
|
|
11
|
+
vectorizer_sdk-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 CMMV-Hive Team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
utils
|