rho-coding-agent 1.7.0

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
use ratatui::text::Line;

use super::{feed_image::RenderedImagePlacement, markdown::MarkdownCodeBlock};

pub(super) struct RenderedEntry {
    pub(super) lines: Vec<Line<'static>>,
    pub(super) code_blocks: Vec<MarkdownCodeBlock>,
    pub(super) image_placement: Option<RenderedImagePlacement>,
}