@@ -75,7 +75,6 @@ def chat_stream(
7575 logprobs : typing .Optional [bool ] = OMIT ,
7676 tool_choice : typing .Optional [V2ChatStreamRequestToolChoice ] = OMIT ,
7777 thinking : typing .Optional [Thinking ] = OMIT ,
78- raw_prompting : typing .Optional [bool ] = OMIT ,
7978 request_options : typing .Optional [RequestOptions ] = None ,
8079 ) -> typing .Iterator [HttpResponse [typing .Iterator [V2ChatStreamResponse ]]]:
8180 """
@@ -168,12 +167,6 @@ def chat_stream(
168167
169168 thinking : typing.Optional[Thinking]
170169
171- raw_prompting : typing.Optional[bool]
172- When enabled, the user's prompt will be sent to the model without
173- any pre-processing.
174-
175- Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
176-
177170 request_options : typing.Optional[RequestOptions]
178171 Request-specific configuration.
179172
@@ -217,7 +210,6 @@ def chat_stream(
217210 "thinking" : convert_and_respect_annotation_metadata (
218211 object_ = thinking , annotation = Thinking , direction = "write"
219212 ),
220- "raw_prompting" : raw_prompting ,
221213 "stream" : True ,
222214 },
223215 headers = {
@@ -413,7 +405,6 @@ def chat(
413405 logprobs : typing .Optional [bool ] = OMIT ,
414406 tool_choice : typing .Optional [V2ChatRequestToolChoice ] = OMIT ,
415407 thinking : typing .Optional [Thinking ] = OMIT ,
416- raw_prompting : typing .Optional [bool ] = OMIT ,
417408 request_options : typing .Optional [RequestOptions ] = None ,
418409 ) -> HttpResponse [V2ChatResponse ]:
419410 """
@@ -506,12 +497,6 @@ def chat(
506497
507498 thinking : typing.Optional[Thinking]
508499
509- raw_prompting : typing.Optional[bool]
510- When enabled, the user's prompt will be sent to the model without
511- any pre-processing.
512-
513- Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
514-
515500 request_options : typing.Optional[RequestOptions]
516501 Request-specific configuration.
517502
@@ -555,7 +540,6 @@ def chat(
555540 "thinking" : convert_and_respect_annotation_metadata (
556541 object_ = thinking , annotation = Thinking , direction = "write"
557542 ),
558- "raw_prompting" : raw_prompting ,
559543 "stream" : False ,
560544 },
561545 headers = {
@@ -1187,7 +1171,6 @@ async def chat_stream(
11871171 logprobs : typing .Optional [bool ] = OMIT ,
11881172 tool_choice : typing .Optional [V2ChatStreamRequestToolChoice ] = OMIT ,
11891173 thinking : typing .Optional [Thinking ] = OMIT ,
1190- raw_prompting : typing .Optional [bool ] = OMIT ,
11911174 request_options : typing .Optional [RequestOptions ] = None ,
11921175 ) -> typing .AsyncIterator [AsyncHttpResponse [typing .AsyncIterator [V2ChatStreamResponse ]]]:
11931176 """
@@ -1280,12 +1263,6 @@ async def chat_stream(
12801263
12811264 thinking : typing.Optional[Thinking]
12821265
1283- raw_prompting : typing.Optional[bool]
1284- When enabled, the user's prompt will be sent to the model without
1285- any pre-processing.
1286-
1287- Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
1288-
12891266 request_options : typing.Optional[RequestOptions]
12901267 Request-specific configuration.
12911268
@@ -1329,7 +1306,6 @@ async def chat_stream(
13291306 "thinking" : convert_and_respect_annotation_metadata (
13301307 object_ = thinking , annotation = Thinking , direction = "write"
13311308 ),
1332- "raw_prompting" : raw_prompting ,
13331309 "stream" : True ,
13341310 },
13351311 headers = {
@@ -1525,7 +1501,6 @@ async def chat(
15251501 logprobs : typing .Optional [bool ] = OMIT ,
15261502 tool_choice : typing .Optional [V2ChatRequestToolChoice ] = OMIT ,
15271503 thinking : typing .Optional [Thinking ] = OMIT ,
1528- raw_prompting : typing .Optional [bool ] = OMIT ,
15291504 request_options : typing .Optional [RequestOptions ] = None ,
15301505 ) -> AsyncHttpResponse [V2ChatResponse ]:
15311506 """
@@ -1618,12 +1593,6 @@ async def chat(
16181593
16191594 thinking : typing.Optional[Thinking]
16201595
1621- raw_prompting : typing.Optional[bool]
1622- When enabled, the user's prompt will be sent to the model without
1623- any pre-processing.
1624-
1625- Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
1626-
16271596 request_options : typing.Optional[RequestOptions]
16281597 Request-specific configuration.
16291598
@@ -1667,7 +1636,6 @@ async def chat(
16671636 "thinking" : convert_and_respect_annotation_metadata (
16681637 object_ = thinking , annotation = Thinking , direction = "write"
16691638 ),
1670- "raw_prompting" : raw_prompting ,
16711639 "stream" : False ,
16721640 },
16731641 headers = {
0 commit comments