type Openai = {
api_key: string;
organization_id: string;
};
/**
* List paginated fine tuning jobs
* List your organization's fine-tuning jobs
*/
export async function main(
auth: Openai,
after: string | undefined,
limit: string | undefined
) {
const url = new URL(`https://api.openai.com/v1/fine_tuning/jobs`);
for (const [k, v] of [
["after", after],
["limit", limit],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
"OpenAI-Organization": auth.organization_id,
Authorization: "Bearer " + auth.api_key,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 63 days ago
type Openai = {
api_key: string;
organization_id: string;
};
/**
* List paginated fine tuning jobs
* List your organization's fine-tuning jobs
*/
export async function main(
auth: Openai,
after: string | undefined,
limit: string | undefined
) {
const url = new URL(`https://api.openai.com/v1/fine_tuning/jobs`);
for (const [k, v] of [
["after", after],
["limit", limit],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
"OpenAI-Organization": auth.organization_id,
Authorization: "Bearer " + auth.api_key,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 586 days ago