ebiose-cloud-sdk 0.1.766.dev0__tar.gz → 0.1.849.dev0__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ebiose-cloud-sdk
3
- Version: 0.1.766.dev0
3
+ Version: 0.1.849.dev0
4
4
  Summary: Auto-generated Pydantic models for the Ebiose Cloud Backend API.
5
5
  Author: Ebiose
6
6
  Requires-Python: >=3.12
@@ -142,6 +142,7 @@ class EndCycleRequest(BaseModel):
142
142
  )
143
143
  best_agent_ids: list[str]
144
144
  outcome: str = Field(..., min_length=1)
145
+ total_cost: float | None = None
145
146
 
146
147
 
147
148
  class EventDetailsResponse(BaseModel):
@@ -174,6 +175,7 @@ class EvolutionCycleGlobalListItemDto(BaseModel):
174
175
  n_candidates: int | None = None
175
176
  started_at: AwareDatetime | None = None
176
177
  status: CycleStatus | None = None
178
+ total_cost: float | None = None
177
179
 
178
180
 
179
181
  class EvolutionCycleListItemDto(BaseModel):
@@ -185,6 +187,7 @@ class EvolutionCycleListItemDto(BaseModel):
185
187
  n_candidates: int | None = None
186
188
  started_at: AwareDatetime | None = None
187
189
  status: CycleStatus | None = None
190
+ total_cost: float | None = None
188
191
 
189
192
 
190
193
  class ForgeListItemDto(BaseModel):
@@ -245,6 +248,9 @@ class ListEventsResponse(BaseModel):
245
248
  extra="forbid",
246
249
  )
247
250
  items: list[EventSummaryResponse] | None = None
251
+ limit: int | None = None
252
+ offset: int | None = None
253
+ total: int | None = None
248
254
 
249
255
 
250
256
  class ListEvolutionCycleAgentsResponse(BaseModel):
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ebiose-cloud-sdk"
3
- version = "0.1.766.dev0"
3
+ version = "0.1.849.dev0"
4
4
  description = "Auto-generated Pydantic models for the Ebiose Cloud Backend API."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"