Spaces:
Runtime error
Runtime error
File size: 3,821 Bytes
1fa7a3d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
<script context="module" lang="ts">
export { default as BaseChatBot } from "./shared/ChatBot.svelte";
</script>
<script lang="ts">
import type { Gradio, SelectData, LikeData } from "@gradio/utils";
import type { FileMessage, MultimodalMessage } from "./shared/utils";
import ChatBot from "./shared/ChatBot.svelte";
import { Block, BlockLabel } from "@gradio/atoms";
import type { LoadingStatus } from "@gradio/statustracker";
import { Chat } from "@gradio/icons";
import type { FileData } from "@gradio/client";
import { StatusTracker } from "@gradio/statustracker";
export let elem_id = "";
export let elem_classes: string[] = [];
export let visible = true;
export let value: [
MultimodalMessage | null,
MultimodalMessage | null
][] = [];
export let scale: number | null = null;
export let min_width: number | undefined = undefined;
export let label: string;
export let show_label = true;
export let root: string;
export let _selectable = false;
export let likeable = false;
export let show_share_button = false;
export let rtl = false;
export let show_copy_button = false;
export let sanitize_html = true;
export let bubble_full_width = true;
export let layout: "bubble" | "panel" = "bubble";
export let render_markdown = true;
export let line_breaks = true;
export let latex_delimiters: {
left: string;
right: string;
display: boolean;
}[];
export let gradio: Gradio<{
change: typeof value;
select: SelectData;
share: ShareData;
error: string;
like: LikeData;
}>;
export let avatar_images: [FileData | null, FileData | null] = [null, null];
let _value: [
MultimodalMessage | null,
MultimodalMessage | null
][];
const redirect_src_url = (src: string): string =>
src.replace('src="/file', `src="${root}file`);
function normalize_messages(
message: { file: FileData; alt_text: string | null } | null
): { file: FileData; alt_text: string | null } | null {
if (message === null) {
return message;
}
return {
file: message?.file as FileData,
alt_text: message?.alt_text
};
}
function process_message(msg: MultimodalMessage | null): MultimodalMessage | null {
if (msg === null) {
return msg;
}
msg.text = redirect_src_url(msg.text);
msg.files = msg.files.map(normalize_messages);
return msg;
}
$: _value = value
? value.map(([user_msg, bot_msg]) => [
process_message(user_msg),
process_message(bot_msg)
])
: [];
export let loading_status: LoadingStatus | undefined = undefined;
export let height = 400;
</script>
<Block
{elem_id}
{elem_classes}
{visible}
padding={false}
{scale}
{min_width}
{height}
allow_overflow={false}
>
{#if loading_status}
<StatusTracker
autoscroll={gradio.autoscroll}
i18n={gradio.i18n}
{...loading_status}
show_progress={loading_status.show_progress === "hidden"
? "hidden"
: "minimal"}
/>
{/if}
<div class="wrapper">
{#if show_label}
<BlockLabel
{show_label}
Icon={Chat}
float={false}
label={label || "Chatbot"}
/>
{/if}
<ChatBot
i18n={gradio.i18n}
selectable={_selectable}
{likeable}
{show_share_button}
value={_value}
{latex_delimiters}
{render_markdown}
pending_message={loading_status?.status === "pending"}
{rtl}
{show_copy_button}
on:change={() => gradio.dispatch("change", value)}
on:select={(e) => gradio.dispatch("select", e.detail)}
on:like={(e) => gradio.dispatch("like", e.detail)}
on:share={(e) => gradio.dispatch("share", e.detail)}
on:error={(e) => gradio.dispatch("error", e.detail)}
{avatar_images}
{sanitize_html}
{bubble_full_width}
{line_breaks}
{layout}
/>
</div>
</Block>
<style>
.wrapper {
display: flex;
position: relative;
flex-direction: column;
align-items: start;
width: 100%;
height: 100%;
}
</style>
|