From ba2254556cc28ca3db9aa420c1d3dd74ead5c8e6 Mon Sep 17 00:00:00 2001 From: Laurent Mazare Date: Sun, 30 Jul 2023 09:53:05 +0100 Subject: Display the temperature being used for text generation. (#278) --- candle-wasm-examples/llama2-c/src/app.rs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'candle-wasm-examples/llama2-c') diff --git a/candle-wasm-examples/llama2-c/src/app.rs b/candle-wasm-examples/llama2-c/src/app.rs index 2ecd771e..f433d0da 100644 --- a/candle-wasm-examples/llama2-c/src/app.rs +++ b/candle-wasm-examples/llama2-c/src/app.rs @@ -30,6 +30,7 @@ async fn fetch_url(url: &str) -> Result, JsValue> { } pub enum Msg { + Refresh, Run, UpdateStatus(String), SetModel(ModelData), @@ -166,18 +167,20 @@ impl Component for App { self.status = status; true } + Msg::Refresh => true, } } fn view(&self, ctx: &Context) -> Html { use yew::TargetCast; let temperature = self.temperature.clone(); - let oninput = move |e: yew::InputEvent| { + let oninput = ctx.link().callback(move |e: yew::InputEvent| { let input: web_sys::HtmlInputElement = e.target_unchecked_into(); if let Ok(temp) = f64::from_str(&input.value()) { *temperature.borrow_mut() = temp } - }; + Msg::Refresh + }); html! {

{"Running "} @@ -188,8 +191,9 @@ impl Component for App {

{"Once the weights have loaded, click on the run button to start generating content."}

- {"temperature: "} - + {"temperature \u{00a0} "} + + {format!(" \u{00a0} {}", self.temperature.borrow())}
{ if self.loaded{ -- cgit v1.2.3