From 6c8f7792948197886c582efa694af9c186da061f Mon Sep 17 00:00:00 2001 From: matty Date: Sun, 6 Jul 2025 02:11:30 +0000 Subject: [PATCH] update type with some more annotations --- types.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/types.d.ts b/types.d.ts index ab453b3..5526f77 100644 --- a/types.d.ts +++ b/types.d.ts @@ -40,7 +40,10 @@ export interface OllamaRequest { /** * Whether to stream responses from the API, or have it sent all as one payload. */ - stream?: boolean = false; // stream response vs get response in one full message + stream?: boolean = false; + /** + * Ollama configuration options + */ options?: OllamaConfigOptions; }