Metadata-Version: 2.1
Name: planning-library
Version: 0.1.4
Summary: LangChain-based library with planning algorithms for AI Agents.
License: MIT
Author: Alexandra Eliseeva
Author-email: alexandra.eliseeva@jetbrains.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: gymnasium (>=0.29.1,<0.30.0)
Requires-Dist: langchain (>=0.1.4,<0.2.0)
Requires-Dist: langchain-core (>=0.1.30,<0.2.0)
Requires-Dist: langgraph (>=0.0.26,<0.0.27)
Requires-Dist: urllib3 (<1.27)
Description-Content-Type: text/markdown

# 🤖✨ Planning Library

Library with planning algorithms for AI Agents built with [LangChain](https://www.langchain.com/) and [LangGraph](https://langchain-ai.github.io/langgraph/).

## Installation

### As a package

* For Poetry:

    ```shell
    poetry add planning-library
    ```

* For pip:

    ```shell
    pip install planning-library
    ```

### For development

#### Step 0: Install prerequisites

In general, the only prerequisite is :snake: Python. However, note the [TextWorld requirements](https://github.com/microsoft/TextWorld/tree/main?tab=readme-ov-file#requirements) if you run into any issues.

> You can use [pyenv](https://github.com/pyenv/pyenv) to set the specific Python version.  

#### Step 2: Clone repository

```
git clone git@github.com:JetBrains-Research/planning-library.git
```

#### Step 3: Install Python dependencies

* For Poetry: run `poetry install`.
    * **Note**. If you do not need to run code quality checks or to run examples, you can exclude the corresponding dependencies groups: `poetry install --without dev,examples`  

## Quick Tour

Currently, we have two types of strategies: **custom strategies** and
**[LangGraph](https://github.com/langchain-ai/langgraph/tree/main) strategies**.

### Custom strategies

Custom strategies follow the interface provided
by [`BaseCustomStrategy`](planning_library/strategies/base_strategy.py).

**Example:** [Tree of Thoughts + DFS](planning_library/strategies/tot_dfs/tot_strategy.py)

#### Initializing strategy

Each custom strategy can be created by invoking a static method `create` with at least agent and tools.

```python
from planning_library.strategies import TreeOfThoughtsDFSStrategy

agent = ...  # any runnable that follows either RunnableAgent or RunnableMultiActionAgent
tools = [...]  # any sequence of tools
strategy_executor = TreeOfThoughtsDFSStrategy.create(
    agent=agent,
    tools=tools,
)
```

Some strategies contain other meaningful components (e.g., an evaluator, which is responsible for evaluating
intermediate steps). :construction: We will provide some default implementations for such components, but they can also
be redefined with custom runnables tailored for specific tasks.

#### Using strategy

Each custom strategy is an instance of [`Chain`](https://python.langchain.com/docs/modules/chains/) and mostly can be
used the same
way as the default [`AgentExecutor`](https://python.langchain.com/docs/modules/agents/quick_start#create-the-agent) from
LangChain.

```python
strategy_executor.invoke({"inputs": "Hello World"})
```

### LangGraph strategies

Strategies powered by [LangGraph library](https://github.com/langchain-ai/langgraph) follow the interface provided
by [`BaseLangGraphStrategy`](planning_library/strategies/base_strategy.py).

**Example:** [Reflexion](planning_library/strategies/reflexion/reflexion_strategy.py)

#### Initializing strategy

Each LangGraph strategy can be created by invoking a static method `create` with (at least) agent and tools.

```python
from planning_library.strategies import ReflexionStrategy

agent = ...  # any runnable that follows either RunnableAgent or RunnableMultiActionAgent
tools = [...]  # any sequence of tools
strategy_graph = ReflexionStrategy.create(agent=agent, tools=tools)
```

Some strategies contain other meaningful components (e.g., an evaluator, which is responsible for evaluating
intermediate steps). :construction: We will provide some default implementations for such components, but they can also
be redefined with custom runnables tailored for specific tasks.

#### Using strategy

[`BaseLangGraphStrategy.create`](planning_library/strategies/base_strategy.py) returns a
compiled [`StateGraph`](https://github.com/langchain-ai/langgraph?tab=readme-ov-file#stategraph) that exposes the same
interface as any LangChain runnable.

```python
strategy_graph.invoke({"inputs": "Hello World"})
```

## Available Strategies

|              Name              |                                   Implementation                                   |   Type    |                                                Paper                                                 |
|:------------------------------:|:----------------------------------------------------------------------------------:|:---------:|:----------------------------------------------------------------------------------------------------:|
| Tree of Thoughts + DFS / DFSDT | [`TreeOfThoughtsDFSStrategy`](planning_library/strategies/tot_dfs/tot_strategy.py) |  Custom   | [:scroll: ToT](https://arxiv.org/abs/2305.10601), [:scroll: DFSDT](https://arxiv.org/abs/2307.16789) |
|           Reflexion            | [`ReflexionStrategy`](planning_library/strategies/reflexion/reflexion_strategy.py) | LangGraph |                             [:scroll:](https://arxiv.org/abs/2303.11366)                             |
|             ADaPT              |       [`ADaPTStrategy`](planning_library/strategies/adapt/adapt_strategy.py)       |  Custom   |                             [:scroll:](https://arxiv.org/abs/2311.05772)                             |
|          Simple/ReAct          |     [`SimpleStrategy`](planning_library/strategies/simple/simple_strategy.py)      |  Custom   |                             [:scroll:](https://arxiv.org/abs/2210.03629)                             |

## Available Environments

### :two::four: Game of 24

> Game of 24 is a mathematical reasoning task. The goal is to reach the number 24 by applying arithmetical operations
> to four given numbers. See :scroll: [Tree of Thoughts](https://arxiv.org/abs/2305.10601) paper for more details.

Our implementation of Game of 24 is available under [`environments/game_of_24`](environments/game_of_24) folder. It
includes a set of prompts, a set of tools and examples of running available strategies on Game of 24.

* Common:
    * [Gymnasium](https://gymnasium.farama.org/) env for Game of
      24: [`environments/game_of_24/common/environment.py`](environments/game_of_24/common/environment.py)
    * Tools for Game of 24: [`environments/game_of_24/common/tools.py`](environments/game_of_24/common/tools.py)

### :snowflake: FrozenLake

> FrozenLake is a simple environment that requires crossing a frozen lake from start to goal without falling into any
> holes.
> See [Gymnasium docs](https://gymnasium.farama.org/environments/toy_text/frozen_lake/) for more details.

Our implementation of FrozenLake is available under [`environments/frozen_lake`](environments/frozen_lake) folder.

* Common:
    * Env wrapper for
      FrozenLake: [`environments/frozen_lake/common/environment.py`](environments/frozen_lake/common/environment.py)
    * Tools for FrozenLake: [`environments/frozen_lake/common/tools.py`](environments/frozen_lake/common/tools.py)

### :house: ALFWorld

> ALFWorld contains interactive TextWorld environments for household navigation. See :scroll: 
> [ALFWorld](https://arxiv.org/abs/2010.03768) paper or [project website](https://alfworld.github.io/) for more
> information.

Our implementation of ALFWorld is available under [`environments/alfword`](environments/alfword) folder.

* Common:
    * Env wrapper for
      ALFWorld: [`environments/alfworld/common/environment.py`](environments/alfworld/common/environment.py)
    * Tools for ALFWorld: [`environments/alfworld/common/tools.py`](environments/alfworld/common/tools.py)

## Strategies usage examples

Examples are available under [`examples`](examples) folder.

