plato-sdk-v2 2.7.5__py3-none-any.whl → 2.7.7__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.
@@ -1,4 +1,4 @@
1
- """Plato API SDK - v0.46.0"""
1
+ """Plato API SDK - v0.47.0"""
2
2
 
3
3
  from . import api, errors, models
4
4
  from .client import AsyncClient, Client
@@ -1,20 +1,22 @@
1
1
  """API version module."""
2
2
 
3
- from . import admin.cache
4
- from . import agents
5
- from . import artifacts
6
- from . import chronos
7
- from . import chronos_packages
8
- from . import cluster
9
- from . import jobs
10
- from . import networks
11
- from . import pypi
12
- from . import releases
13
- from . import sessions
14
- from . import user
3
+ from . import (
4
+ admin,
5
+ agents,
6
+ artifacts,
7
+ chronos,
8
+ chronos_packages,
9
+ cluster,
10
+ jobs,
11
+ networks,
12
+ pypi,
13
+ releases,
14
+ sessions,
15
+ user,
16
+ )
15
17
 
16
18
  __all__ = [
17
- "admin.cache",
19
+ "admin",
18
20
  "agents",
19
21
  "artifacts",
20
22
  "chronos",
@@ -26,4 +28,4 @@ __all__ = [
26
28
  "releases",
27
29
  "sessions",
28
30
  "user",
29
- ]
31
+ ]
@@ -1,3 +1,7 @@
1
1
  """API version module."""
2
2
 
3
- __all__ = []
3
+ from . import cache
4
+
5
+ __all__ = [
6
+ "cache",
7
+ ]
@@ -1,11 +1,11 @@
1
1
  # generated by datamodel-codegen:
2
- # filename: tmpio7emwyr.json
3
- # timestamp: 2026-01-29T20:21:27+00:00
2
+ # filename: tmpy5rfux2_.json
3
+ # timestamp: 2026-01-29T20:47:53+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
7
  from enum import Enum
8
- from typing import Annotated, Any, Dict, List, Literal
8
+ from typing import Annotated, Any, Literal
9
9
 
10
10
  from pydantic import AwareDatetime, BaseModel, ConfigDict, Field, RootModel
11
11
 
plato/cli/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Plato CLI package."""
2
+
3
+ from plato.cli.main import app, cli, main
4
+
5
+ __all__ = ["app", "main", "cli"]