/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";
import { remap as remap$ } from "../../lib/primitives.js";
import { safeParse } from "../../lib/schemas.js";
import { ClosedEnum } from "../../types/enums.js";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import {
  ToolConfiguration,
  ToolConfiguration$inboundSchema,
  ToolConfiguration$Outbound,
  ToolConfiguration$outboundSchema,
} from "./toolconfiguration.js";

export const CodeInterpreterToolType = {
  CodeInterpreter: "code_interpreter",
} as const;
export type CodeInterpreterToolType = ClosedEnum<
  typeof CodeInterpreterToolType
>;

export type CodeInterpreterTool = {
  toolConfiguration?: ToolConfiguration | null | undefined;
  type?: CodeInterpreterToolType | undefined;
};

/** @internal */
export const CodeInterpreterToolType$inboundSchema: z.ZodNativeEnum<
  typeof CodeInterpreterToolType
> = z.nativeEnum(CodeInterpreterToolType);
/** @internal */
export const CodeInterpreterToolType$outboundSchema: z.ZodNativeEnum<
  typeof CodeInterpreterToolType
> = CodeInterpreterToolType$inboundSchema;

/** @internal */
export const CodeInterpreterTool$inboundSchema: z.ZodType<
  CodeInterpreterTool,
  z.ZodTypeDef,
  unknown
> = z.object({
  tool_configuration: z.nullable(ToolConfiguration$inboundSchema).optional(),
  type: CodeInterpreterToolType$inboundSchema.default("code_interpreter"),
}).transform((v) => {
  return remap$(v, {
    "tool_configuration": "toolConfiguration",
  });
});
/** @internal */
export type CodeInterpreterTool$Outbound = {
  tool_configuration?: ToolConfiguration$Outbound | null | undefined;
  type: string;
};

/** @internal */
export const CodeInterpreterTool$outboundSchema: z.ZodType<
  CodeInterpreterTool$Outbound,
  z.ZodTypeDef,
  CodeInterpreterTool
> = z.object({
  toolConfiguration: z.nullable(ToolConfiguration$outboundSchema).optional(),
  type: CodeInterpreterToolType$outboundSchema.default("code_interpreter"),
}).transform((v) => {
  return remap$(v, {
    toolConfiguration: "tool_configuration",
  });
});

export function codeInterpreterToolToJSON(
  codeInterpreterTool: CodeInterpreterTool,
): string {
  return JSON.stringify(
    CodeInterpreterTool$outboundSchema.parse(codeInterpreterTool),
  );
}
export function codeInterpreterToolFromJSON(
  jsonString: string,
): SafeParseResult<CodeInterpreterTool, SDKValidationError> {
  return safeParse(
    jsonString,
    (x) => CodeInterpreterTool$inboundSchema.parse(JSON.parse(x)),
    `Failed to parse 'CodeInterpreterTool' from JSON`,
  );
}
