Updated all documentation and configuration files: Documentation changes: - Updated README.md to describe LLMX as LiteLLM-powered fork - Updated CLAUDE.md with LiteLLM integration details - Updated 50+ markdown files across docs/, llmx-rs/, llmx-cli/, sdk/ - Changed all references: codex → llmx, Codex → LLMX - Updated package references: @openai/codex → @llmx/llmx - Updated repository URLs: github.com/openai/codex → github.com/valknar/llmx Configuration changes: - Updated .github/dependabot.yaml - Updated .github workflow files - Updated cliff.toml (changelog configuration) - Updated Cargo.toml comments Key branding updates: - Project description: "coding agent from OpenAI" → "coding agent powered by LiteLLM" - Added attribution to original OpenAI Codex project - Documented LiteLLM integration benefits Files changed: 51 files (559 insertions, 559 deletions) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
424 B
Markdown
16 lines
424 B
Markdown
# oai-llmx-ansi-escape
|
|
|
|
Small helper functions that wrap functionality from
|
|
<https://crates.io/crates/ansi-to-tui>:
|
|
|
|
```rust
|
|
pub fn ansi_escape_line(s: &str) -> Line<'static>
|
|
pub fn ansi_escape<'a>(s: &'a str) -> Text<'a>
|
|
```
|
|
|
|
Advantages:
|
|
|
|
- `ansi_to_tui::IntoText` is not in scope for the entire TUI crate
|
|
- we `panic!()` and log if `IntoText` returns an `Err` and log it so that
|
|
the caller does not have to deal with it
|