Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/openai_deno/mod.ts>FineTuningJobRaw

OpenAI API wrapper for deno.
Latest
interface FineTuningJobRaw
Re-export
import { type FineTuningJobRaw } from "https://deno.land/x/openai_deno@v0.9.8/mod.ts";

Properties

id: string
object: "fine_tuning.job"
created_at: number
updated_at: number
model: string
fine_tuned_model: string | null
organization_id: string
status:
| "created"
| "pending"
| "running"
| "succeeded"
| "failed"
| "cancelled"
hyperparameters: { n_epochs: number | string; }
training_file: string
validation_file: string | null
result_files: string[]
trained_tokens: number