Welcome to Elysia
Elysia is an agentic platform designed to use tools in a decision tree. A decision agent decides which tools to use dynamically based on its environment and context. You can use custom tools or use the pre-built tools designed to retrieve your data in a Weaviate cluster.
See the basic example to get started right away! Or if you want to make your own tools and customise Elysia, see how to easily add your own tools.
Get Started
To use Elysia, you need to either set up your models and API keys in your .env
file, or specify them in the config. See the setup page to get started.
Elysia can be used very simply:
from elysia import tool, Tree
tree = Tree()
@tool(tree=tree)
async def add(x: int, y: int) -> int:
return x + y
tree("What is the sum of 9009 and 6006?")
Elysia is pre-configured to be capable of connecting to and interacting with your Weaviate clusters!
from elysia import Tree
tree = Tree()
response, objects = tree(
"What are the 10 most expensive items in the Ecommerce collection?",
collection_names = ["Ecommerce"]
)
Installation
Usage
Elysia is free, open source, and available to anyone.
Unlike other agent-based packages, Elysia is pre-configured to run a wide range of tools and has a lot of capabilities straight away. For example, you could just call Elysia on your Weaviate collections and it will immediately and dynamically search your data, using custom queries with filters or aggregations.
Or you could customise Elysia to your liking, create your own custom tools and add them to the Elysia decision tree.
To use Elysia to search your data, you need a Weaviate cluster (or you can define your own custom tool to search another data source!).
Sign up to Weaviate! A 14 day sandbox cluster is free.
For more information on signing up to Weaviate, click here.
From your weaviate cluster, you can upload data via a CSV on the cloud console, or you can upload via the Weaviate APIs.
About
Check out the Github Repositories for the backend and the frontend
-
elysia (backend)
-
elysia-frontend (frontend)
Elysia was developed by Edward Schmuhl (frontend) and Danny Williams (backend). Check out our socials below:
Documentation built with mkdocs.