Giter VIP home page Giter VIP logo

agnai's Introduction

Agnaistic

AI Roleplay Chat with Personalised Characters with your favorite AI services.

Live Version | Discord

You can visit the live version at Agnai.chat

Based upon the early work of https://github.com/PygmalionAI/galatea-ui.

Quick Start

Important! MongoDB and Redis are optional! Agnaistic will run in "Guest Only" mode if MongoDB is not available.

Agnaistic is published as an NPM package and can be installed globally:

# Install or update:
> npm install agnai -g
> agnai

# View launch options:
> agnai help

# Run with the Pipeline features
> agnai --pipeline

When using the NPM package, your images and JSON files will be stored in: HOME_FOLDER/.agnai.
E.g. Linux: /home/sceuick/.agnai/ Mac: /Users/sceuick/.agnai Windows: C:\Users\sceuick\.agnai.

Features

  • Group Conversations: Multiple users with multiple bots
  • Multiple AI services: Support for Kobold, Novel, AI Horde, Goose, OpenAI, Claude, Replicate, OpenRouter, Mancer
  • Multiple persona schema formats: W++, Square bracket format (SBF), Boostyle, Plain text
  • Multi-tenancy:
    • User authentication
    • User settings: Which AI service to use and their own settings
    • User generation presets
  • Subscriptions
  • Memory/Lore books
  • Generate characters with AI
  • Image generation using third-party services
  • Optional pipeline features
    • Long-term memory
    • Wikipedia Article and PDF embedding

Running Manually

  1. Install Node.js
  2. Install MongoDB Optional
    • The database is optional. Agnaistic will run in anonymous-only mode if there is no database available.
    • Anonymous users have their data saved to the browser's local storage. Your data will "persist", but not be shareable between devices or other browsers. Clearing your browser's application data/cookies will delete this data.
  3. Download the project: git clone https://github.com/agnaistic/agnai or download it
  4. From inside the cloned/unpacked folder in your terminal/console:
    • npm run deps
      • Do this every time you update AgnAI, just in case.
      • This will install the dependencies using pnpm v8
    • npm run build:all
    • Build and run the project in watch mode:
      • Mac/Linux: npm run start
      • Windows: npm run start:win
    • Build and run the project with Local Tunnel:
      • Mac/Linux: npm run start:public
      • Windows: npm run start:public:win

Running with Docker

  1. Clone the project
  2. With MongoDB: docker compose -p agnai -f self-host.docker-compose.yml up -d
  3. Without MongoDB: docker run -dt --restart=always -p 3001:3001 ghcr.io/agnaistic/agnaistic:latest
    • -dt Run the container detached
    • --restart=always Restart at start up or if the server crashes
    • -p 3001:3001 Expose port 3001. Access the app at http://localhost:3001

Self-Hosting Settings

To try and cater for the small tweaks and tuning that people need for their specific needs at an application level we have settings.json.
You can create a file called settings.json at the root level to apply some changes across the entire application.
If you have a specific need for your application, this is the place to ask to have it catered for.

I will try and find a balance between catering to these requests and not having them get out of control in the codebase.

Examples of requests that are suited for this:

  • I want a "default memory book" applied to all users.
  • I want to use a different set of end tokens than the ones provided.
  • I want to disable anonymous access

settings.json

You can copy or look at template.settings.json for an example of all of the available settings. You will need to restart Agnai for changes to take effect.

Currently supported custom settings:

  • baseEndTokens: Add extra response end tokens to the base set.

For Developers

Recommended Development Tooling

I'd highly recommend using VSCode with the following extensions:

  • Prettier - Code formatter: For auto-formatting
  • Tailwind CSS Intellisense: For auto-completion and intellisense with Tailwind CSS classes
  • And adding "editor.formatOnSave": true to your VSCode settings.json to auto-format with Prettier

When using pnpm start, the Node.JS server is run using --inspect. This means you can use various Inspector Clients for debugging.

Tech Stack

The important parts of the stack are:

Starting

# Install dependencies - Always run this after pulling changes
> npm run deps

# Run MongoDB using Docker
> npm run up

# Start the frontend, backend, and python service
# Mac/Linux
> npm start

# Windows
> npm run start:win

# Install and run Pipeline API
# If required, this will update the dependencies before running the API
> npm run model # Install poetry into a virtual environment

# Run everything with a single commmand:
> npm run start:all # Linux and OSX
> npm run start:all:win # Windows

At this point, you should be able to access http://localhost:3001 in your browser to see the UI.

You can also try to access the frontend with hot reloading at http://localhost:1234

Recommended Developer Tooling

  • Redux Dev Tools
    • The front-end application state is wired up to the "Redux Dev Tools" Chrome extension.
  • NodeJS debugger
    • The pnpm start script launchs the NodeJS API using the --inspect flag
    • Attach using the default launch task in VSCode (F5)
    • Or go to the url chrome://inspect to use the debugger
  • Python dependency management using Poetry - https://python-poetry.org/docs/cli
    • .model/bin/poetry [...args]

Format and Type Checking

The project uses ESLint for linting, Prettier for enforcing code style and TypeScript to check for type errors. When opening a PR, please make sure you're not introducing any new errors in any of these checks by running:

# auto-fixes any style problems
$ pnpm run format:fix

# runs the TypeScript compiler so any type errors will be shown
$ pnpm run typecheck

agnai's People

Contributors

sceuick avatar malfoyslastname avatar 0x000011b avatar acidbubbles avatar cingorn avatar ewof avatar cousincrusher avatar khanonnie avatar stevenksmith avatar sammcheese avatar 152334h avatar ahme-dev avatar chadfurman avatar eevbb avatar erinmaybe avatar silver-f0x avatar alpindale avatar cncanon1 avatar tehnut avatar pleasant-cry avatar tehvenomm avatar teargosling avatar dordle avatar gd1551 avatar gramedcart avatar lt455067 avatar sandwichdoge avatar tarcs999 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.