| 140 | } |
| 141 | |
| 142 | StreamResult BaseProviderClient::stream_text(const StreamOptions& options) { |
| 143 | // This needs to be implemented with provider-specific stream implementations |
| 144 | // For now, return an error |
| 145 | ai::logger::log_error("Streaming not yet implemented in BaseProviderClient"); |
| 146 | return StreamResult(); |
| 147 | } |
| 148 | |
| 149 | EmbeddingResult BaseProviderClient::embeddings( |
| 150 | const EmbeddingOptions& options) { |
nothing calls this directly
no test coverage detected