Metadata-Version: 2.4
Name: jvs-cli
Version: 0.1.2
Summary: Terminal-based AI chat interface with streaming support
Author: JVS CLI Contributors
License: Apache-2.0
Keywords: cli,chat,ai,terminal,streaming
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.9.0
Requires-Dist: rich>=13.0.0
Requires-Dist: prompt-toolkit>=3.0.0
Requires-Dist: httpx>=0.24.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: orjson>=3.9.0
Requires-Dist: python-dateutil>=2.8.0
Dynamic: license-file
Dynamic: requires-python

# JVS CLI

A terminal-based AI chat interface with streaming support and beautiful terminal formatting.

## Features

- Interactive REPL mode with conversation history
- Streaming responses with real-time display
- AI thinking step visualization
- Markdown rendering
- Multiple color themes
- OpenAI-compatible API support

## Installation

```bash
pip install jvs-cli
```

## Quick Start

Initialize configuration:

```bash
jvs-cli config init
```

You'll be prompted for:
- API URL (OpenAI-compatible endpoint)
- Login Code
- Theme (color scheme)

Start chatting:

```bash
jvs-cli
```

One-shot query:

```bash
jvs-cli ask "What is machine learning?"
```

## Commands

Interactive mode commands:
- `/new` - Start new conversation
- `/history` - Show conversation history
- `/config` - Show configuration
- `/help` - Show help
- `/exit` - Exit

CLI commands:
- `jvs-cli` - Interactive mode
- `jvs-cli ask "query"` - One-shot query
- `jvs-cli chat <conv_id>` - Continue conversation
- `jvs-cli config init` - Setup wizard
- `jvs-cli config show` - Show configuration
- `jvs-cli history` - List conversations

## Configuration

Config file: `~/.jvs-cli/config.json`

```json
{
  "api_base_url": "https://api.example.com/v1",
  "login_code": "your_login_code",
  "display": {
    "theme": "claude_dark",
    "live_mode": true
  }
}
```

## Requirements

- Python 3.10+
- OpenAI-compatible API endpoint

## License

Apache License 2.0
