UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

5 lines (4 loc) 303 B
import { ChatMessage, ChatOptions, ProviderResponse } from '../../../types/chat'; import { AnthropicConfig } from './config'; import { Tool } from './types'; export declare function chat(config: AnthropicConfig, messages: ChatMessage[], options: ChatOptions, tools?: Tool[]): Promise<ProviderResponse>;