gradio/js/multimodaltextbox/Example.svelte
Dawood Khan 15da39fca0
Multimodal Textbox (Chat Input Component) (#7420)
* first pass

* multimodal textbox

* add changeset

* remove file

* more changes

* changes

* add changeset

* revert demo

* doc strings fix

* update demo

* file icons

* more updates

* format

* add story

* remove doc line

* type fixes

* chat interface

* new demo

* image upload fix

* ui changes

* addressing PR comments

* format

* type check

* more pr fixes

* format

* format

* test fixes

* test fixes

* Streaming fixes + other stuff

* optional keys to dict value

* final fixes

* notebook

* format

* Update guides/04_chatbots/01_creating-a-chatbot-fast.md

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>

* Update guides/04_chatbots/01_creating-a-chatbot-fast.md

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>

* Update guides/04_chatbots/01_creating-a-chatbot-fast.md

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>

* merge

* backend fixes

* story fix

* ui test fix

* format

* story

* format

* demo fix

* streaming test fix

* stories fix

* stories fix

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2024-03-19 13:16:05 -07:00

73 lines
1.3 KiB
Svelte

<script lang="ts">
import { onMount } from "svelte";
import { Image } from "@gradio/image/shared";
import type { FileData } from "@gradio/client";
export let value: { text: string; files: FileData[] } = {
text: "",
files: []
};
export let type: "gallery" | "table";
export let selected = false;
let size: number;
let el: HTMLDivElement;
function set_styles(element: HTMLElement, el_width: number): void {
if (!element || !el_width) return;
el.style.setProperty(
"--local-text-width",
`${el_width < 150 ? el_width : 200}px`
);
el.style.whiteSpace = "unset";
}
onMount(() => {
set_styles(el, size);
});
</script>
<div
bind:clientWidth={size}
bind:this={el}
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
>
<p>{value.text ? value.text : ""}</p>
{#each value.files as file}
{#if file.mime_type && file.mime_type.includes("image")}
<Image src={file.url} alt="" />
{:else}
{file.path}
{/if}
{/each}
</div>
<style>
.gallery {
padding: var(--size-1) var(--size-2);
display: flex;
align-items: center;
gap: 20px;
overflow-x: auto;
}
div {
overflow: hidden;
min-width: var(--local-text-width);
white-space: nowrap;
}
:global(img) {
width: 100px;
height: 100px;
}
div > :global(p) {
font-size: var(--text-lg);
white-space: normal;
}
</style>