general

Where can I see the info in terminal.rs?

I'm trying to find some information in terminal.rs. Where can I see this info in the terminal?

St

Stephen

Asked on Jan 26, 2024

The information in terminal.rs can be seen in the terminal output when running the code. It will be printed as an InfoMessage with a specific format. Here is an example of how the information is printed:

InfoMessage::new(
    "CPU Device",
    HeaderFormat::BoldBlue,
    &["Tabby is currently running on the CPU. Completions may be slow, but it will suffice for testing purposes.", "For better performance, consider deploying Tabby on a GPU device."],
);
Jan 26, 2024Edited by