| 116 | } |
| 117 | |
| 118 | bool ControllableOpenAIClient::supports_model( |
| 119 | const std::string& model_name) const { |
| 120 | auto models = supported_models(); |
| 121 | return std::find(models.begin(), models.end(), model_name) != models.end(); |
| 122 | } |
| 123 | |
| 124 | std::string ControllableOpenAIClient::config_info() const { |
| 125 | return "Test OpenAI Client"; |