Skip to main content
Glama

Gotas Commerce MCP Server

ChatCompletionStreamingRunner.mjs1.24 kB
import { ChatCompletionStream } from "./ChatCompletionStream.mjs"; export class ChatCompletionStreamingRunner extends ChatCompletionStream { static fromReadableStream(stream) { const runner = new ChatCompletionStreamingRunner(null); runner._run(() => runner._fromReadableStream(stream)); return runner; } /** @deprecated - please use `runTools` instead. */ static runFunctions(client, params, options) { const runner = new ChatCompletionStreamingRunner(null); const opts = { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runFunctions' }, }; runner._run(() => runner._runFunctions(client, params, opts)); return runner; } static runTools(client, params, options) { const runner = new ChatCompletionStreamingRunner( // @ts-expect-error TODO these types are incompatible params); const opts = { ...options, headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, }; runner._run(() => runner._runTools(client, params, opts)); return runner; } } //# sourceMappingURL=ChatCompletionStreamingRunner.mjs.map

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/caiovicentino/mcpGOTAS'

If you have feedback or need assistance with the MCP directory API, please join our Discord server