tempering-ai 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +64 -0
- package/dist/tempering-ai.js +32025 -0
- package/package.json +41 -0
package/README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# tempering-ai
|
|
2
|
+
|
|
3
|
+
`tempering-ai` is a command-line interface (CLI) application designed to serve as an interactive AI companion. Built with TypeScript and Bun, it leverages advanced AI models to provide conversational capabilities and assist users through interactive prompts directly in their terminal.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
* **Interactive AI Conversations**: Engage with an AI model directly from your command line.
|
|
8
|
+
* **Cross-Platform**: Binaries available for Linux, macOS, and Windows in the [GitHub Releases](https://github.com/osinnanna/tempering-ai/releases).
|
|
9
|
+
* **Easy Installation**: Installable as a global NPM package.
|
|
10
|
+
* **Fast and Efficient**: Built with Bun for a speedy development and runtime experience.
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
There are two ways to install `tempering-ai`:
|
|
15
|
+
|
|
16
|
+
### 1. Using NPM (Recommended)
|
|
17
|
+
|
|
18
|
+
You can install `tempering-ai` globally using NPM:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install -g tempering-ai
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
This will make the `tempering-ai` command available in your terminal.
|
|
25
|
+
|
|
26
|
+
### 2. From Binaries
|
|
27
|
+
|
|
28
|
+
Alternatively, you can download the appropriate binary for your operating system (Linux, macOS, or Windows) from the [GitHub Releases](https://github.com/osinnanna/tempering-ai/releases) page.
|
|
29
|
+
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
After installation, you can run the `tempering-ai` application by simply typing:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
tempering-ai
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Follow the on-screen prompts to interact with your AI companion.
|
|
39
|
+
|
|
40
|
+
## Development
|
|
41
|
+
|
|
42
|
+
For developers interested in contributing or modifying `tempering-ai`:
|
|
43
|
+
|
|
44
|
+
1. **Clone the repository:**
|
|
45
|
+
```bash
|
|
46
|
+
git clone https://github.com/osinnanna/tempering-ai.git
|
|
47
|
+
cd tempering-ai
|
|
48
|
+
```
|
|
49
|
+
2. **Install dependencies using Bun:**
|
|
50
|
+
```bash
|
|
51
|
+
bun install
|
|
52
|
+
```
|
|
53
|
+
3. **Build the application:**
|
|
54
|
+
```bash
|
|
55
|
+
bun run build
|
|
56
|
+
```
|
|
57
|
+
4. **Run the application:**
|
|
58
|
+
```bash
|
|
59
|
+
./dist/tempering-ai
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## License
|
|
63
|
+
|
|
64
|
+
This project is licensed under the MIT License.
|