feat(chunk): add chunk editing and image preview functionality

This commit is contained in:
2025-10-30 17:56:03 +08:00
parent b35fe51d60
commit 19b70a4abd
13 changed files with 448 additions and 147 deletions

View File

@@ -69,7 +69,7 @@ export function useLlmModelSetting() {
const fetchMyLlm = async () => {
try {
const res = await userService.my_llm();
const res = await userService.my_llm({include_details: true});
const llm_dic = res.data.data || {};
setMyLlm(llm_dic);
} catch (error) {