/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 2224f41020d5 */ import * as z from "zod/v4"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ClassifierTrainingParameters, ClassifierTrainingParameters$inboundSchema, } from "./classifiertrainingparameters.js"; import { JobMetadata, JobMetadata$inboundSchema } from "./jobmetadata.js"; import { WandbIntegrationResult, WandbIntegrationResult$inboundSchema, } from "./wandbintegrationresult.js"; /** * The current status of the fine-tuning job. */ export const ClassifierFineTuningJobStatus = { Queued: "QUEUED", Started: "STARTED", Validating: "VALIDATING", Validated: "VALIDATED", Running: "RUNNING", FailedValidation: "FAILED_VALIDATION", Failed: "FAILED", Success: "SUCCESS", Cancelled: "CANCELLED", CancellationRequested: "CANCELLATION_REQUESTED", } as const; /** * The current status of the fine-tuning job. */ export type ClassifierFineTuningJobStatus = OpenEnum< typeof ClassifierFineTuningJobStatus >; export type ClassifierFineTuningJobIntegration = WandbIntegrationResult; export type ClassifierFineTuningJob = { /** * The ID of the job. */ id: string; autoStart: boolean; model: string; /** * The current status of the fine-tuning job. */ status: ClassifierFineTuningJobStatus; /** * The UNIX timestamp (in seconds) for when the fine-tuning job was created. */ createdAt: number; /** * The UNIX timestamp (in seconds) for when the fine-tuning job was last modified. */ modifiedAt: number; /** * A list containing the IDs of uploaded files that contain training data. */ trainingFiles: Array; /** * A list containing the IDs of uploaded files that contain validation data. */ validationFiles?: Array | null | undefined; /** * The object type of the fine-tuning job. */ object: "job"; /** * The name of the fine-tuned model that is being created. The value will be `null` if the fine-tuning job is still running. */ fineTunedModel?: string | null | undefined; /** * Optional text/code that adds more context for the model. When given a `prompt` and a `suffix` the model will fill what is between them. When `suffix` is not provided, the model will simply execute completion starting with `prompt`. */ suffix?: string | null | undefined; /** * A list of integrations enabled for your fine-tuning job. */ integrations?: Array | null | undefined; /** * Total number of tokens trained. */ trainedTokens?: number | null | undefined; metadata?: JobMetadata | null | undefined; /** * The type of job (`FT` for fine-tuning). */ jobType: "classifier"; hyperparameters: ClassifierTrainingParameters; }; /** @internal */ export const ClassifierFineTuningJobStatus$inboundSchema: z.ZodType< ClassifierFineTuningJobStatus, unknown > = openEnums.inboundSchema(ClassifierFineTuningJobStatus); /** @internal */ export const ClassifierFineTuningJobIntegration$inboundSchema: z.ZodType< ClassifierFineTuningJobIntegration, unknown > = WandbIntegrationResult$inboundSchema; export function classifierFineTuningJobIntegrationFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => ClassifierFineTuningJobIntegration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ClassifierFineTuningJobIntegration' from JSON`, ); } /** @internal */ export const ClassifierFineTuningJob$inboundSchema: z.ZodType< ClassifierFineTuningJob, unknown > = z.object({ id: z.string(), auto_start: z.boolean(), model: z.string(), status: ClassifierFineTuningJobStatus$inboundSchema, created_at: z.int(), modified_at: z.int(), training_files: z.array(z.string()), validation_files: z.nullable(z.array(z.string())).optional(), object: z.literal("job").default("job"), fine_tuned_model: z.nullable(z.string()).optional(), suffix: z.nullable(z.string()).optional(), integrations: z.nullable(z.array(WandbIntegrationResult$inboundSchema)) .optional(), trained_tokens: z.nullable(z.int()).optional(), metadata: z.nullable(JobMetadata$inboundSchema).optional(), job_type: z.literal("classifier"), hyperparameters: ClassifierTrainingParameters$inboundSchema, }).transform((v) => { return remap$(v, { "auto_start": "autoStart", "created_at": "createdAt", "modified_at": "modifiedAt", "training_files": "trainingFiles", "validation_files": "validationFiles", "fine_tuned_model": "fineTunedModel", "trained_tokens": "trainedTokens", "job_type": "jobType", }); }); export function classifierFineTuningJobFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => ClassifierFineTuningJob$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ClassifierFineTuningJob' from JSON`, ); }