Crates.io | chatterpipe |
lib.rs | chatterpipe |
version | 0.1.4 |
source | src |
created_at | 2023-05-05 19:31:05.167076 |
updated_at | 2023-05-09 08:12:10.450937 |
description | Effortlessly extract AI-generated insights from your text files! This Rust-based CLI tool sends your text content to OpenAI's ChatCompletion API and pipes the output into your desired destination. Unleash the power of AI in your projects and enhance your text-processing workflows with ChatterPipe-rs. All you need is your OpenAI API key. |
homepage | |
repository | https://github.com/furnivall/chatterpipe-rs |
max_upload_size | |
id | 858000 |
size | 50,831 |
ChatterPipe is a CLI tool that lets you interact with powerful language models like GPT-4 to summarize text files. Just provide a text file as input and let ChatterPipe do its magic!
Install ChatterPipe using cargo:
cargo install chatterpipe
Before using ChatterPipe for the first time (or at any time of your choice), run the setup command to configure your custom parent prompt:
ctp setup
The default prompt is as follows:
Summarise the following in 300 tokens or less. Give your best attempt
You can also set a custom parent prompt for a single command using the -p
option:
ctp <text_file_path> -p "Your custom parent prompt"
An example of a possible use case for this would be something along the lines of:
ctp <yaml file> -p "lint this file for me"
To view the current parent prompt, run:
ctp current
Run ChatterPipe with the following command:
ctp <text_file_path> [--engine <engine>] [--raw]
Where:
--raw
is an optional flag to print the raw API response. Useful for debugging.ctp myfile.txt --engine g4
For example:
export OPENAI_API_KEY=<your_api_key_here>
Don't have an API key? Sign up at https://beta.openai.com/signup/
For more information on the OpenAI API, visit https://beta.openai.com/docs/
This project is licensed under the MIT License. See the LICENSE file for details.
Happy summarizing!