codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Chat layout mode: Classic (default) or Webview (IDE-style).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum ChatLayoutMode {
    #[default]
    Classic,
    Webview,
}

impl ChatLayoutMode {
    pub fn toggle(self) -> Self {
        match self {
            Self::Classic => Self::Webview,
            Self::Webview => Self::Classic,
        }
    }
}