#!/usr/bin/env -S watchexec -r rust-script
use GORBIE::md;
use GORBIE::notebook;
use GORBIE::widgets;
use GORBIE::NotebookCtx;
#[notebook]
fn main(nb: &mut NotebookCtx) {
let padding = GORBIE::cards::DEFAULT_CARD_PADDING;
nb.view(|ctx| {
md!(
ctx,
"# Candle
In this notebook we're going to use huggingfaces `candle` crate, to create a simple prompt based chatbot."
);
});
let _prompt = nb.state("prompt", "", move |ctx, value| {
ctx.with_padding(padding, |ctx| {
ctx.horizontal(|ctx| {
ctx.label("Prompt:");
ctx.add(widgets::TextField::singleline(value));
if ctx.button("Send").clicked() {
}
});
});
});
nb.view(move |ctx| {
ctx.with_padding(padding, |_ctx| {});
});
}