Describe the bug:
In certain instances, users experience a delay because the LLM model hasn't fully loaded. The current progress/notification system does not reflect this delay, leading to potential confusion or frustration for users who are unaware of the loading status.
Additional context:
The issue arises in the activate function within the src/extension.ts file. The progress report increments do not account for the time taken to load the LLM model, which can result in users waiting without clear feedback on the process status.
Solution:
To address this, the progress/notification information should be updated to include a message indicating that the LLM model is loading. This can be done by adding an additional progress report increment specifically for the model loading phase. This will provide users with a more accurate representation of the process and reduce uncertainty during the wait time.
Describe the bug:
In certain instances, users experience a delay because the LLM model hasn't fully loaded. The current progress/notification system does not reflect this delay, leading to potential confusion or frustration for users who are unaware of the loading status.
Additional context:
The issue arises in the
activatefunction within thesrc/extension.tsfile. The progress report increments do not account for the time taken to load the LLM model, which can result in users waiting without clear feedback on the process status.Solution:
To address this, the progress/notification information should be updated to include a message indicating that the LLM model is loading. This can be done by adding an additional progress report increment specifically for the model loading phase. This will provide users with a more accurate representation of the process and reduce uncertainty during the wait time.