Flowtty Logo

Flowtty

v0.1.0 Connected to codex
Type a command or ask Flowtty a question to get started

Local Intelligence

Run powerful LLMs like Codex, Llama 3, and Mistral directly on your machine. Privacy-first, zero latency.

Universal Connection

Seamlessly integrate with OpenRouter to access Claude 3.5, GPT-4, Gemini Pro, and hundreds of other models.

Custom Assistants

Define specialized AI agents with custom system prompts and context. Scriptable and adaptable to your workflow.

Integrated. Intelligent.

Flowtty brings the power of LLMs directly to your command line. No context switching, just pure flow.

flowtty — local
$ flowtty connect --model local:codex
✓ Connected to Codex (Local) - Ready
You: Write a function to parse CSV in Rust
Flowtty AI
Here is a robust CSV parsing function using the `csv` crate...
fn parse_csv(path: &str) -> Result<Vec<Record>, Box<dyn Error>> {
  let mut rdr = csv::Reader::from_path(path)?;
  ...
}
_