Edits history of script submission #5857 for ' Create message (openai)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Openai = {
      api_key: string;
      organization_id: string;
    };
    /**
     * Create message
     * Create a message.
     */
    export async function main(
      auth: Openai,
      thread_id: string,
      body: {
        role: "user";
        content: string;
        file_ids?: string[];
        metadata?: { [k: string]: unknown };
      }
    ) {
      const url = new URL(
        `https://api.openai.com/v1/threads/${thread_id}/messages`
      );
    
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "OpenAI-Organization": auth.organization_id,
          "Content-Type": "application/json",
          Authorization: "Bearer " + auth.api_key,
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 399 days ago

  • nativets
    type Openai = {
      api_key: string;
      organization_id: string;
    };
    /**
     * Create message
     * Create a message.
     */
    export async function main(
      auth: Openai,
      thread_id: string,
      body: {
        role: "user";
        content: string;
        file_ids?: string[];
        metadata?: { [k: string]: unknown };
      }
    ) {
      const url = new URL(
        `https://api.openai.com/v1/threads/${thread_id}/messages`
      );
    
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "OpenAI-Organization": auth.organization_id,
          "Content-Type": "application/json",
          Authorization: "Bearer " + auth.api_key,
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 922 days ago