Metadata-Version: 2.1
Name: llama-index-tools-multion
Version: 0.1.2
Summary: llama-index tools multion integration
License: MIT
Author: Your Name
Author-email: you@example.com
Maintainer: ajhofmann
Requires-Python: >=3.8.1,<3.12
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
Requires-Dist: llama-index-core (>=0.10.1,<0.11.0)
Requires-Dist: multion (>=0.3.11,<0.4.0)
Requires-Dist: pillow (>=10.2.0,<11.0.0)
Requires-Dist: pytesseract (>=0.3.10,<0.4.0)
Description-Content-Type: text/markdown

# MultiOn Tool

This tool connects to [MultiOn](https://www.multion.ai/) to enable your agent to easily
connect to the internet through your Chrome Web browser and act on your behalf

You will need to have the MultiOn chrome extension installed and a MultiOn account
to use this integration

## Usage

This tool has more a extensive example usage documented in a Jupyter notebook [here](https://github.com/emptycrown/llama-hub/tree/main/llama_hub/tools/notebooks/multion.ipynb)

Here's an example usage of the MultionToolSpec.

```python
from llama_index.tools.metaphor import MultionToolSpec
from llama_index.agent import OpenAIAgent

multion_tool = MultionToolSpec()

agent = OpenAIAgent.from_tools(multion_tool.to_tool_list())

agent.chat("Can you read the latest tweets from my followers")
agent.chat("Whats the next thing on my google calendar?")
```

`browse`: The core function that takes natural language instructions to pass to the web browser to execute

This loader is designed to be used as a way to load data as a Tool in a Agent. See [here](https://github.com/emptycrown/llama-hub/tree/main) for examples.

