feat: implement CustomAIMessageChunk class and enhance reasoning handling in useMessageOption hook

This commit is contained in:
n4ze3m
2025-02-08 20:50:48 +05:30
parent 8381f1c996
commit 926f4e1a4a
8 changed files with 1220 additions and 105 deletions

View File

@@ -206,7 +206,7 @@ export const PlaygroundForm = ({ dropedFile }: Props) => {
return (
<div className="flex w-full flex-col items-center p-2 pt-1 pb-4">
<form className="relative z-10 flex w-full flex-col items-center justify-center gap-2 text-base">
<div className="relative z-10 flex w-full flex-col items-center justify-center gap-2 text-base">
<div className="relative flex w-full flex-row justify-center gap-2 lg:w-4/5">
<div
className={` bg-neutral-50 dark:bg-[#262626] relative w-full max-w-[48rem] p-1 backdrop-blur-lg duration-100 border border-gray-300 rounded-xl dark:border-gray-600
@@ -449,7 +449,7 @@ export const PlaygroundForm = ({ dropedFile }: Props) => {
</div>
</div>
</div>
</form>
</div>
</div>
)
}