type Openai = {
api_key: string;
organization_id: string;
};
/**
* Get run
* Retrieves a run.
*/
export async function main(auth: Openai, thread_id: string, run_id: string) {
const url = new URL(
`https://api.openai.com/v1/threads/${thread_id}/runs/${run_id}`
);
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 369 days ago