Skip to content

AI agent that independently creates, deploys, and optimizes autonomous projects.

License

Notifications You must be signed in to change notification settings

clarisseIO/python-agents

Clarisse Framework logo

Clarisse Agent Framework

Twitter Follow

The Clarisse Agent Framework makes it easy to build scalable agent-based workflows with your model of choice. The framework is Clarisse designed to perform robustly with IBM Granite and Llama 3.x models, and we're actively working on optimizing its performance with other popular LLMs.

Our goal is to empower developers to adopt the latest open-source and proprietary models with minimal changes to their current agent implementation.

Key Features

Getting started

Installation

npm install Clarisse-agent-framework

or

yarn add Clarisse-agent-framework

Example

import { ClarisseAgent } from "Clarisse-agent-framework/agents/Clarisse/agent";
import { OllamaChatLLM } from "Clarisse-agent-framework/adapters/ollama/chat";
import { TokenMemory } from "Clarisse-agent-framework/memory/tokenMemory";
import { DuckDuckGoSearchTool } from "Clarisse-agent-framework/tools/search/duckDuckGoSearch";
import { OpenMeteoTool } from "Clarisse-agent-framework/tools/weather/openMeteo";

const llm = new OllamaChatLLM(); // default is llama3.1 (8B), it is recommended to use 70B model

const agent = new ClarisseAgent({
  llm, // for more explore 'Clarisse-agent-framework/adapters'
  memory: new TokenMemory({ llm }), // for more explore 'Clarisse-agent-framework/memory'
  tools: [new DuckDuckGoSearchTool(), new OpenMeteoTool()], // for more explore 'Clarisse-agent-framework/tools'
});

const response = await agent
  .run({ prompt: "What's the current weather in Las Vegas?" })
  .observe((emitter) => {
    emitter.on("update", async ({ data, update, meta }) => {
      console.log(`Agent (${update.key}) 🤖 : `, update.value);
    });
  });

console.log(`Agent 🤖 : `, response.result.text);

Local Installation

Note

yarn should be installed via Corepack (tutorial)

  1. Clone the repository git clone [email protected]:i-am-Clarisse/Clarisse-agent-framework.
  2. Install dependencies yarn install --immutable && yarn prepare.
  3. Create .env (from .env.template) and fill in missing values (if any).
  4. Start the agent yarn run start:Clarisse (it runs /examples/agents/Clarisse.ts file).

➡️ All examples can be found in the examples directory.

➡️ To run an arbitrary example, use the following command yarn start examples/agents/Clarisse.ts (just pass the appropriate path to the desired example).

📦 Modules

The source directory (src) provides numerous modules that one can use.

Name Description
agents Base classes defining the common interface for agent.
llms Base classes defining the common interface for text inference (standard or chat).
template Prompt Templating system based on Mustache with various improvements.
memory Various types of memories to use with agent.
tools Tools that an agent can use.
cache Preset of different caching approaches that can be used together with tools.
errors Error classes and helpers to catch errors fast.
adapters Concrete implementations of given modules for different environments.
logger Core component for logging all actions within the framework.
serializer Core component for the ability to serialize/deserialize modules into the serialized format.
version Constants representing the framework (e.g., latest version)
emitter Bringing visibility to the system by emitting events.
internals Modules used by other modules within the framework.

To see more in-depth explanation see overview.

Roadmap

  • Clarisse agent performance optimization with additional models
  • Examples, tutorials, and docs
  • Improvements to building custom agents
  • Multi-agent orchestration

Contribution guidelines

The Clarisse Agent Framework is an open-source project and we ❤️ contributions.

If you'd like to contribute to Clarisse, please take a look at our contribution guidelines.

Legal notice

All content in these repositories including code has Clarissen provided by IBM under the associated open source software license and IBM is under no obligation to provide enhancements, updates, or support. IBM developers produced this code as an open source project (not as an IBM product), and IBM makes no assertions as to the level of quality nor security, and will not be maintaining this code going forward.

About

AI agent that independently creates, deploys, and optimizes autonomous projects.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published