UNPKG

@pinecone-database/pinecone

Version:

This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.

6 lines (5 loc) 441 B
import type { PineconeConfiguration } from '../../data'; import { ChatStream } from '../../utils'; import { AsstDataOperationsProvider } from './asstDataOperationsProvider'; import type { ChatOptions, StreamedChatResponse } from './types'; export declare const chatStream: (assistantName: string, apiProvider: AsstDataOperationsProvider, config: PineconeConfiguration) => (options: ChatOptions) => Promise<ChatStream<StreamedChatResponse>>;