File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ The SDK now actively blocks Python `NaN` and `Infinity` values from being serial
3131
3232---
3333
34- ## What's New in SDK v2.0.0 ?
34+ ## What's New in SDK v2.0.3 ?
3535
3636The V2.0 architecture has been rewritten for production stability:
3737* ** Resilient Transport:** Built-in connection pooling and full-jitter retry backoff.
Original file line number Diff line number Diff line change 11from .client .sync import IntentClient , ClaimResponse
22from .worker .runtime import WorkerRuntime
3- from .exceptions import (
4- IntentBusError ,
5- IntentBusAuthError ,
6- IntentBusProtocolError ,
7- IntentBusRateLimitError ,
8- IntentBusNetworkError
9- )
10- from .constants import SERVER_API_VERSION
3+ from .models .intent import ClaimedIntent , IntentStatus , IntentResult
114from .version import __version__
125
136__all__ = [
14- 'IntentClient' ,
15- 'WorkerRuntime' ,
16- 'ClaimResponse' ,
17- 'IntentBusError' ,
18- 'IntentBusAuthError' ,
19- 'IntentBusProtocolError' ,
20- 'IntentBusRateLimitError' ,
21- 'IntentBusNetworkError' ,
22- 'SERVER_API_VERSION' ,
23- '__version__'
7+ "IntentClient" ,
8+ "ClaimResponse" ,
9+ "WorkerRuntime" ,
10+ "ClaimedIntent" ,
11+ "IntentStatus" ,
12+ "IntentResult" ,
13+ "__version__" ,
2414]
Original file line number Diff line number Diff line change 1- __version__ = '2.0.2 '
1+ __version__ = '2.0.3 '
You can’t perform that action at this time.
0 commit comments