(config: GeminiTextConfig, model: TModel)
| 115 | private readonly client: GoogleGenAI |
| 116 | |
| 117 | constructor(config: GeminiTextConfig, model: TModel) { |
| 118 | super({}, model) |
| 119 | this.client = createGeminiClient(config) |
| 120 | } |
| 121 | |
| 122 | async *chatStream( |
| 123 | options: TextOptions<GeminiTextProviderOptions>, |
nothing calls this directly
no test coverage detected