@zhengxs/erniebot
Version:
非官方 JS-SDK,可以调用文心大模型的能力,包含文本创作、通用对话、语义向量、AI作图等
11 lines (10 loc) • 332 B
TypeScript
import { ERNIEBot } from './index';
export declare class APIResource {
protected client: ERNIEBot;
protected get: ERNIEBot['get'];
protected post: ERNIEBot['post'];
protected patch: ERNIEBot['patch'];
protected put: ERNIEBot['put'];
protected delete: ERNIEBot['delete'];
constructor(client: ERNIEBot);
}