@@ -301,6 +301,9 @@ def create(
301301 unsupported parameters in reasoning models,
302302 [refer to the reasoning guide](https://platform.openai.com/docs/guides/reasoning).
303303
304+ Returns a chat completion object, or a streamed sequence of chat completion
305+ chunk objects if the request is streamed.
306+
304307 Args:
305308 messages: A list of messages comprising the conversation so far. Depending on the
306309 [model](https://platform.openai.com/docs/models) you use, different message
@@ -603,6 +606,9 @@ def create(
603606 unsupported parameters in reasoning models,
604607 [refer to the reasoning guide](https://platform.openai.com/docs/guides/reasoning).
605608
609+ Returns a chat completion object, or a streamed sequence of chat completion
610+ chunk objects if the request is streamed.
611+
606612 Args:
607613 messages: A list of messages comprising the conversation so far. Depending on the
608614 [model](https://platform.openai.com/docs/models) you use, different message
@@ -905,6 +911,9 @@ def create(
905911 unsupported parameters in reasoning models,
906912 [refer to the reasoning guide](https://platform.openai.com/docs/guides/reasoning).
907913
914+ Returns a chat completion object, or a streamed sequence of chat completion
915+ chunk objects if the request is streamed.
916+
908917 Args:
909918 messages: A list of messages comprising the conversation so far. Depending on the
910919 [model](https://platform.openai.com/docs/models) you use, different message
@@ -1785,6 +1794,9 @@ async def create(
17851794 unsupported parameters in reasoning models,
17861795 [refer to the reasoning guide](https://platform.openai.com/docs/guides/reasoning).
17871796
1797+ Returns a chat completion object, or a streamed sequence of chat completion
1798+ chunk objects if the request is streamed.
1799+
17881800 Args:
17891801 messages: A list of messages comprising the conversation so far. Depending on the
17901802 [model](https://platform.openai.com/docs/models) you use, different message
@@ -2087,6 +2099,9 @@ async def create(
20872099 unsupported parameters in reasoning models,
20882100 [refer to the reasoning guide](https://platform.openai.com/docs/guides/reasoning).
20892101
2102+ Returns a chat completion object, or a streamed sequence of chat completion
2103+ chunk objects if the request is streamed.
2104+
20902105 Args:
20912106 messages: A list of messages comprising the conversation so far. Depending on the
20922107 [model](https://platform.openai.com/docs/models) you use, different message
@@ -2389,6 +2404,9 @@ async def create(
23892404 unsupported parameters in reasoning models,
23902405 [refer to the reasoning guide](https://platform.openai.com/docs/guides/reasoning).
23912406
2407+ Returns a chat completion object, or a streamed sequence of chat completion
2408+ chunk objects if the request is streamed.
2409+
23922410 Args:
23932411 messages: A list of messages comprising the conversation so far. Depending on the
23942412 [model](https://platform.openai.com/docs/models) you use, different message
0 commit comments