venice-ai-sdk-apl
Version:
A comprehensive SDK for the Venice AI API with CLI support, programmatic CLI usage, CLI-style interface, and interactive demo
23 lines (22 loc) • 470 B
TypeScript
/**
* Chat Resource
*
* This module provides access to the Chat API resources.
*/
import { HttpClient } from '../../utils/http';
import { ChatCompletionsResource } from './completions';
/**
* Chat Resource
*/
export declare class ChatResource {
/**
* Chat completions resource
*/
completions: ChatCompletionsResource;
/**
* Creates a new chat resource
*
* @param http - HTTP client
*/
constructor(http: HttpClient);
}