Whether the plugin provides a custom fetch that must proxy LLM requests.
(&self)
| 70 | |
| 71 | /// Whether the plugin provides a custom fetch that must proxy LLM requests. |
| 72 | pub fn has_custom_fetch(&self) -> bool { |
| 73 | self.has_custom_fetch |
| 74 | .load(std::sync::atomic::Ordering::Relaxed) |
| 75 | } |
| 76 | |
| 77 | /// The cached API key from the last `load()` call, if any. |
| 78 | pub async fn cached_api_key(&self) -> Option<String> { |
no test coverage detected