chore: render katex in markdown

This commit is contained in:
jialin
2025-02-18 19:51:22 +08:00
parent ea34431cf7
commit 4c77151877
26 changed files with 693 additions and 208 deletions
+13 -9
View File
@@ -516,15 +516,19 @@ const Models: React.FC<ModelsProps> = ({
);
const getModelInstances = async (row: any, options?: any) => {
const params = {
id: row.id,
page: 1,
perPage: 100
};
const data = await queryModelInstancesList(params, {
token: options?.token
});
return data.items || [];
try {
const params = {
id: row.id,
page: 1,
perPage: 100
};
const data = await queryModelInstancesList(params, {
token: options?.token
});
return data.items || [];
} catch (error) {
return [];
}
};
const generateChildrenRequestAPI = (params: any) => {