Language Model Terminal Interface.
Project description
Language Model Terminal Interface
Often I just want to talk to LMs without the agentic clutter: I dont want it to read my stuff, access my files or consume through a gazillion tokens of tools, skills, MCPs and what not. I just want a recipe for gazpacho, c'mon :(
For that, I normally have to log into a WebApp from a provider (i.e. Mistral LeChat, Gemini, ChatGPT). But I live on the terminal, so I made a thin wrapper.
If somehow you landed here but you are looking for an actual agent that can manage your system, I'd recommend you look into pi, opencode or mistral-vibe (in that order). If your desire is to become vendor locked and further push private companies in their quest for the oligopoly, you could check Claude Code or Codex, I guess :)
FAQ
- Can I talk with LMs from different providers from the terminal? - Yes :)
- Does the app have access to my files? - No
- Can the app run terminal commands? - Nope
- Can the app execute code? - Nein
- Does the app have any sort of agentic loop? - Negative
- Can I connect the app to MCPs or other tools? - Also no
Installation
uv tool install lmti
Usage
# Start with the default model
lmti
# Start with a specific model
lmti -m vertex:gemini-2.5-flash
lmti supports several commands: to reset a conversation, undo some message, change models, etc.
Simply type forward slash (/) while on the REPL to see a list of actions.
Config
Settings live in ~/.config/lmti.yaml; API keys in ~/.lmti/auth.yaml.
Conversation history is under ~/.lmti/history/.
Many settings can also be changed from the REPL (/model, /render, etc.).
~/.config/lmti.yaml:
settings:
render_markdown: true
model: mistral:mistral-small-2603
models:
- mistral:mistral-small-2603
- vertex:gemini-2.5-flash
~/.lmti/auth.yaml:
MISTRAL_API_KEY: your-key-here
Known limitations
With render_markdown: true (the default), assistant replies are streamed through Rich Live + Markdown. In practice you may see duplicated lines (“echo”), layout glitches, or other artifacts while tokens arrive. This comes from how Rich redraws live content when output overflows the terminal—not from the model itself.
Upstream workarounds exist (for example chatlas #71, which monkeypatches LiveRender for rich #3263 until rich #3637 lands), but they do not fully solve streaming markdown in our stack. A durable fix likely means replacing the current prompt-toolkit + Rich UI with something built for live TUI updates (e.g. Textual). That is a large refactor and is tracked in #14—not planned for the near term.
Until then you can turn off live markdown with /render or set render_markdown: false in config.
Development
Structure
src/lmti/
├── cli.py # Argument parsing and entry point
├── config.py # Configuration management
├── errors.py # Error handling
├── repl.py # Main REPL loop logic
├── ui.py # Terminal UI (prompt-toolkit and rich)
├── commands/ # Slash command implementations
└── __init__.py
Tooling
We use just for development tasks. Use:
just sync: Updates lockfile and syncs environment.just format: Lints and formats withruff.just check-types: Static analysis withty.just check-complexity: Cyclomatic complexity checks withcomplexipy.just test: Runs pytest with 90% coverage threshold.
See justfile for a complete list of dev commands.
Contribute
- Hooks: Install pre-commit hooks via
just install-hooks. - Issues: Open an issue first using the default template.
- PRs: Link your PR to the relevant issue.
License
MIT
Made with mold template
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lmti-1.5.1.tar.gz.
File metadata
- Download URL: lmti-1.5.1.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
981ac4bdb2fda31615e103d975b6d0fd76c1e5e63d79e5ec6a523d3aa8be99cd
|
|
| MD5 |
0e9cedfb93541adaa68af459c02699ed
|
|
| BLAKE2b-256 |
9220c27f00b500e8e0e0804c909531c84e4ff7d9d442a8e77f8f13a6c5c23235
|
File details
Details for the file lmti-1.5.1-py3-none-any.whl.
File metadata
- Download URL: lmti-1.5.1-py3-none-any.whl
- Upload date:
- Size: 17.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c9abfd41aa1978bae826a523563b89cd11e0fa10f6714c513b57d30b9e25c9f
|
|
| MD5 |
f769fc941eac0213e08498d84d90c556
|
|
| BLAKE2b-256 |
b010b9d5dd19d5d2abafa724da3543f4044363b85605cc894758f4af53236d15
|