This commit is contained in:
CREDO23 2025-10-23 19:48:10 +02:00 committed by thierryverse
parent 58fed46567
commit 9007436ff6
9 changed files with 23 additions and 183 deletions

View file

@ -3,9 +3,15 @@ import { useActionState, useContext, useTransition } from "react";
import { toast } from "sonner";
import { cn } from "@/lib/utils";
import { chatInterfaceContext } from "../ChatInterface";
import type { GeneratePodcastRequest } from "./actions";
import { ChatPanelView } from "./ChatPanelView";
export interface GeneratePodcastRequest {
type: "CHAT" | "DOCUMENT";
ids: number[];
search_space_id: number;
podcast_title?: string;
}
export function ChatPanelContainer() {
const context = useContext(chatInterfaceContext);