更新:2026年3月
stream = client.chat.completions.create(model='gpt-4o', messages=[...], stream=True); for chunk in stream: print(chunk.choices[0].delta.content or '')
https://www.holysheep.ai/api/v1