You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** A developer-provided per-request id that will be used to match outputs to inputs. Must be unique for each request in a batch. */
1086
-
#[serde(skip_serializing_if = "Option::is_none")]
1087
-
pub custom_id: Option<String>,
1092
+
pub custom_id: String,
1088
1093
/** The HTTP method to be used for the request. Currently only `POST` is supported. */
1089
-
#[serde(skip_serializing_if = "Option::is_none")]
1090
-
pub method: Option<BatchRequestInputMethod>,
1094
+
pub method: BatchRequestInputMethod,
1091
1095
/** The OpenAI API relative URL to be used for the request. Currently `/v1/chat/completions`, `/v1/embeddings`, and `/v1/completions` are supported. */
0 commit comments