@copilotkit/runtime
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
15 lines (13 loc) • 530 B
text/typescript
import { AIMessage, AIMessageChunk, BaseMessageChunk } from "@langchain/core/messages";
import {
IterableReadableStream,
IterableReadableStreamInterface,
} from "@langchain/core/utils/stream";
export type LangChainBaseMessageChunkStream = IterableReadableStream<BaseMessageChunk>;
export type LangChainAIMessageChunkStream = IterableReadableStreamInterface<AIMessageChunk>;
export type LangChainReturnType =
| LangChainBaseMessageChunkStream
| LangChainAIMessageChunkStream
| BaseMessageChunk
| string
| AIMessage;