typo fix
This commit is contained in:
46
README.md
46
README.md
@@ -53,20 +53,20 @@ Switch between different models and providers easily.
|
||||
View current settings:
|
||||
|
||||
```bash
|
||||
finishte config
|
||||
finish config
|
||||
```
|
||||
|
||||
Change the endpoint or model:
|
||||
|
||||
```bash
|
||||
finishte config set endpoint http://192.168.1.100:1234/v1/chat/completions
|
||||
finishte config set model your-model-name
|
||||
finish config set endpoint http://192.168.1.100:1234/v1/chat/completions
|
||||
finish config set model your-model-name
|
||||
```
|
||||
|
||||
Select a model interactively:
|
||||
|
||||
```bash
|
||||
finishte model
|
||||
finish model
|
||||
```
|
||||
|
||||
## Usage
|
||||
@@ -89,8 +89,8 @@ Natural language works too:
|
||||
Test it without executing:
|
||||
|
||||
```bash
|
||||
finishte command "your command"
|
||||
finishte command --dry-run "your command"
|
||||
finish command "your command"
|
||||
finish command --dry-run "your command"
|
||||
```
|
||||
|
||||
## Installation
|
||||
@@ -102,7 +102,7 @@ The fastest way to get started:
|
||||
```bash
|
||||
curl -sSL https://git.appmodel.nl/Tour/finish/raw/branch/main/docs/install.sh | bash
|
||||
source ~/.bashrc # or ~/.zshrc for zsh
|
||||
finishte model
|
||||
finish model
|
||||
```
|
||||
|
||||
### Package Managers
|
||||
@@ -112,7 +112,7 @@ finishte model
|
||||
```bash
|
||||
brew tap appmodel/finish
|
||||
brew install finish
|
||||
finishte install
|
||||
finish install
|
||||
source ~/.bashrc
|
||||
```
|
||||
|
||||
@@ -123,7 +123,7 @@ Download the `.deb` package from [releases](https://git.appmodel.nl/Tour/finish/
|
||||
```bash
|
||||
sudo dpkg -i finish_*.deb
|
||||
sudo apt-get install -f # Install dependencies
|
||||
finishte install
|
||||
finish install
|
||||
source ~/.bashrc
|
||||
```
|
||||
|
||||
@@ -145,9 +145,9 @@ docker-compose exec finish bash
|
||||
|
||||
Inside the container:
|
||||
```bash
|
||||
finishte install
|
||||
finish install
|
||||
source ~/.bashrc
|
||||
finishte model # Configure your LLM endpoint
|
||||
finish model # Configure your LLM endpoint
|
||||
```
|
||||
|
||||
### From Source
|
||||
@@ -157,7 +157,7 @@ git clone https://git.appmodel.nl/Tour/finish.git finish
|
||||
cd finish
|
||||
chmod +x finish.sh
|
||||
sudo ln -s $PWD/finish.sh /usr/local/bin/finish
|
||||
finishte install
|
||||
finish install
|
||||
source ~/.bashrc
|
||||
```
|
||||
|
||||
@@ -182,16 +182,16 @@ source ~/.bashrc
|
||||
## Commands
|
||||
|
||||
```bash
|
||||
finishte install # Set up finishte
|
||||
finishte remove # Uninstall
|
||||
finishte config # Show/edit configuration
|
||||
finishte model # Select model
|
||||
finishte enable # Enable completions
|
||||
finishte disable # Disable completions
|
||||
finishte clear # Clear cache and logs
|
||||
finishte usage # Show usage statistics
|
||||
finishte system # Show system information
|
||||
finishte --help # Show help
|
||||
finish install # Set up finishte
|
||||
finish remove # Uninstall
|
||||
finish config # Show/edit configuration
|
||||
finish model # Select model
|
||||
finish enable # Enable completions
|
||||
finish disable # Disable completions
|
||||
finish clear # Clear cache and logs
|
||||
finish usage # Show usage statistics
|
||||
finish system # Show system information
|
||||
finish --help # Show help
|
||||
```
|
||||
|
||||
## Providers
|
||||
@@ -213,7 +213,7 @@ Clone and link for development:
|
||||
git clone https://git.appmodel.nl/Tour/finish.git finish
|
||||
cd finish
|
||||
ln -s $PWD/finishte.sh $HOME/.local/bin/finish
|
||||
finishte install
|
||||
finish install
|
||||
```
|
||||
|
||||
### Running Tests
|
||||
|
||||
Reference in New Issue
Block a user