Method
complete
(
&self,
_messages: &[Message],
_system: Option<&str>,
_tools: &[crate::llm::ToolDefinition],
)
Source from the content-addressed store, hash-verified
| 192 | #[async_trait::async_trait] |
| 193 | impl LlmClient for StaticStreamingClient { |
| 194 | async fn complete( |
| 195 | &self, |
| 196 | _messages: &[Message], |
| 197 | _system: Option<&str>, |
| 198 | _tools: &[crate::llm::ToolDefinition], |
| 199 | ) -> anyhow::Result<LlmResponse> { |
| 200 | Ok(self.response()) |
| 201 | } |
| 202 | |
| 203 | async fn complete_streaming( |
| 204 | &self, |
Callers
nothing calls this directly
Tested by
no test coverage detected