import { Alert, Box, Button, CircularProgress, Paper, Slider, Stack, TextField, Typography, } from "@mui/material"; import { useEffect, useRef, useState } from "react"; import { HfInference, SummarizationArgs } from "@huggingface/inference"; import { InferenceProps } from "../huggingface"; import Options from "@/components/base/options"; import SliderWithLabel from "@/components/base/slider-with-label"; import ExampleButton from "@/components/base/example-button"; import Secret from "@/components/base/secret"; type SummarizationProps = InferenceProps & { /** * (Default: None). Integer to define the maximum length in tokens of the output summary. */ maxLength?: number; /** * (Default: None). Float (0-120.0). The amount of time in seconds that the query should take maximum. Network can cause some overhead so it will be a soft limit. */ maxTime?: number; /** * (Default: None). Integer to define the minimum length in tokens of the output summary. */ minLength?: number; /** * (Default: None). Float (0.0-100.0). The more a token is used within generation the more it is penalized to not be picked in successive generation passes. */ repetitionPenalty?: number; /** * (Default: 1.0). Float (0.0-100.0). The temperature of the sampling operation. 1 means regular sampling, 0 means always take the highest score, 100.0 is getting closer to uniform probability. */ temperature?: number; /** * (Default: None). Integer to define the top tokens considered within the sample operation to create new text. */ topK?: number; /** * (Default: None). Float to define the tokens that are within the sample operation of text generation. Add tokens in the sample for more probable to least probable until the sum of the probabilities is greater than top_p. */ topP?: number; }; export default function Summarization(props: SummarizationProps) { const { model, maxLength, maxTime, minLength, repetitionPenalty, temperature, topK, topP, } = props; const [token, setToken] = useState(""); const [inputText, setInputText] = useState(""); const [summary, setSummary] = useState(""); const [error, setError] = useState(""); const [loading, setLoading] = useState(false); const inference = useRef(null); useEffect(() => { inference.current = new HfInference(token); }, [token]); // Parse the data of the form and trigger "call" const handleSubmit = (event: any) => { event.preventDefault(); const data = new FormData(event.currentTarget); setToken(data.get("token") as string); const text = data.get("text") as string; const max_length = Number(data.get("maxLength") as string); call({ model, inputs: text, parameters: { max_length } }); }; /** * Call the inference API using args */ const call = async (args: SummarizationArgs) => { const { inputs, parameters } = args; try { setLoading(true); const response = await inference.current?.summarization({ model, inputs, parameters, }); setSummary(response?.summary_text as string); setError(""); } catch (error) { if (error instanceof Error) { setError(error.message); } else { setError("An unknown error occurred"); } } setLoading(false); }; return ( <> setInputText(e.target.value)} /> {error && {error}} Examples ); }