@tsailab/xai
Version:
The loto-xai is an openai nodejs sdk compatible extension library.
9 lines (8 loc) • 314 B
TypeScript
/**
* IF you call chat completion with http mode
* this method can build http url
* @param baseUrl like https://api.openai.com/v1
* @param urlpath liek chat/completions
* @returns https://api.openai.com/v1/chat/completions
*/
export declare const buildHttpUrl: (baseUrl: string, urlpath: string) => string;