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
24 lines • 557 B
JavaScript
;
/**
* Chat Resource
*
* This module provides access to the Chat API resources.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChatResource = void 0;
const completions_1 = require("./completions");
/**
* Chat Resource
*/
class ChatResource {
/**
* Creates a new chat resource
*
* @param http - HTTP client
*/
constructor(http) {
this.completions = new completions_1.ChatCompletionsResource(http);
}
}
exports.ChatResource = ChatResource;
//# sourceMappingURL=index.js.map