(mut self, provider_name: impl Into<String>)
| 103 | } |
| 104 | |
| 105 | pub fn with_provider_name(mut self, provider_name: impl Into<String>) -> Self { |
| 106 | self.provider_name = provider_name.into(); |
| 107 | self |
| 108 | } |
| 109 | |
| 110 | pub fn with_chat_completions_path(mut self, path: impl Into<String>) -> Self { |
| 111 | let path = path.into(); |
no outgoing calls
no test coverage detected