Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ This will produce the `uwu-cli` binary in the `dist/` build output directory.

```bash
chmod +x dist/uwu-cli
mv dist/uwu-cli /usr/local/bin/uwu-cli
mv dist/uwu-cli /usr/local/bin/uwu

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The uwu-cli binary name is intended and preffered. The binary is not supposed to be called directly -- you are instead supposed to create a function named uwu that calls uwu-cli under the hood. Having the binary called uwu will conflict with the function name.

```

### 4. Configuration
Expand Down Expand Up @@ -125,7 +125,7 @@ Uses the native Google Gemini API.
{
"type": "Gemini",
"apiKey": "your-google-api-key",
"model": "gemini-pro"
"model": "gemini-2.5-pro"
}
```

Expand Down
2 changes: 1 addition & 1 deletion sample_configs/gemini.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"type": "Gemini",
"apiKey": "your-google-api-key",
"model": "gemini-pro"
"model": "gemini-2.5-pro"
}