(mut self, stream: bool)
| 236 | } |
| 237 | |
| 238 | pub fn with_stream(mut self, stream: bool) -> Self { |
| 239 | self.stream = Some(stream); |
| 240 | self |
| 241 | } |
| 242 | |
| 243 | pub fn with_max_tokens(mut self, max_tokens: u64) -> Self { |
| 244 | self.max_tokens = Some(max_tokens); |
no outgoing calls