From 9938028971afb22ed5256fa331b28963fc74d320 Mon Sep 17 00:00:00 2001 From: Amir Mamaghani Date: Thu, 5 Mar 2026 10:50:20 +0100 Subject: [PATCH] fix(picoclaw): add missing closing brace for StreamingProvider interface Co-Authored-By: Claude Opus 4.6 --- pkg/providers/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/providers/types.go b/pkg/providers/types.go index 86ddfba46..a473b2c6b 100644 --- a/pkg/providers/types.go +++ b/pkg/providers/types.go @@ -49,6 +49,8 @@ type StreamingProvider interface { options map[string]any, onChunk func(accumulated string), ) (*LLMResponse, error) +} + // ThinkingCapable is an optional interface for providers that support // extended thinking (e.g. Anthropic). Used by the agent loop to warn // when thinking_level is configured but the active provider cannot use it.