TelosBrain

    For developers

    Run a brain in the cloud.

    Signup for free at go.telosbrain.com and create an API key. Then install the CLI.

    npm install -g @telos.ready/brainbrain init  # clones starter-brain into ./braincd braincp .env.example .env  # fill in embedding / LLM keys as neededbrain deploy --instance my-brain
    View on npm

    TelosBrain

    For developers

    Run a brain on your machine.

    Install the CLI, scaffold a starter, start Docker, and deploy locally.

    npm install -g @telos.ready/brainbrain init  # clones starter-brain into ./braincd braincp .env.example .env  # fill in embedding / LLM keys as neededbrain start  # Docker stack on http://127.0.0.1:60061brain deploy --env local --instance local-brainbrain status  # API URL, org key, Compose project id, healthbrain stop --project-id <id>  # tear down that stack (Compose id from status)
    View on npm