LOL

Joey Wong b368be8e6b Re-enabled WebXR hai 1 ano
.github 257396f14a use literal newlines for template %!s(int64=2) %!d(string=hai) anos
.vscode 6f2dac4ab4 add debugging with vscode config %!s(int64=2) %!d(string=hai) anos
__mocks__ 652b9a94f4 basic jest / test setup %!s(int64=2) %!d(string=hai) anos
__tests__ 79e7316ed4 split chat processor to own fn %!s(int64=2) %!d(string=hai) anos
docs 870b3e24f0 External API for Agents: Rebase Docs lol hai 1 ano
public c38717277d renewable webxr hai 1 ano
scripts b6be872859 Support loading miximo animations %!s(int64=2) %!d(string=hai) anos
src c38717277d renewable webxr hai 1 ano
src-tauri 38c33d1f18 fix tauri build hai 1 ano
working 082dfcb460 script to install and start for osx %!s(int64=2) %!d(string=hai) anos
.dockerignore 0c09ac00b6 Added dockerfile and dockercompose %!s(int64=2) %!d(string=hai) anos
.env.local 93d8debc57 Resolved merge conflicts hai 1 ano
.eslintrc.json 189e01c336 use prettier inside npm run lint hai 1 ano
.gitbook.yaml 047591010e try again for docs %!s(int64=2) %!d(string=hai) anos
.gitignore 762dc834e3 add sentry hai 1 ano
.nvmrc 963e044b6f update next.js to latest version hai 1 ano
.prettierrc.js efdd2787c3 merge %!s(int64=2) %!d(string=hai) anos
Dockerfile 0c09ac00b6 Added dockerfile and dockercompose %!s(int64=2) %!d(string=hai) anos
LICENSE 6af281548f add semper to license %!s(int64=2) %!d(string=hai) anos
README.md 85472be2a8 feat: add OpenRouter chat provider support hai 1 ano
app-icon.png 6f4224639b app logo %!s(int64=2) %!d(string=hai) anos
docker-compose.yml 0c09ac00b6 Added dockerfile and dockercompose %!s(int64=2) %!d(string=hai) anos
github-actions-reporter.js 34d82d1845 add workflow for unit tests %!s(int64=2) %!d(string=hai) anos
i18next-parser.config.mjs 18af15aebf fix(i18n): all Chinese and German translation almost done %!s(int64=2) %!d(string=hai) anos
jest.config.mjs 652b9a94f4 basic jest / test setup %!s(int64=2) %!d(string=hai) anos
jest.setup.mjs 652b9a94f4 basic jest / test setup %!s(int64=2) %!d(string=hai) anos
next.config.js 762dc834e3 add sentry hai 1 ano
package-lock.json 93d8debc57 Resolved merge conflicts hai 1 ano
package.json 93d8debc57 Resolved merge conflicts hai 1 ano
postcss.config.js 6e687a81dc Initial Commit %!s(int64=3) %!d(string=hai) anos
sentry.client.config.ts fda7bba785 disable sentry properly outside of production hai 1 ano
sentry.edge.config.ts fda7bba785 disable sentry properly outside of production hai 1 ano
sentry.server.config.ts fda7bba785 disable sentry properly outside of production hai 1 ano
tailwind.config.js bb28598d08 settings wip %!s(int64=2) %!d(string=hai) anos
tsconfig.json b614950362 ignore electron dir %!s(int64=2) %!d(string=hai) anos
watch.json 6e687a81dc Initial Commit %!s(int64=3) %!d(string=hai) anos

README.md

Amica: Your friendly personal AI

If you like our project, please give us a star ⭐ on GitHub.
[![twitter](https://img.shields.io/badge/Twitter%20-black)](https://twitter.com/arbius_ai) [![License](https://img.shields.io/github/license/semperai/amica)](https://github.com/semperai/amica/blob/main/LICENSE) [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fsemperai%2Famica&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com) [![GitHub issues](https://img.shields.io/github/issues/semperai/amica?color=critical&label=Issues)](https://github.com/semperai/amica/issues?q=is%3Aopen+is%3Aissue) [![GitHub closed issues](https://img.shields.io/github/issues-closed/semperai/amica?color=success&label=Issues)](https://github.com/semperai/amica/issues?q=is%3Aissue+is%3Aclosed)

Amica allows you to converse with highly customizable 3D characters that can communicate via natural voice chat and vision, with an emotion engine that allows Amica to express feelings and more. Customize her any way you want with any AI technology.

Try Amica here on mobile, tablet or desktop

For Windows Users: Please create a new folder for Amica during installation to prevent the unintentional deletion of other files during uninstallation.

We just released Amica 1.2 with lots of new features. [Docs](https://docs.heyamica.com/) will be further updated soon, **watch the video to learn about what Amica 1.2 offers:** [![Video Title](https://img.youtube.com/vi/3zCN2IlxHrU/0.jpg)](https://www.youtube.com/watch?v=3zCN2IlxHrU) You can import VRM files, adjust the voice to fit the character, and generate response text that includes emotional expressions.

The various features of Amica mainly use and support the following technologies:

To see tutorials on configuring any of these with Amica please visit the official Amica documentation.

🛠️ Installation and running

To run this project locally, clone or download the repository.

git clone [email protected]:semperai/amica.git

Install the required packages.

npm install

After installing the packages, start the development web server using the following command:

npm run dev

Once started, please visit the following URL to confirm that it is working properly.

http://localhost:3000

📝 Configuration

Most of the configuration is done in the .env.local file. Reference the config.ts file for the available options.

OpenRouter Configuration

To use OpenRouter as a chat backend, set the following environment variables in your .env.local file:

  • NEXT_PUBLIC_OPENROUTER_APIKEY: Your OpenRouter API key (required)
  • NEXT_PUBLIC_OPENROUTER_URL: Custom OpenRouter API URL (optional, defaults to https://openrouter.ai/api/v1)
  • NEXT_PUBLIC_OPENROUTER_MODEL: Default OpenRouter model (optional, defaults to openai/gpt-3.5-turbo)

    amica
    ├── .env.local
    ├── src
    │   ├── utils
    │   │   └── config.ts
    

📦 Desktop Application

Amica uses Tauri to build the desktop application.

To develop the desktop application, use the following command:

npm run tauri dev

📖 Documentation

View the documentation for more information on how to configure and use Amica.

📜 History

This project originated as a fork of ChatVRM by Pixiv:

https://pixiv.github.io/ChatVRM

🔒 License

  • The majority of this project is released under the MIT license as found in the LICENSE file.
  • Assets such as 3D models and images are released under their authors respective licenses.

✨ Star History

Star History

🤗 Contributors