/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { RagieCore } from "../core.js"; import { appendForm, encodeJSON } from "../lib/encodings.js"; import { getContentTypeFromFileName, readableStreamToArrayBuffer, } from "../lib/files.js"; import * as M from "../lib/matchers.js"; import { compactMap } from "../lib/primitives.js"; import { safeParse } from "../lib/schemas.js"; import { RequestOptions } from "../lib/sdks.js"; import { extractSecurity, resolveGlobalSecurity } from "../lib/security.js"; import { pathToFunc } from "../lib/url.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError, } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { RagieError } from "../models/errors/ragieerror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { APICall, APIPromise } from "../types/async.js"; import { isBlobLike } from "../types/blobs.js"; import { Result } from "../types/fp.js"; import { isReadableStream } from "../types/streams.js"; /** * Create Document * * @remarks * On ingest, the document goes through a series of steps before it is ready for retrieval. Each step is reflected in the status of the document which can be one of [`pending`, `partitioning`, `partitioned`, `refined`, `chunked`, `indexed`, `summary_indexed`, `keyword_indexed`, `ready`, `failed`]. The document is available for retrieval once it is in ready state. The summary index step can take a few seconds. You can optionally use the document for retrieval once it is in `indexed` state. However the summary will only be available once the state has changed to `summary_indexed` or `ready`. */ export function documentsCreate( client: RagieCore, request: components.CreateDocumentParams, options?: RequestOptions, ): APIPromise< Result< components.Document, | errors.HTTPValidationError | errors.ErrorMessage | RagieError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError > > { return new APIPromise($do( client, request, options, )); } async function $do( client: RagieCore, request: components.CreateDocumentParams, options?: RequestOptions, ): Promise< [ Result< components.Document, | errors.HTTPValidationError | errors.ErrorMessage | RagieError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError >, APICall, ] > { const parsed = safeParse( request, (value) => components.CreateDocumentParams$outboundSchema.parse(value), "Input validation failed", ); if (!parsed.ok) { return [parsed, { status: "invalid" }]; } const payload = parsed.value; const body = new FormData(); if (isBlobLike(payload.file)) { appendForm(body, "file", payload.file); } else if (isReadableStream(payload.file.content)) { const buffer = await readableStreamToArrayBuffer(payload.file.content); const contentType = getContentTypeFromFileName(payload.file.fileName) || "application/octet-stream"; const blob = new Blob([buffer], { type: contentType }); appendForm(body, "file", blob, payload.file.fileName); } else { const contentType = getContentTypeFromFileName(payload.file.fileName) || "application/octet-stream"; appendForm( body, "file", new Blob([payload.file.content], { type: contentType }), payload.file.fileName, ); } if (payload.external_id !== undefined) { appendForm(body, "external_id", payload.external_id); } if (payload.metadata !== undefined) { if (typeof payload.metadata === "object") { appendForm( body, "metadata", encodeJSON("metadata", payload.metadata, { explode: true }), ); } else { appendForm(body, "metadata", payload.metadata); } } if (payload.mode !== undefined) { if (typeof payload.mode === "object") { appendForm( body, "mode", encodeJSON("mode", payload.mode, { explode: true }), ); } else { appendForm(body, "mode", payload.mode); } } if (payload.name !== undefined) { appendForm(body, "name", payload.name); } if (payload.partition !== undefined) { appendForm(body, "partition", payload.partition); } const path = pathToFunc("/documents")(); const headers = new Headers(compactMap({ Accept: "application/json", })); const secConfig = await extractSecurity(client._options.auth); const securityInput = secConfig == null ? {} : { auth: secConfig }; const requestSecurity = resolveGlobalSecurity(securityInput); const context = { options: client._options, baseURL: options?.serverURL ?? client._baseURL ?? "", operationID: "CreateDocument", oAuth2Scopes: null, resolvedSecurity: requestSecurity, securitySource: client._options.auth, retryConfig: options?.retries || client._options.retryConfig || { strategy: "none" }, retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"], }; const requestRes = client._createRequest(context, { security: requestSecurity, method: "POST", baseURL: options?.serverURL, path: path, headers: headers, body: body, userAgent: client._options.userAgent, timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1, }, options); if (!requestRes.ok) { return [requestRes, { status: "invalid" }]; } const req = requestRes.value; const doResult = await client._do(req, { context, errorCodes: ["400", "401", "402", "422", "429", "4XX", "500", "5XX"], retryConfig: context.retryConfig, retryCodes: context.retryCodes, }); if (!doResult.ok) { return [doResult, { status: "request-error", request: req }]; } const response = doResult.value; const responseFields = { HttpMeta: { Response: response, Request: req }, }; const [result] = await M.match< components.Document, | errors.HTTPValidationError | errors.ErrorMessage | RagieError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError >( M.json(201, components.Document$inboundSchema), M.jsonErr(422, errors.HTTPValidationError$inboundSchema), M.jsonErr([400, 401, 402, 429], errors.ErrorMessage$inboundSchema), M.jsonErr(500, errors.ErrorMessage$inboundSchema), M.fail("4XX"), M.fail("5XX"), )(response, req, { extraFields: responseFields }); if (!result.ok) { return [result, { status: "complete", request: req, response }]; } return [result, { status: "complete", request: req, response }]; }