Metadata-Version: 2.4
Name: chatgpt-query
Version: 0.1.0
Summary: A simple chat interface tool
Author-email: Andrej730 <andrej730@icloud.com>
Maintainer-email: Andrej730 <andrej730@icloud.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Andrej730/chatgpt-query
Project-URL: Repository, https://github.com/Andrej730/chatgpt-query
Project-URL: Issues, https://github.com/Andrej730/chatgpt-query/issues
Keywords: chat,ai,chatgpt,query,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typed-argparse
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Dynamic: license-file

# ChatGPT Query

A simple command-line tool to quickly open ChatGPT with your query in the browser.

## Installation

```bash
pip install chatgpt-query
```

## Usage

### Basic Usage

```bash
# Simple query
chat Hello world
```

### Options

```bash
# Dry run - just print the URL without opening browser
chat -d "What is AI?"
# Output: Generated URL: https://chat.openai.com/?q=What+is+AI%3F&model=auto

# Specify a model
chat -m gpt-4 "Explain quantum computing"

# Ask ChatGPT to run search on your query
chat -s "Latest news about AI"
```
