@@ -42,6 +42,7 @@ def _get_kwargs(
4242 * ,
4343 attribute : str ,
4444 experiment_id : Union [Unset , str ] = UNSET ,
45+ include_preview : Union [Unset , bool ] = False ,
4546 limit : Union [Unset , int ] = UNSET ,
4647 lineage : Union [Unset , GetFloatSeriesValuesLineage ] = UNSET ,
4748 skip_to_step : Union [Unset , float ] = UNSET ,
@@ -52,6 +53,8 @@ def _get_kwargs(
5253
5354 params ["experimentId" ] = experiment_id
5455
56+ params ["includePreview" ] = include_preview
57+
5558 params ["limit" ] = limit
5659
5760 json_lineage : Union [Unset , str ] = UNSET
@@ -126,6 +129,7 @@ def sync_detailed(
126129 client : Union [AuthenticatedClient , Client ],
127130 attribute : str ,
128131 experiment_id : Union [Unset , str ] = UNSET ,
132+ include_preview : Union [Unset , bool ] = False ,
129133 limit : Union [Unset , int ] = UNSET ,
130134 lineage : Union [Unset , GetFloatSeriesValuesLineage ] = UNSET ,
131135 skip_to_step : Union [Unset , float ] = UNSET ,
@@ -135,6 +139,7 @@ def sync_detailed(
135139 Args:
136140 attribute (str):
137141 experiment_id (Union[Unset, str]):
142+ include_preview (Union[Unset, bool]): Default: False.
138143 limit (Union[Unset, int]):
139144 lineage (Union[Unset, GetFloatSeriesValuesLineage]):
140145 skip_to_step (Union[Unset, float]):
@@ -150,6 +155,7 @@ def sync_detailed(
150155 kwargs = _get_kwargs (
151156 attribute = attribute ,
152157 experiment_id = experiment_id ,
158+ include_preview = include_preview ,
153159 limit = limit ,
154160 lineage = lineage ,
155161 skip_to_step = skip_to_step ,
@@ -167,6 +173,7 @@ def sync(
167173 client : Union [AuthenticatedClient , Client ],
168174 attribute : str ,
169175 experiment_id : Union [Unset , str ] = UNSET ,
176+ include_preview : Union [Unset , bool ] = False ,
170177 limit : Union [Unset , int ] = UNSET ,
171178 lineage : Union [Unset , GetFloatSeriesValuesLineage ] = UNSET ,
172179 skip_to_step : Union [Unset , float ] = UNSET ,
@@ -176,6 +183,7 @@ def sync(
176183 Args:
177184 attribute (str):
178185 experiment_id (Union[Unset, str]):
186+ include_preview (Union[Unset, bool]): Default: False.
179187 limit (Union[Unset, int]):
180188 lineage (Union[Unset, GetFloatSeriesValuesLineage]):
181189 skip_to_step (Union[Unset, float]):
@@ -192,6 +200,7 @@ def sync(
192200 client = client ,
193201 attribute = attribute ,
194202 experiment_id = experiment_id ,
203+ include_preview = include_preview ,
195204 limit = limit ,
196205 lineage = lineage ,
197206 skip_to_step = skip_to_step ,
@@ -203,6 +212,7 @@ async def asyncio_detailed(
203212 client : Union [AuthenticatedClient , Client ],
204213 attribute : str ,
205214 experiment_id : Union [Unset , str ] = UNSET ,
215+ include_preview : Union [Unset , bool ] = False ,
206216 limit : Union [Unset , int ] = UNSET ,
207217 lineage : Union [Unset , GetFloatSeriesValuesLineage ] = UNSET ,
208218 skip_to_step : Union [Unset , float ] = UNSET ,
@@ -212,6 +222,7 @@ async def asyncio_detailed(
212222 Args:
213223 attribute (str):
214224 experiment_id (Union[Unset, str]):
225+ include_preview (Union[Unset, bool]): Default: False.
215226 limit (Union[Unset, int]):
216227 lineage (Union[Unset, GetFloatSeriesValuesLineage]):
217228 skip_to_step (Union[Unset, float]):
@@ -227,6 +238,7 @@ async def asyncio_detailed(
227238 kwargs = _get_kwargs (
228239 attribute = attribute ,
229240 experiment_id = experiment_id ,
241+ include_preview = include_preview ,
230242 limit = limit ,
231243 lineage = lineage ,
232244 skip_to_step = skip_to_step ,
@@ -242,6 +254,7 @@ async def asyncio(
242254 client : Union [AuthenticatedClient , Client ],
243255 attribute : str ,
244256 experiment_id : Union [Unset , str ] = UNSET ,
257+ include_preview : Union [Unset , bool ] = False ,
245258 limit : Union [Unset , int ] = UNSET ,
246259 lineage : Union [Unset , GetFloatSeriesValuesLineage ] = UNSET ,
247260 skip_to_step : Union [Unset , float ] = UNSET ,
@@ -251,6 +264,7 @@ async def asyncio(
251264 Args:
252265 attribute (str):
253266 experiment_id (Union[Unset, str]):
267+ include_preview (Union[Unset, bool]): Default: False.
254268 limit (Union[Unset, int]):
255269 lineage (Union[Unset, GetFloatSeriesValuesLineage]):
256270 skip_to_step (Union[Unset, float]):
@@ -268,6 +282,7 @@ async def asyncio(
268282 client = client ,
269283 attribute = attribute ,
270284 experiment_id = experiment_id ,
285+ include_preview = include_preview ,
271286 limit = limit ,
272287 lineage = lineage ,
273288 skip_to_step = skip_to_step ,
0 commit comments