Skip to content

Commit

Permalink
feat: remove WIP flags
Browse files Browse the repository at this point in the history
  • Loading branch information
efugier committed Nov 13, 2023
1 parent efbb929 commit 4115f0e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "smartcat"
version = "0.1.12"
version = "0.1.13"
authors = ["Emilien Fugier <[email protected]>"]
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"

Expand Down Expand Up @@ -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 🐈‍⬛
"""
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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)
```

Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4115f0e

Please sign in to comment.