aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2024-11-17 09:53:48 +0900
committerGitHub <noreply@github.com>2024-11-17 00:53:48 +0000
commit64e759a82349a85c4da55dbb47bb4b939dfeb322 (patch)
treeb35a62ae782ea886eb42ff267eec9e5a1a0385d2
parent0d6af2f576d63abc7ae79a26f1350c46079e33b7 (diff)
downloadkarakeep-64e759a82349a85c4da55dbb47bb4b939dfeb322.tar.zst
docs: fix typo in inference.ts (#640)
successfull -> successful
-rw-r--r--packages/shared/inference.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/shared/inference.ts b/packages/shared/inference.ts
index e09076db..7cb88819 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;