From 64e759a82349a85c4da55dbb47bb4b939dfeb322 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sun, 17 Nov 2024 09:53:48 +0900 Subject: [PATCH] docs: fix typo in inference.ts (#640) successfull -> successful --- packages/shared/inference.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shared/inference.ts b/packages/shared/inference.ts index e09076db2..7cb888195 100644 --- a/packages/shared/inference.ts +++ b/packages/shared/inference.ts @@ -146,7 +146,7 @@ class OllamaInferenceClient implements InferenceClient { } } } catch (e) { - // There seem to be some bug in ollama where you can get some successfull response, but still throw an error. + // There seem to be some bug in ollama where you can get some successful response, but still throw an error. // Using stream + accumulating the response so far is a workaround. // https://github.com/ollama/ollama-js/issues/72 totalTokens = NaN;