summaryrefslogtreecommitdiff
path: root/internal/llm
diff options
context:
space:
mode:
Diffstat (limited to 'internal/llm')
-rw-r--r--internal/llm/copilot.go2
-rw-r--r--internal/llm/ollama.go2
-rw-r--r--internal/llm/openai.go2
-rw-r--r--internal/llm/provider.go2
4 files changed, 8 insertions, 0 deletions
diff --git a/internal/llm/copilot.go b/internal/llm/copilot.go
index a31022f..1e36bb7 100644
--- a/internal/llm/copilot.go
+++ b/internal/llm/copilot.go
@@ -1,3 +1,5 @@
+// Summary: GitHub Copilot client implementation for chat completions using the Copilot API.
+// Not yet reviewed by a human
package llm
import (
diff --git a/internal/llm/ollama.go b/internal/llm/ollama.go
index ffee354..774eaf1 100644
--- a/internal/llm/ollama.go
+++ b/internal/llm/ollama.go
@@ -1,3 +1,5 @@
+// Summary: Ollama client against a local server; supports chat responses and streaming via /api/chat.
+// Not yet reviewed by a human
package llm
import (
diff --git a/internal/llm/openai.go b/internal/llm/openai.go
index 080d4e9..288622f 100644
--- a/internal/llm/openai.go
+++ b/internal/llm/openai.go
@@ -1,3 +1,5 @@
+// Summary: OpenAI client implementation for chat completions with optional streaming and detailed logging.
+// Not yet reviewed by a human
package llm
import (
diff --git a/internal/llm/provider.go b/internal/llm/provider.go
index 3e3023e..09e97e6 100644
--- a/internal/llm/provider.go
+++ b/internal/llm/provider.go
@@ -1,3 +1,5 @@
+// Summary: LLM provider interfaces, request options, configuration, and factory to build a client from config.
+// Not yet reviewed by a human
package llm
import (