@@ -2926,32 +2926,32 @@ def __init__(self, runs: Runs) -> None:
2926
2926
2927
2927
self .create = ( # pyright: ignore[reportDeprecated]
2928
2928
_legacy_response .to_raw_response_wrapper (
2929
- runs .create # pyright: ignore[reportDeprecated],
2929
+ runs .create , # pyright: ignore[reportDeprecated],
2930
2930
)
2931
2931
)
2932
2932
self .retrieve = ( # pyright: ignore[reportDeprecated]
2933
2933
_legacy_response .to_raw_response_wrapper (
2934
- runs .retrieve # pyright: ignore[reportDeprecated],
2934
+ runs .retrieve , # pyright: ignore[reportDeprecated],
2935
2935
)
2936
2936
)
2937
2937
self .update = ( # pyright: ignore[reportDeprecated]
2938
2938
_legacy_response .to_raw_response_wrapper (
2939
- runs .update # pyright: ignore[reportDeprecated],
2939
+ runs .update , # pyright: ignore[reportDeprecated],
2940
2940
)
2941
2941
)
2942
2942
self .list = ( # pyright: ignore[reportDeprecated]
2943
2943
_legacy_response .to_raw_response_wrapper (
2944
- runs .list # pyright: ignore[reportDeprecated],
2944
+ runs .list , # pyright: ignore[reportDeprecated],
2945
2945
)
2946
2946
)
2947
2947
self .cancel = ( # pyright: ignore[reportDeprecated]
2948
2948
_legacy_response .to_raw_response_wrapper (
2949
- runs .cancel # pyright: ignore[reportDeprecated],
2949
+ runs .cancel , # pyright: ignore[reportDeprecated],
2950
2950
)
2951
2951
)
2952
2952
self .submit_tool_outputs = ( # pyright: ignore[reportDeprecated]
2953
2953
_legacy_response .to_raw_response_wrapper (
2954
- runs .submit_tool_outputs # pyright: ignore[reportDeprecated],
2954
+ runs .submit_tool_outputs , # pyright: ignore[reportDeprecated],
2955
2955
)
2956
2956
)
2957
2957
@@ -2966,32 +2966,32 @@ def __init__(self, runs: AsyncRuns) -> None:
2966
2966
2967
2967
self .create = ( # pyright: ignore[reportDeprecated]
2968
2968
_legacy_response .async_to_raw_response_wrapper (
2969
- runs .create # pyright: ignore[reportDeprecated],
2969
+ runs .create , # pyright: ignore[reportDeprecated],
2970
2970
)
2971
2971
)
2972
2972
self .retrieve = ( # pyright: ignore[reportDeprecated]
2973
2973
_legacy_response .async_to_raw_response_wrapper (
2974
- runs .retrieve # pyright: ignore[reportDeprecated],
2974
+ runs .retrieve , # pyright: ignore[reportDeprecated],
2975
2975
)
2976
2976
)
2977
2977
self .update = ( # pyright: ignore[reportDeprecated]
2978
2978
_legacy_response .async_to_raw_response_wrapper (
2979
- runs .update # pyright: ignore[reportDeprecated],
2979
+ runs .update , # pyright: ignore[reportDeprecated],
2980
2980
)
2981
2981
)
2982
2982
self .list = ( # pyright: ignore[reportDeprecated]
2983
2983
_legacy_response .async_to_raw_response_wrapper (
2984
- runs .list # pyright: ignore[reportDeprecated],
2984
+ runs .list , # pyright: ignore[reportDeprecated],
2985
2985
)
2986
2986
)
2987
2987
self .cancel = ( # pyright: ignore[reportDeprecated]
2988
2988
_legacy_response .async_to_raw_response_wrapper (
2989
- runs .cancel # pyright: ignore[reportDeprecated],
2989
+ runs .cancel , # pyright: ignore[reportDeprecated],
2990
2990
)
2991
2991
)
2992
2992
self .submit_tool_outputs = ( # pyright: ignore[reportDeprecated]
2993
2993
_legacy_response .async_to_raw_response_wrapper (
2994
- runs .submit_tool_outputs # pyright: ignore[reportDeprecated],
2994
+ runs .submit_tool_outputs , # pyright: ignore[reportDeprecated],
2995
2995
)
2996
2996
)
2997
2997
@@ -3006,32 +3006,32 @@ def __init__(self, runs: Runs) -> None:
3006
3006
3007
3007
self .create = ( # pyright: ignore[reportDeprecated]
3008
3008
to_streamed_response_wrapper (
3009
- runs .create # pyright: ignore[reportDeprecated],
3009
+ runs .create , # pyright: ignore[reportDeprecated],
3010
3010
)
3011
3011
)
3012
3012
self .retrieve = ( # pyright: ignore[reportDeprecated]
3013
3013
to_streamed_response_wrapper (
3014
- runs .retrieve # pyright: ignore[reportDeprecated],
3014
+ runs .retrieve , # pyright: ignore[reportDeprecated],
3015
3015
)
3016
3016
)
3017
3017
self .update = ( # pyright: ignore[reportDeprecated]
3018
3018
to_streamed_response_wrapper (
3019
- runs .update # pyright: ignore[reportDeprecated],
3019
+ runs .update , # pyright: ignore[reportDeprecated],
3020
3020
)
3021
3021
)
3022
3022
self .list = ( # pyright: ignore[reportDeprecated]
3023
3023
to_streamed_response_wrapper (
3024
- runs .list # pyright: ignore[reportDeprecated],
3024
+ runs .list , # pyright: ignore[reportDeprecated],
3025
3025
)
3026
3026
)
3027
3027
self .cancel = ( # pyright: ignore[reportDeprecated]
3028
3028
to_streamed_response_wrapper (
3029
- runs .cancel # pyright: ignore[reportDeprecated],
3029
+ runs .cancel , # pyright: ignore[reportDeprecated],
3030
3030
)
3031
3031
)
3032
3032
self .submit_tool_outputs = ( # pyright: ignore[reportDeprecated]
3033
3033
to_streamed_response_wrapper (
3034
- runs .submit_tool_outputs # pyright: ignore[reportDeprecated],
3034
+ runs .submit_tool_outputs , # pyright: ignore[reportDeprecated],
3035
3035
)
3036
3036
)
3037
3037
@@ -3046,32 +3046,32 @@ def __init__(self, runs: AsyncRuns) -> None:
3046
3046
3047
3047
self .create = ( # pyright: ignore[reportDeprecated]
3048
3048
async_to_streamed_response_wrapper (
3049
- runs .create # pyright: ignore[reportDeprecated],
3049
+ runs .create , # pyright: ignore[reportDeprecated],
3050
3050
)
3051
3051
)
3052
3052
self .retrieve = ( # pyright: ignore[reportDeprecated]
3053
3053
async_to_streamed_response_wrapper (
3054
- runs .retrieve # pyright: ignore[reportDeprecated],
3054
+ runs .retrieve , # pyright: ignore[reportDeprecated],
3055
3055
)
3056
3056
)
3057
3057
self .update = ( # pyright: ignore[reportDeprecated]
3058
3058
async_to_streamed_response_wrapper (
3059
- runs .update # pyright: ignore[reportDeprecated],
3059
+ runs .update , # pyright: ignore[reportDeprecated],
3060
3060
)
3061
3061
)
3062
3062
self .list = ( # pyright: ignore[reportDeprecated]
3063
3063
async_to_streamed_response_wrapper (
3064
- runs .list # pyright: ignore[reportDeprecated],
3064
+ runs .list , # pyright: ignore[reportDeprecated],
3065
3065
)
3066
3066
)
3067
3067
self .cancel = ( # pyright: ignore[reportDeprecated]
3068
3068
async_to_streamed_response_wrapper (
3069
- runs .cancel # pyright: ignore[reportDeprecated],
3069
+ runs .cancel , # pyright: ignore[reportDeprecated],
3070
3070
)
3071
3071
)
3072
3072
self .submit_tool_outputs = ( # pyright: ignore[reportDeprecated]
3073
3073
async_to_streamed_response_wrapper (
3074
- runs .submit_tool_outputs # pyright: ignore[reportDeprecated],
3074
+ runs .submit_tool_outputs , # pyright: ignore[reportDeprecated],
3075
3075
)
3076
3076
)
3077
3077
0 commit comments