| 117 | void set_request_timeout(std::chrono::seconds timeout) { request_timeout_ = timeout; } |
| 118 | void set_io_threads(size_t num_threads) { io_thread_count_ = num_threads; } |
| 119 | void set_npu_queue_length(size_t q_len) { max_npu_queue_ = q_len; } |
| 120 | // Maximum accepted HTTP request body size (in bytes) |
| 121 | void set_max_body_size_bytes(std::size_t bytes) { max_body_size_bytes_ = bytes; } |
| 122 | std::size_t get_max_body_size_bytes() const { return max_body_size_bytes_; } |