diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-16 04:19:43 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-16 04:19:43 +0200 |
| commit | c1f1f77d5dff951be1425a03fff965e0a1065881 (patch) | |
| tree | c649d2af840066d32c35cf602be8487a0888e88f /internal/llm | |
| parent | 2b3615352c9e31cba00ba8eb98c610fc66f6bc3c (diff) | |
Replace Summary: prefixes with standard Go package doc comments
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/llm')
| -rw-r--r-- | internal/llm/anthropic.go | 2 | ||||
| -rw-r--r-- | internal/llm/ollama.go | 2 | ||||
| -rw-r--r-- | internal/llm/openai.go | 2 | ||||
| -rw-r--r-- | internal/llm/openrouter.go | 2 | ||||
| -rw-r--r-- | internal/llm/provider.go | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/internal/llm/anthropic.go b/internal/llm/anthropic.go index 2fc1d84..0f27dcc 100644 --- a/internal/llm/anthropic.go +++ b/internal/llm/anthropic.go @@ -1,4 +1,4 @@ -// Summary: Anthropic client implementation using Messages API with optional streaming support. +// Anthropic client implementation using Messages API with optional streaming support. package llm import ( diff --git a/internal/llm/ollama.go b/internal/llm/ollama.go index 896ca13..ade62a9 100644 --- a/internal/llm/ollama.go +++ b/internal/llm/ollama.go @@ -1,4 +1,4 @@ -// Summary: Ollama client against a local server; supports chat responses and streaming via /api/chat. +// Ollama client against a local server; supports chat responses and streaming via /api/chat. package llm import ( diff --git a/internal/llm/openai.go b/internal/llm/openai.go index 3d2bf94..d2eff05 100644 --- a/internal/llm/openai.go +++ b/internal/llm/openai.go @@ -1,4 +1,4 @@ -// Summary: OpenAI client implementation for chat completions with optional streaming and detailed logging. +// OpenAI client implementation for chat completions with optional streaming and detailed logging. package llm import ( diff --git a/internal/llm/openrouter.go b/internal/llm/openrouter.go index 19c2f6c..53d2957 100644 --- a/internal/llm/openrouter.go +++ b/internal/llm/openrouter.go @@ -1,4 +1,4 @@ -// Summary: OpenRouter client implementation leveraging OpenAI-compatible helpers with provider-specific headers. +// OpenRouter client implementation leveraging OpenAI-compatible helpers with provider-specific headers. package llm import ( diff --git a/internal/llm/provider.go b/internal/llm/provider.go index f3170ef..96646cf 100644 --- a/internal/llm/provider.go +++ b/internal/llm/provider.go @@ -1,4 +1,4 @@ -// Summary: LLM provider interfaces, request options, configuration, and factory to build a client from config. +// Package llm defines LLM provider interfaces, request options, configuration, and factory to build a client from config. package llm import ( |
