@@ -186,6 +186,7 @@ def validate(
186
186
netlist : Netlist ,
187
187
statements : StatementDictionary ,
188
188
mapping : typing .Optional [typing .Dict [str , typing .Optional [Computation ]]] = OMIT ,
189
+ use_ideal_component_models : typing .Optional [bool ] = OMIT ,
189
190
request_options : typing .Optional [RequestOptions ] = None ,
190
191
) -> ValidateNetlistResponse :
191
192
"""
@@ -199,6 +200,8 @@ def validate(
199
200
200
201
mapping : typing.Optional[typing.Dict[str, typing.Optional[Computation]]]
201
202
203
+ use_ideal_component_models : typing.Optional[bool]
204
+
202
205
request_options : typing.Optional[RequestOptions]
203
206
Request-specific configuration.
204
207
@@ -232,6 +235,7 @@ def validate(
232
235
"mapping" : convert_and_respect_annotation_metadata (
233
236
object_ = mapping , annotation = typing .Dict [str , typing .Optional [Computation ]], direction = "write"
234
237
),
238
+ "use_ideal_component_models" : use_ideal_component_models ,
235
239
},
236
240
headers = {
237
241
"content-type" : "application/json" ,
@@ -971,7 +975,7 @@ def get_optimizable_parameters(
971
975
)
972
976
"""
973
977
_response = self ._client_wrapper .httpx_client .request (
974
- "pic/circuit/optimizable-parameters/get " ,
978
+ "pic/circuit/optimizable-parameters" ,
975
979
method = "POST" ,
976
980
json = {
977
981
"netlist" : convert_and_respect_annotation_metadata (
@@ -1177,6 +1181,7 @@ async def validate(
1177
1181
netlist : Netlist ,
1178
1182
statements : StatementDictionary ,
1179
1183
mapping : typing .Optional [typing .Dict [str , typing .Optional [Computation ]]] = OMIT ,
1184
+ use_ideal_component_models : typing .Optional [bool ] = OMIT ,
1180
1185
request_options : typing .Optional [RequestOptions ] = None ,
1181
1186
) -> ValidateNetlistResponse :
1182
1187
"""
@@ -1190,6 +1195,8 @@ async def validate(
1190
1195
1191
1196
mapping : typing.Optional[typing.Dict[str, typing.Optional[Computation]]]
1192
1197
1198
+ use_ideal_component_models : typing.Optional[bool]
1199
+
1193
1200
request_options : typing.Optional[RequestOptions]
1194
1201
Request-specific configuration.
1195
1202
@@ -1231,6 +1238,7 @@ async def main() -> None:
1231
1238
"mapping" : convert_and_respect_annotation_metadata (
1232
1239
object_ = mapping , annotation = typing .Dict [str , typing .Optional [Computation ]], direction = "write"
1233
1240
),
1241
+ "use_ideal_component_models" : use_ideal_component_models ,
1234
1242
},
1235
1243
headers = {
1236
1244
"content-type" : "application/json" ,
@@ -2042,7 +2050,7 @@ async def main() -> None:
2042
2050
asyncio.run(main())
2043
2051
"""
2044
2052
_response = await self ._client_wrapper .httpx_client .request (
2045
- "pic/circuit/optimizable-parameters/get " ,
2053
+ "pic/circuit/optimizable-parameters" ,
2046
2054
method = "POST" ,
2047
2055
json = {
2048
2056
"netlist" : convert_and_respect_annotation_metadata (
0 commit comments