Skip to content

Commit f1f83f8

Browse files
feat(api): api update
1 parent 7c889d7 commit f1f83f8

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 17
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-487768dc3d7c3ae3c331ed808e08673395dc6fa675eec7ba8daf59b7f4d85882.yml
3-
openapi_spec_hash: 1deeff6ac1a5c95e1c4cf70dbb063a78
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-2c4683b6cf3c31fe903d6b314823be4440c5f1c3db00545bca9534a816179fed.yml
3+
openapi_spec_hash: 4fad55cf0c3fc26500f4030edf31b64d
44
config_hash: eca7e3cb24b18c605dd1bc936da8ef3e

src/groq/types/chat/chat_completion_assistant_message_param.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ class ChatCompletionAssistantMessageParam(TypedDict, total=False):
5656
reasoning: Optional[str]
5757
"""
5858
The reasoning output by the assistant if reasoning_format was set to 'parsed'.
59-
This field is only useable with qwen3 models.
59+
This field is supported on
60+
[models that support reasoning](https://console.groq.com/docs/reasoning).
6061
"""
6162

6263
tool_calls: Iterable[ChatCompletionMessageToolCallParam]

src/groq/types/chat/chat_completion_message.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,9 @@ class ChatCompletionMessage(BaseModel):
268268
reasoning: Optional[str] = None
269269
"""The model's reasoning for a response.
270270
271-
Only available for reasoning models when requests parameter reasoning_format has
272-
value `parsed.
271+
Only available for
272+
[models that support reasoning](https://console.groq.com/docs/reasoning) when
273+
request parameter reasoning_format has value `parsed`.
273274
"""
274275

275276
tool_calls: Optional[List[ChatCompletionMessageToolCall]] = None

0 commit comments

Comments
 (0)