diff --git a/Cargo.toml b/Cargo.toml index a626326..aa6048a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "smartcat" -version = "0.1.12" +version = "0.1.13" authors = ["Emilien Fugier "] description = ''' Putting a brain behind `cat`. -WIP cli interface to bring language models in the Unix ecosystem 🐈‍⬛ +CLI interface to bring language models in the Unix ecosystem 🐈‍⬛ ''' license = "MIT OR Apache-2.0" edition = "2021" homepage = "https://github.com/efugier/smartcat" repository = "https://github.com/efugier/smartcat" -keywords = ["cli", "pipe", "llm", "ai", "chatgpt"] +keywords = ["cli", "pipe", "cat", "ai", "chatgpt"] categories = ["command-line-utilities", "text-processing"] readme="README.md" @@ -40,5 +40,5 @@ assets = [ ] extended-description = """\ Putting a brain behind `cat`. -WIP cli interface to bring language models in the Unix ecosystem 🐈‍⬛ +CLI interface to bring language models in the Unix ecosystem 🐈‍⬛ """ diff --git a/README.md b/README.md index cf9d9d4..d3f4e8f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # smartcat (sc) 🐈‍⬛ -Puts a brain behind `cat`! WIP cli interface to bring language models in the Unix ecosystem 🐈‍⬛ +Puts a brain behind `cat`! CLI interface to bring language models in the Unix ecosystem and allow power users to make the most out of llms. 🐈‍⬛ - [Installation](#installation) - [A few examples to get started](#a-few-examples-to-get-started) @@ -67,7 +67,7 @@ A `default` prompt is needed for `smartcat` to know which api and model to hit. Ask anything without leaving you dear terminal ``` -sc -i "what's a sed command to remove trailaing whitespaces at the end of all non-markdown files?" +sc -i "sed command to remove trailaing whitespaces at the end of all non-markdown files?" > sed -i '' 's/[ \t]*$//' *.* !(*.md) ``` @@ -254,7 +254,10 @@ cargo test -- --test-threads=1 Smartcat has reached an acceptable feature set. The focus is now on upgrading the codebase quality as I hadn't really touched rust since 2019 and it shows. -#### TODO/Ideas: +#### TODO - make it available on homebrew + +#### Ideas: + - interactive mode to have conversations and make the model iterate on the last answer diff --git a/src/main.rs b/src/main.rs index fb4e4b3..1a572bd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,7 +16,7 @@ mod config; name = "smartcat (sc)", author = "Emilien Fugier", version = "0.1", - about = "Putting a brain behind `cat`. WIP cli interface to bring language models in the Unix ecosystem 🐈‍⬛", + about = "Putting a brain behind `cat`. CLI interface to bring language models in the Unix ecosystem 🐈‍⬛", long_about = None )] struct Cli {