diff --git a/README.md b/README.md index bf62e97..7611fd0 100644 --- a/README.md +++ b/README.md @@ -68,8 +68,9 @@ Estimated cost (usd): $0.0016 - Slow - Small articles take ~20 seconds, longer articles and videos take a few minutes. There is probably some more optimization to be had. - Cost - - Can be expensive - by default, this uses the "gpt-3.5-turbo" model, which costs $0.002 / 1000 tokens. In the future, I may make the model customizable to allow for cheaper models. + - Can be expensive - by default, this uses the "gpt-3.5-turbo" model, which costs $0.002 / 1000 tokens. - To minimize cost, the library currently limits the number of input characters to 120,000. This limits the cost of a request to a maximum of ~$0.062. In the future, I may add a flag to modify or remove this limit. + - If you pass `--cheap` to the command line, the ada model will be used, which is 5x cheaper, but not very good. To illustrate speed and cost: [This wikipedia page](https://en.wikipedia.org/wiki/List_of_common_misconceptions) hits the maximum limit: diff --git a/setup.py b/setup.py index 075b1d3..3ec63fd 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="tldrwl", - version="1.0.1", + version="1.1.0", author="Jacob Rodal", author_email="dev@jrodal.com", description="Too long, didn't read/watch/listen",