/** * The URLs which are used when making requests to the Chat API. * * @public */ export interface Endpoints { /** Chat API endpoint. */ chat: string; /** Chat streaming API endpoint. */ chatStream: string; }