@@ -1099,7 +1099,7 @@ pub struct BatchRequestInput {
10991099
11001100 /** The JSON body of the response */
11011101#[derive(Debug, PartialEq, Serialize, Deserialize)]
1102- pub struct BatchRequestOutputResponseBody(pub HashMap<String,String> );
1102+ pub struct BatchRequestOutputResponseBody(pub serde_json::Value );
11031103
11041104#[derive(Debug, PartialEq, Serialize, Deserialize)]
11051105pub struct BatchRequestOutputResponse {
@@ -2714,7 +2714,7 @@ The exact effect will vary per model, but values between -1 and 1 should
27142714decrease or increase likelihood of selection; values like -100 or 100
27152715should result in a ban or exclusive selection of the relevant token. */
27162716#[derive(Debug, PartialEq, Serialize, Deserialize)]
2717- pub struct CreateChatCompletionRequestObjectLogitBias(pub HashMap<String,String> );
2717+ pub struct CreateChatCompletionRequestObjectLogitBias(pub serde_json::Value );
27182718
27192719/** Configuration for a [Predicted Output](/docs/guides/predicted-outputs),
27202720which can greatly improve response times when large parts of the model
@@ -3082,7 +3082,7 @@ Accepts a JSON object that maps tokens (specified by their token ID in the GPT t
30823082
30833083As an example, you can pass `{"50256": -100}` to prevent the <|endoftext|> token from being generated. */
30843084#[derive(Debug, PartialEq, Serialize, Deserialize)]
3085- pub struct CreateCompletionRequestLogitBias(pub HashMap<String,String> );
3085+ pub struct CreateCompletionRequestLogitBias(pub serde_json::Value );
30863086
30873087#[derive(Debug, PartialEq, Serialize, Deserialize)]
30883088pub struct CreateCompletionRequest {
@@ -14651,7 +14651,7 @@ pub enum RunStepDeltaStepDetailsToolCallsFileSearchObjectType {
1465114651
1465214652 /** For now, this is always going to be an empty object. */
1465314653#[derive(Debug, PartialEq, Serialize, Deserialize)]
14654- pub struct RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch(pub HashMap<String,String> );
14654+ pub struct RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch(pub serde_json::Value );
1465514655
1465614656#[derive(Debug, PartialEq, Serialize, Deserialize)]
1465714657pub struct RunStepDeltaStepDetailsToolCallsFileSearchObject {
0 commit comments