rho-coding-agent 1.14.0

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ratatui::text::Line;

use super::{
    feed_image::RenderedImagePlacements, markdown::MarkdownCodeBlock,
    markdown_image::MarkdownImageSource,
};

pub(super) struct RenderedEntry {
    pub(super) lines: Vec<Line<'static>>,
    pub(super) code_blocks: Vec<MarkdownCodeBlock>,
    pub(super) image_placement: Option<RenderedImagePlacements>,
    /// Standalone `![alt](path)` references found in assistant markdown.
    pub(super) image_sources: Vec<MarkdownImageSource>,
    /// Rendered fallback rows corresponding to `image_sources`.
    pub(super) image_rows: Vec<usize>,
}