wizelit-sdk 0.1.29__tar.gz → 0.1.30__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.
Files changed (25) hide show
  1. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/PKG-INFO +1 -1
  2. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/pyproject.toml +1 -1
  3. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/agent_wrapper/job.py +4 -4
  4. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/agent_wrapper/streaming.py +2 -2
  5. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/database.py +1 -1
  6. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/models/base.py +3 -2
  7. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/models/job.py +2 -2
  8. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/uv.lock +1 -1
  9. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/.editorconfig +0 -0
  10. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/.env.template +0 -0
  11. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/.gitignore +0 -0
  12. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/CHANGELOG.md +0 -0
  13. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/INITIALIZATION_INSTRUCTION.MD +0 -0
  14. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/Makefile +0 -0
  15. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/README.md +0 -0
  16. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/activate.sh +0 -0
  17. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/pyrightconfig.json +0 -0
  18. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/__init__.py +0 -0
  19. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/__init__.py +0 -0
  20. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/agent_wrapper/__init__.py +0 -0
  21. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/agent_wrapper/agent_wrapper.py +0 -0
  22. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/agent_wrapper/signature_validation.py +0 -0
  23. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/src/wizelit_sdk/models/__init__.py +0 -0
  24. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/tests/test_agent_wrapper_import.py +0 -0
  25. {wizelit_sdk-0.1.29 → wizelit_sdk-0.1.30}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wizelit-sdk
3
- Version: 0.1.29
3
+ Version: 0.1.30
4
4
  Summary: Wizelit Agent Wrapper - Internal utility package
5
5
  Author-email: Your Name <your.email@company.com>
6
6
  Requires-Python: >=3.10
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "wizelit-sdk"
7
- version = "0.1.29"
7
+ version = "0.1.30"
8
8
  description = "Wizelit Agent Wrapper - Internal utility package"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -6,7 +6,7 @@ import asyncio
6
6
  import uuid
7
7
  import time
8
8
  from datetime import datetime, UTC
9
- from typing import List, Optional, Awaitable, Any, TYPE_CHECKING
9
+ from typing import Optional, Awaitable, Any, TYPE_CHECKING
10
10
  from fastmcp import Context
11
11
 
12
12
  if TYPE_CHECKING:
@@ -19,7 +19,7 @@ class MemoryLogHandler(logging.Handler):
19
19
  Custom logging handler that stores log messages in a list.
20
20
  """
21
21
 
22
- def __init__(self, logs_list: List[str]):
22
+ def __init__(self, logs_list: list[str]):
23
23
  super().__init__()
24
24
  self.logs_list = logs_list
25
25
  self.setFormatter(logging.Formatter('%(message)s'))
@@ -156,7 +156,7 @@ class Job:
156
156
  self._ctx = ctx
157
157
  self._id = job_id or f"JOB-{str(uuid.uuid4())[:8]}"
158
158
  self._status = "running"
159
- self._logs: List[str] = []
159
+ self._logs: list[str] = []
160
160
  self._result: Optional[str] = None
161
161
  self._error: Optional[str] = None
162
162
  self._db_manager = db_manager
@@ -176,7 +176,7 @@ class Job:
176
176
  return self._logger
177
177
 
178
178
  @property
179
- def logs(self) -> List[str]:
179
+ def logs(self) -> list[str]:
180
180
  """List of log messages (timestamped strings)."""
181
181
  return self._logs
182
182
 
@@ -196,11 +196,11 @@ class LogStreamer:
196
196
  self._redis = None
197
197
  logger.info("Redis connection closed")
198
198
 
199
- async def __aenter__(self):
199
+ async def __aenter__(self) -> 'LogStreamer':
200
200
  """Async context manager entry."""
201
201
  await self._ensure_connected()
202
202
  return self
203
203
 
204
- async def __aexit__(self, exc_type, exc_val, exc_tb):
204
+ async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None:
205
205
  """Async context manager exit."""
206
206
  await self.close()
@@ -132,7 +132,7 @@ class DatabaseManager:
132
132
  finally:
133
133
  await session.close()
134
134
 
135
- async def close(self):
135
+ async def close(self) -> None:
136
136
  """Dispose of the engine and close all connections."""
137
137
  await self.engine.dispose()
138
138
  logger.info("Database connections closed")
@@ -3,6 +3,7 @@ from sqlalchemy import Column
3
3
  from sqlalchemy.dialects.postgresql import UUID
4
4
  import uuid
5
5
  from datetime import datetime
6
+ from typing import Dict, Any
6
7
 
7
8
  Base = declarative_base()
8
9
 
@@ -10,7 +11,7 @@ class TimestampMixin:
10
11
  """Mixin for models that need timestamp functionality."""
11
12
 
12
13
  @staticmethod
13
- def get_timestamp():
14
+ def get_timestamp() -> str:
14
15
  return datetime.utcnow().isoformat()
15
16
 
16
17
 
@@ -20,6 +21,6 @@ class BaseModel(Base):
20
21
 
21
22
  id = Column(UUID(as_uuid=True), primary_key=True, default=uuid.uuid4)
22
23
 
23
- def to_dict(self):
24
+ def to_dict(self) -> Dict[str, Any]:
24
25
  """Convert model to dictionary."""
25
26
  return {c.name: getattr(self, c.name) for c in self.__table__.columns}
@@ -41,7 +41,7 @@ class JobModel(BaseModel):
41
41
  Index('idx_job_created_at', 'created_at'),
42
42
  )
43
43
 
44
- def __repr__(self):
44
+ def __repr__(self) -> str:
45
45
  return f"<JobModel(id={self.id}, status={self.status})>"
46
46
 
47
47
 
@@ -68,5 +68,5 @@ class JobLogModel(BaseModel):
68
68
  Index('idx_job_log_job_id_timestamp', 'job_id', 'timestamp'),
69
69
  )
70
70
 
71
- def __repr__(self):
71
+ def __repr__(self) -> str:
72
72
  return f"<JobLogModel(id={self.id}, job_id={self.job_id}, level={self.level})>"
@@ -2050,7 +2050,7 @@ wheels = [
2050
2050
 
2051
2051
  [[package]]
2052
2052
  name = "wizelit-sdk"
2053
- version = "0.1.29"
2053
+ version = "0.1.30"
2054
2054
  source = { editable = "." }
2055
2055
  dependencies = [
2056
2056
  { name = "asyncpg" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes