(prompt: String, model: Option<String>)
| 33 | |
| 34 | impl Claw { |
| 35 | pub fn inline(prompt: String, model: Option<String>) -> Self { |
| 36 | Self { |
| 37 | kind: ClawKind::Inline { model, prompt }, |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | pub fn agent_ref(agent_id: String, model_override: Option<String>) -> Self { |
| 42 | Self { |
nothing calls this directly
no outgoing calls
no test coverage detected