https://github.com/hfcred/splatgpt
Website for autocompleting Splatoon 3 gear builds by utilizing an AI model trained on over 15 million matches
https://github.com/hfcred/splatgpt
ai splatoon
Last synced: 7 months ago
JSON representation
Website for autocompleting Splatoon 3 gear builds by utilizing an AI model trained on over 15 million matches
- Host: GitHub
- URL: https://github.com/hfcred/splatgpt
- Owner: hfcRed
- Created: 2024-10-14T18:21:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-10T14:00:04.000Z (over 1 year ago)
- Last Synced: 2024-12-01T00:10:43.422Z (over 1 year ago)
- Topics: ai, splatoon
- Language: TypeScript
- Homepage: https://splatgpt.ink
- Size: 3.84 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SplatGPT
[](https://wakatime.com/badge/user/7100369a-eb08-483f-96e8-41accea7b5a0/project/ca2f961a-c0bb-45b2-b702-f129ffa79996)
Website for autocompleting Splatoon 3 gear builds by utilizing an AI model trained on over 15 million matches

---
## Tech Stack
- Svelte + SvelteKit
- Typescript
## Running Locally
If you dont already have NVM installed, download the latest `nvm-setup.zip` from [here](https://github.com/coreybutler/nvm-windows/releases), then extract the zip and run the installer.
If you are on a Unix based machine like Linux or MacOS, run the following command to install NVM:
```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
```
You can verify that NVM is installed by running:
```bash
nvm --version
```
After installing NVM run the following commands in the directory of the project:
- `nvm use` to switch to the required Node version.
- If the required version is not installed, you will be prompted to run the `nvm install` command.
- After installing the required version, run `nvm use` again
- `npm install` to install the dependencies
To start testing locally you can use the following commands:
- `npm run dev` to start a local dev server at `localhost:5173`
- `npm run build` to create a build of the website
- `npm run preview` to preview the build at `localhost:4173`
## Running Data Scripts
You can re-generate weapon and ability data by running `npm run create-weapon-data` and `npm run create-ability-data` to execute the scripts located in `/scripts`.