Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
**BREAKING CHANGES**
- remove `-i` and `-p`, now infer automatically if you are referring a template or writting input
- rename most arguments
- remove after_input and system_message (were not used)
- add support for multiple context patterns
- add char limit to prevent high cost mistakes (ask for user input)

**CODE IMPROVEMENTS**
- friendlier UX
- removed a lot of useless stuff
- better separation of concerns
- fixed a bunch of bugs
  • Loading branch information
efugier committed Apr 19, 2024
1 parent d4c0639 commit 5c25b30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "smartcat"
version = "0.7.4"
version = "1.0.0"
authors = ["Emilien Fugier <[email protected]>"]
description = '''
Putting a brain behind `cat`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ vim problem_solving.md
If you wan to continue the conversation, write your new question as a comment and repeat
the previous step with `-e -r`.
> This allows you to keep track of your questions and forms a nice reusable document.
> This allows you to keep track of your questions and make a nice reusable document.
```


Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const DEFAULT_PROMPT_NAME: &str = "default";
#[command(
name = "smartcat (sc)",
author = "Emilien Fugier",
version = "0.7.4",
version = "1.0.0",
about = "Putting a brain behind `cat`. CLI interface to bring language models in the Unix ecosystem 🐈‍⬛",
long_about = None,
after_help = "Examples:
Expand Down

0 comments on commit 5c25b30

Please sign in to comment.