diff --git a/GUI/src/pages/TestModel/index.tsx b/GUI/src/pages/TestModel/index.tsx index 4829d12..92e7dfd 100644 --- a/GUI/src/pages/TestModel/index.tsx +++ b/GUI/src/pages/TestModel/index.tsx @@ -1,7 +1,7 @@ import { useMutation, useQuery } from '@tanstack/react-query'; import { Button, FormSelect, FormTextarea, Collapsible } from 'components'; import CircularSpinner from 'components/molecules/CircularSpinner/CircularSpinner'; -import { FC, useState } from 'react'; +import { ComponentPropsWithoutRef, FC, useState } from 'react'; import { useTranslation } from 'react-i18next'; import ReactMarkdown from 'react-markdown'; import remarkGfm from 'remark-gfm'; @@ -87,6 +87,17 @@ const TestLLM: FC = () => { })); }; + const markdownComponents = { + ol: ({children}: any) => ( +
    + {children} +
+ ), + a: (props: ComponentPropsWithoutRef<"a">) => ( + + ), + }; + return (
{isLoadingConnections ? ( @@ -141,7 +152,7 @@ const TestLLM: FC = () => {
Response:
- + {inferenceResult.content}
@@ -159,7 +170,7 @@ const TestLLM: FC = () => { Rank {contextItem.rank}
- + {contextItem.chunkRetrieved}