修改为东南天坐标系

This commit is contained in:
2026-01-20 09:49:52 +08:00
parent 9538757047
commit 333fad40ac
7201 changed files with 1030888 additions and 85410 deletions

View File

@@ -74,9 +74,10 @@ class Speech(SyncAPIResource):
One of the available [TTS models](https://platform.openai.com/docs/models#tts):
`tts-1`, `tts-1-hd`, `gpt-4o-mini-tts`, or `gpt-4o-mini-tts-2025-12-15`.
voice: The voice to use when generating the audio. Supported voices are `alloy`, `ash`,
`ballad`, `coral`, `echo`, `fable`, `onyx`, `nova`, `sage`, `shimmer`, and
`verse`. Previews of the voices are available in the
voice: The voice to use when generating the audio. Supported built-in voices are
`alloy`, `ash`, `ballad`, `coral`, `echo`, `fable`, `onyx`, `nova`, `sage`,
`shimmer`, `verse`, `marin`, and `cedar`. Previews of the voices are available
in the
[Text to speech guide](https://platform.openai.com/docs/guides/text-to-speech#voice-options).
instructions: Control the voice of your generated audio with additional instructions. Does not
@@ -170,9 +171,10 @@ class AsyncSpeech(AsyncAPIResource):
One of the available [TTS models](https://platform.openai.com/docs/models#tts):
`tts-1`, `tts-1-hd`, `gpt-4o-mini-tts`, or `gpt-4o-mini-tts-2025-12-15`.
voice: The voice to use when generating the audio. Supported voices are `alloy`, `ash`,
`ballad`, `coral`, `echo`, `fable`, `onyx`, `nova`, `sage`, `shimmer`, and
`verse`. Previews of the voices are available in the
voice: The voice to use when generating the audio. Supported built-in voices are
`alloy`, `ash`, `ballad`, `coral`, `echo`, `fable`, `onyx`, `nova`, `sage`,
`shimmer`, `verse`, `marin`, and `cedar`. Previews of the voices are available
in the
[Text to speech guide](https://platform.openai.com/docs/guides/text-to-speech#voice-options).
instructions: Control the voice of your generated audio with additional instructions. Does not

View File

@@ -146,7 +146,8 @@ class Images(SyncAPIResource):
"""Creates an edited or extended image given one or more source images and a
prompt.
This endpoint only supports `gpt-image-1` and `dall-e-2`.
This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`,
and `gpt-image-1-mini`) and `dall-e-2`.
Args:
image: The image(s) to edit. Must be a supported image file or an array of images.
@@ -260,7 +261,8 @@ class Images(SyncAPIResource):
"""Creates an edited or extended image given one or more source images and a
prompt.
This endpoint only supports `gpt-image-1` and `dall-e-2`.
This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`,
and `gpt-image-1-mini`) and `dall-e-2`.
Args:
image: The image(s) to edit. Must be a supported image file or an array of images.
@@ -374,7 +376,8 @@ class Images(SyncAPIResource):
"""Creates an edited or extended image given one or more source images and a
prompt.
This endpoint only supports `gpt-image-1` and `dall-e-2`.
This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`,
and `gpt-image-1-mini`) and `dall-e-2`.
Args:
image: The image(s) to edit. Must be a supported image file or an array of images.
@@ -1039,7 +1042,8 @@ class AsyncImages(AsyncAPIResource):
"""Creates an edited or extended image given one or more source images and a
prompt.
This endpoint only supports `gpt-image-1` and `dall-e-2`.
This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`,
and `gpt-image-1-mini`) and `dall-e-2`.
Args:
image: The image(s) to edit. Must be a supported image file or an array of images.
@@ -1153,7 +1157,8 @@ class AsyncImages(AsyncAPIResource):
"""Creates an edited or extended image given one or more source images and a
prompt.
This endpoint only supports `gpt-image-1` and `dall-e-2`.
This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`,
and `gpt-image-1-mini`) and `dall-e-2`.
Args:
image: The image(s) to edit. Must be a supported image file or an array of images.
@@ -1267,7 +1272,8 @@ class AsyncImages(AsyncAPIResource):
"""Creates an edited or extended image given one or more source images and a
prompt.
This endpoint only supports `gpt-image-1` and `dall-e-2`.
This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`,
and `gpt-image-1-mini`) and `dall-e-2`.
Args:
image: The image(s) to edit. Must be a supported image file or an array of images.

View File

@@ -102,9 +102,7 @@ class InputTokens(SyncAPIResource):
- [Text inputs and outputs](https://platform.openai.com/docs/guides/text)
- [Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs)
tool_choice: How the model should select which tool (or tools) to use when generating a
response. See the `tools` parameter to see how to specify which tools the model
can call.
tool_choice: Controls which tool the model should use, if any.
tools: An array of tools the model may call while generating a response. You can
specify which tool to use by setting the `tool_choice` parameter.
@@ -227,9 +225,7 @@ class AsyncInputTokens(AsyncAPIResource):
- [Text inputs and outputs](https://platform.openai.com/docs/guides/text)
- [Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs)
tool_choice: How the model should select which tool (or tools) to use when generating a
response. See the `tools` parameter to see how to specify which tools the model
can call.
tool_choice: Controls which tool the model should use, if any.
tools: An array of tools the model may call while generating a response. You can
specify which tool to use by setting the `tool_choice` parameter.