Skip to content

Commit

Permalink
update version and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
RexWzh committed Oct 21, 2023
1 parent 5d4b96a commit 1e2d096
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,32 @@


Interact with ChatGPT in terminal via chattool

## Installation

```bash
pip install askchat
```

## Usage

A simple way:
```bash
ask hello
```

Ask with more options via `askchat`:
```bash
# ask with a specific model
askchat hello -m "gpt-4"
```

Other options:
```bash
# current version
askchat -v
# Get debug log
askchat --debug
# get valid models
askchat --valid-models
```
2 changes: 1 addition & 1 deletion askchat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

__author__ = """Rex Wang"""
__email__ = '[email protected]'
__version__ = '0.0.2'
__version__ = '0.0.3'

from .askchat import ask
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import setup, find_packages

VERSION = '0.0.2'
VERSION = '0.0.3'

with open('README.md') as readme_file:
readme = readme_file.read()
Expand Down

0 comments on commit 1e2d096

Please sign in to comment.