1 2 3 4 5 6 7
// Copyright 2026 Thomas Santerre and Moderately AI Inc. // // SPDX-License-Identifier: MIT OR Apache-2.0 pub fn build_http_client() -> Result<reqwest::Client, reqwest::Error> { reqwest::Client::builder().no_proxy().build() }