No project description provided
Project description
Elroy
Elroy is a scriptable, memory augmented AI personal assistant, accessible from the command line. It features:
- Long-term Memory: Automatic memory recall of past conversations
- Goal Tracking: Track and manage personal/professional goals
- Simple scripting interface: Script Elroy with minimal configuration overhead
- CLI Tool interface: Quickly review memories Elroy creates for you, or jot quick notes for Elroy to remember.
- MCP server: Surface conversation memories to other tools via MCP
Quickstart
The fastest way to get started is using the install script:
curl -LsSf https://raw.githubusercontent.com/elroy-bot/elroy/main/scripts/install.sh | sh
Or install manually with UV:
# Install UV first
curl -LsSf https://astral.sh/uv/install.sh | sh
# Then install Elroy
uv pip install elroy
For detailed installation instructions including Docker and source installation options, see our Installation Guide.
Basic Usage
Once installed locally you can:
# Start the chat interface
elroy chat
# Or just 'elroy' which defaults to chat mode
elroy
# Process a single message and exit
elroy message "Say hello world"
# Force use of a specific tool
elroy message "Create a goal" --tool create_goal
# Elroy also accepts stdin
echo "Say hello world" | elroy
Memory and Goal Tools
Elroy's tools allow it to create and manager memories and goals. In the background, redundant memories are consolidated.
As goals or memories become relevant to the conversation, they are recalled into context. A Relevant Context
panel makes all information being surfaced to the assistant available to the user.
All commands available to the assisstant are available to the user via /
commands.
For a guide of what tools are available and what they do, see: tools guide.
For a full reference of tools and their schemas, see: tools schema reference
Configuration
Elroy is designed to be highly customizable, including CLI appearance and memory consolidation parameters.
For full configuration options, see configuration documentation.
Supported Models
Elroy supports OpenAI, Anthropic, Google (Gemini), and any OpenAI-compatible API's.
Model aliases are available for quick selection:
--sonnet
: Anthropic's Sonnet model--opus
: Anthropic's Opus model--4o
: OpenAI's GPT-4o model--4o-mini
: OpenAI's GPT-4o-mini model--o1
: OpenAI's o1 model--o1-mini
: OpenAI's o1-mini model
Scripting Elroy
You can script with elroy, using both the CLI package and the Python interface.
Python scripts
Elroy's API interface accepts the same parameters as the CLI. Scripting can be as simple as:
ai = Elroy()
# some other task
ai.remember("This is how the task went")
# Elroy will automatically reference memory against incoming messages
ai.message("Here are memory augmented instructions")
To see a working example using, see release_patch.py
Shell scripting
The chat interface accepts input from stdin, so you can pipe text to Elroy:
# Process a single question
echo "What is 2+2?" | elroy chat
# Create a memory from file content
cat meeting_notes.txt | elroy remember
# Use a specific tool with piped input
echo "Buy groceries" | elroy message --tool create_goal
MCP Server
To configure an MCP client to use Elroy:
- Ensure
uv
is installed - Use
elroy mcp print-config
to get the server's json configuration - Paste the value in the client's MCP server config.
MCP support is experimental, please file issues if you encounter problems!
License
Distributed under the Apache 2.0 license. See LICENSE for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file elroy-0.0.79.tar.gz
.
File metadata
- Download URL: elroy-0.0.79.tar.gz
- Upload date:
- Size: 40.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53d8e174f719d63469e85cd420bd24eeb7f8a2459b408877833ab6840cbdacdc |
|
MD5 | 58934b858355bf1e4ea3102f7b8fd55c |
|
BLAKE2b-256 | 853e5986367e250d7aa489e0275b1b6c72a911c1f2f62d89e7665342ea9f97e7 |
File details
Details for the file elroy-0.0.79-py3-none-any.whl
.
File metadata
- Download URL: elroy-0.0.79-py3-none-any.whl
- Upload date:
- Size: 157.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e845b59781ec0f86f78d91c7e27be84ae3ab3da62c3081c059ccbadc4ae76e34 |
|
MD5 | 17b50293a7361ecb2aedfcbb08bf4516 |
|
BLAKE2b-256 | 0d045899d8793292d9bc32e4d35106bdf67427fdfbbed81f758325fd16943875 |