Edits history of script submission #5869 for ' List runs (openai)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Openai = {
      api_key: string;
      organization_id: string;
    };
    /**
     * List runs
     * Returns a list of runs belonging to a thread.
     */
    export async function main(
      auth: Openai,
      thread_id: string,
      limit: string | undefined,
      order: "asc" | "desc" | undefined,
      after: string | undefined,
      before: string | undefined
    ) {
      const url = new URL(`https://api.openai.com/v1/threads/${thread_id}/runs`);
      for (const [k, v] of [
        ["limit", limit],
        ["order", order],
        ["after", after],
        ["before", before],
      ]) {
        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 372 days ago

  • nativets
    type Openai = {
      api_key: string;
      organization_id: string;
    };
    /**
     * List runs
     * Returns a list of runs belonging to a thread.
     */
    export async function main(
      auth: Openai,
      thread_id: string,
      limit: string | undefined,
      order: "asc" | "desc" | undefined,
      after: string | undefined,
      before: string | undefined
    ) {
      const url = new URL(`https://api.openai.com/v1/threads/${thread_id}/runs`);
      for (const [k, v] of [
        ["limit", limit],
        ["order", order],
        ["after", after],
        ["before", before],
      ]) {
        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 895 days ago