From 7e30f27f6bf4439cf7ac9fb773923799904bf5d4 Mon Sep 17 00:00:00 2001 From: Charles Beauville Date: Wed, 12 Mar 2025 09:49:47 +0100 Subject: [PATCH] docs(intelligence) Improve TypeScript ref --- intelligence/ts/src/flowerintelligence.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intelligence/ts/src/flowerintelligence.ts b/intelligence/ts/src/flowerintelligence.ts index 93209388eb9a..2580a4d7eaec 100644 --- a/intelligence/ts/src/flowerintelligence.ts +++ b/intelligence/ts/src/flowerintelligence.ts @@ -75,7 +75,7 @@ export class FlowerIntelligence { /** * Downloads and loads a model into memory. * @param model Model name to use for the chat. - * @param callback A callback to handle the progress of the download + * @param callback A callback function taking a {@link Progress} object to handle the loading event. * @returns A {@link Result} containing either a {@link Failure} (containing `code: number` and `description: string`) if `ok` is false or a value of `void`, if `ok` is true (meaning the loading was successful). */ async fetchModel(model: string, callback: (progress: Progress) => void): Promise> {