(apiKey: string, dev = false, browser?: boolean)
| 10 | */ |
| 11 | export default class Bytez { |
| 12 | constructor(apiKey: string, dev = false, browser?: boolean) { |
| 13 | this.#client = new Client(apiKey, dev, browser); |
| 14 | } |
| 15 | #client: Client; |
| 16 | list = { |
| 17 | /** Lists available models, and provides basic information about each one, such as RAM required */ |
nothing calls this directly
no outgoing calls
no test coverage detected