UNPKG

@copilotkit/runtime

Version:

<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />

32 lines (24 loc) 881 B
import { createYoga } from "graphql-yoga"; import { CreateCopilotRuntimeServerOptions, getCommonConfig } from "../shared"; import telemetry, { getRuntimeInstanceTelemetryInfo } from "../../telemetry-client"; export function copilotRuntimeNodeHttpEndpoint(options: CreateCopilotRuntimeServerOptions) { const commonConfig = getCommonConfig(options); telemetry.setGlobalProperties({ runtime: { framework: "node-http", }, }); if (options.properties?._copilotkit) { telemetry.setGlobalProperties({ _copilotkit: options.properties._copilotkit, }); } telemetry.capture("oss.runtime.instance_created", getRuntimeInstanceTelemetryInfo(options)); const logger = commonConfig.logging; logger.debug("Creating Node HTTP endpoint"); const yoga = createYoga({ ...commonConfig, graphqlEndpoint: options.endpoint, }); return yoga; }