-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change config key name from `cloudflareUserId` to `cloudflareAccountId`
- Loading branch information
Showing
3 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,33 @@ | ||
# SaySomething | ||
|
||
A Minecraft Mod that connects villagers to AI models. | ||
|
||
## Description | ||
|
||
The mod uses `@cf/qwen/qwen1.5-14b-chat-awq` model on Cloudflare AI | ||
to enable players to interact with villagers via text. | ||
|
||
## Usage | ||
|
||
Put `$` sign at the beginning of your chat message | ||
to talk to villagers in front of you. | ||
|
||
Villagers may not respond if your message isn't related to them. | ||
|
||
## Configuration | ||
|
||
Configurations are in the `config/saysth-config.json`, you will see the content below: | ||
|
||
```json | ||
{ | ||
"cloudflareApiKey": "", | ||
"cloudflareAccountId": "", | ||
"personalities": [], | ||
"nameCandidates": [] | ||
} | ||
``` | ||
|
||
- `cloudflareApiKey`: A Cloudflare API key generated that has access to AI features. | ||
- `cloudflareAccountId`: Your Cloudflare account ID. | ||
- `personalities`: A list of string that describes the personality of a villager. | ||
- `nameCandidates`: A list of string of names that will be put on villagers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters