An open API service indexing awesome lists of open source software.

https://github.com/polina4096/liment

Convenient macOS app to display LLM usage limits in the tray.
https://github.com/polina4096/liment

anthropic claude lllms llm macos statistics tray tray-app tray-application

Last synced: 4 months ago
JSON representation

Convenient macOS app to display LLM usage limits in the tray.

Awesome Lists containing this project

README

          

# liment

Simple tray application that shows LLM usage limits.

## Configuration

The config file is located at `~/.config/liment/config.toml` and is created automatically on first launch.

### Claude Code

Uses the Claude Code OAuth token from the system keychain. No extra configuration needed.

```toml
provider = "claude_code"
```

Optionally, you can provide a token manually:

```toml
provider = "claude_code"

[settings.claude_code]
token = "sk-ant-..."
```

### CLIProxy Claude

Proxies requests through a [CLIProxy](https://github.com/nicholasgasior/cliproxy) instance.

```toml
provider = "cliproxy_claude"

[settings.cliproxy_claude]
base_url = "http://localhost:8317"
management_token = "your-management-secret"
auth_index = "0"
```

### General options

```toml
# Whether to render the tray icon in monochrome.
monochrome_icon = true

# Display mode: "usage" or "remaining".
display_mode = "usage"

# Whether to show period percentage next to "resets in".
show_period_percentage = false

# Reset time format: "relative" (resets in 3h) or "absolute" (resets on 13 Feb, 14:00).
reset_time_format = "relative"

# How often to refetch usage data, in seconds.
refetch_interval = 60
```

## License

Distributed under the The Unlicense, except for the Claude logo.