JacobGoldenArt / SocialAGI

Subroutines for AI Souls

Home Page:http://socialagi.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ€–+πŸ‘± SocialAGI

Subroutines for AI Souls

License: MIT Twitter

πŸ€” What is this?

SocialAGI offers developers clean, simple, and extensible abstractions for directing the cognitive processes of large language models (LLMs), critical for the creation of AI Souls. AI Souls will comprise thousands of linguistic instructions (formerly known as 'prompts'): our focus is on streamlining the management this complexity, freeing you to create more effective and engaging AI experiences.

πŸ’‘ Hosted example

Check out Meet Samantha

Running off SocialAGI

import { Soul, Blueprints } from "socialagi";

const samantha = new Soul(Blueprints.SAMANTHA);

samantha.on("says", (text) => {
  console.log("Samantha says: ", text);
});

samantha.on("thinks", (text) => {
  console.log("Samantha thinks: ", text);
});

samantha.tell("Hi Samantha!")

image

πŸ’« AI Souls

SocialAGI aims to simplify the developer experience as much as possible in creating agentic and embodied chatbots called AI Souls. Unlike traditional chatbots, digital souls have personality, drive, ego, and will.

We are solving problems all the way across the AI souls stack, including:

  • How do I create the most lifelike AI entity?
  • How do I quickly host an AI soul?
  • How do I manage dialog and cognitive memory?
  • How do I get away from boring technical details and instead sculpt personalities?

πŸ“– Repo structure

The repository has three main components

/example-webapp
/core
/integrations
  /discord_bots
  /telegram
/docs

πŸš€ Getting started

The easiest way to get started developing with socialagi is to check out the /example-webapp or explore the documentation.

🧠 Documentation

Check out the full documentation at socialagi.dev!

πŸ‘ Contributing

If this project is exciting to you, check out the issues, open a pull request, or simply hangout in the Social AGI Discord!

On the roadmap at a high level are:

  • Minimal API surfaces for designing AI cognition
  • New techniques to specify personality
  • Ways to design the conversations that constitute an identity
  • Coherent theory of mind behind AI cognition
  • Ways to test and debug AI souls

About

Subroutines for AI Souls

http://socialagi.dev

License:MIT License


Languages

Language:TypeScript 80.0%Language:JavaScript 20.0%