Right now Aeglos only supports langchain on python. We will be adding to this
very soon!
An API Key is required to use Aeglos. You can use
fvs0kViMdL4I2J0ocvs8Sa010QzoA6eN4Q1FKj4R
to trial Aeglos. To get a full licensed api key, please email us at team@aeglos.aiImport your necessary functions
Langchain Agents
Aeglos uses theguard
function to invoke a new AgentExecutor
from an Agent
and an array of Tools
. An example for this is shown below
agent_executor
as you would regularly.
Langchain Chains
Aeglos uses theguard_chain
function to guard chains. This function takes a chain in as input
and returns a protected chain. An example of this is shown below.
As of now, Aeglos only supports LCEL chains . When joining these, make sure to
guard_chain
each individual chain in the
final pipeline. An example of multiple chains being used is shown below.
guard_chain
function like a normal chain in all of your operations (whether batching queries,streaming, or performing asynchronous operations).