Skip to content

Releases: mattvr/ShellGPT

0.4.1

01 Jul 16:37
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Adds more verbose logs when passing --debug (now sent to stderr instead of stdout)

Full Changelog: 0.4.0...0.4.1

0.4.0

13 Mar 17:36
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Adds support for generating embeddings, use gpt --embed "The quick brown fox jumped over the lazy dog."
    • Supports --model and --dims` parameters.
  • [2nd attempt] Always throw errors if returned #23

Full Changelog: 0.3.9...0.4.0

0.3.9

12 Mar 16:57
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Always throw errors if returned #23

Full Changelog: 0.3.8...0.3.9

0.3.8

09 Mar 20:03
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Fix auto-update version issues from #18

Full Changelog: 0.3.6...0.3.8

0.3.6

08 Mar 18:40
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Potential fix for windows install issue
  • Support sending requests to custom API URLs (which support the OpenAI schema) using OPENAI_CHAT_URL and OPENAI_IMG_URL env vars.

Full Changelog: 0.3.5...0.3.6

0.3.5

21 Feb 06:28
Compare
Choose a tag to compare

⚠️ Strongly recommend updating to this version — includes a bugfix with early cutoff, which recent OpenAI updates may cause to occur more often.

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • New: Adds --img flag which generates an image using OpenAI DALL-E 2 endpoint.
    • e.g. gpt --img "a corgi wearing cashmere pants hacking into myspace.com"
  • New: Adds --lang flag, which allows customizing the language output by --code or other requests.
  • Improved: Default to GPT-4-turbo (or GPT-3.5-turbo in fast mode).
  • Fix: Resolves an issue with early cutoff, which has started occurring more often recently.
  • Fix: Tweaks prompts for better compliance using latest GPT models.

Full Changelog: 0.3.3...0.3.5

0.3.3

24 Jul 04:42
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Support pasting newlines in --repl mode
  • Default to gpt-4 again, now that it's generally available.

0.3.2

24 Jul 04:36
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Support pasting newlines in --repl mode

0.3.1

03 Jul 21:04
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Allows bypassing wpm buffer, for instant output.
    • Use --wpm=-1 (or any number <= 0).
  • Adds support for wpm key in config.
    • Manually edit ~/.gpt/config.json and add a line like "wpm": 1234.
  • Adds --as-sys to send a message to GPT as system rather than user.
  • Adds --bump-sys to bump the most recent system message to the most recent position.
    • This generally improves adherence to the system prompt.

0.3.0

29 Apr 17:55
Compare
Choose a tag to compare

Installation

Install this version by running the following command:

deno run -rA https://deno.land/x/shellgpt/install.ts

Changelog

  • Defaults to GPT-3.5 since many people don't have GPT-4 access
  • Adds --debug flag
  • Allows configuring API key via gpt --config