@@ -68,6 +68,7 @@ def test_streaming_response_add(self, client: Supermemory) -> None:
6868 def test_method_profile (self , client : Supermemory ) -> None :
6969 client_ = client .profile (
7070 container_tag = "containerTag" ,
71+ threshold = 0 ,
7172 )
7273 assert_matches_type (ProfileResponse , client_ , path = ["response" ])
7374
@@ -76,6 +77,7 @@ def test_method_profile(self, client: Supermemory) -> None:
7677 def test_method_profile_with_all_params (self , client : Supermemory ) -> None :
7778 client_ = client .profile (
7879 container_tag = "containerTag" ,
80+ threshold = 0 ,
7981 q = "q" ,
8082 )
8183 assert_matches_type (ProfileResponse , client_ , path = ["response" ])
@@ -85,6 +87,7 @@ def test_method_profile_with_all_params(self, client: Supermemory) -> None:
8587 def test_raw_response_profile (self , client : Supermemory ) -> None :
8688 response = client .with_raw_response .profile (
8789 container_tag = "containerTag" ,
90+ threshold = 0 ,
8891 )
8992
9093 assert response .is_closed is True
@@ -97,6 +100,7 @@ def test_raw_response_profile(self, client: Supermemory) -> None:
97100 def test_streaming_response_profile (self , client : Supermemory ) -> None :
98101 with client .with_streaming_response .profile (
99102 container_tag = "containerTag" ,
103+ threshold = 0 ,
100104 ) as response :
101105 assert not response .is_closed
102106 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -163,6 +167,7 @@ async def test_streaming_response_add(self, async_client: AsyncSupermemory) -> N
163167 async def test_method_profile (self , async_client : AsyncSupermemory ) -> None :
164168 client = await async_client .profile (
165169 container_tag = "containerTag" ,
170+ threshold = 0 ,
166171 )
167172 assert_matches_type (ProfileResponse , client , path = ["response" ])
168173
@@ -171,6 +176,7 @@ async def test_method_profile(self, async_client: AsyncSupermemory) -> None:
171176 async def test_method_profile_with_all_params (self , async_client : AsyncSupermemory ) -> None :
172177 client = await async_client .profile (
173178 container_tag = "containerTag" ,
179+ threshold = 0 ,
174180 q = "q" ,
175181 )
176182 assert_matches_type (ProfileResponse , client , path = ["response" ])
@@ -180,6 +186,7 @@ async def test_method_profile_with_all_params(self, async_client: AsyncSupermemo
180186 async def test_raw_response_profile (self , async_client : AsyncSupermemory ) -> None :
181187 response = await async_client .with_raw_response .profile (
182188 container_tag = "containerTag" ,
189+ threshold = 0 ,
183190 )
184191
185192 assert response .is_closed is True
@@ -192,6 +199,7 @@ async def test_raw_response_profile(self, async_client: AsyncSupermemory) -> Non
192199 async def test_streaming_response_profile (self , async_client : AsyncSupermemory ) -> None :
193200 async with async_client .with_streaming_response .profile (
194201 container_tag = "containerTag" ,
202+ threshold = 0 ,
195203 ) as response :
196204 assert not response .is_closed
197205 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
0 commit comments