An AI assistant designed to be integrated in an IPython shell.
Project description
ipy_agent
ipy_agent
is a Python package that implements an AI agent designed to be integrated into any IPython shell (terminal, Jupyter notebook, QtConsole, etc.).
Features
- The agent captures all inputs and outputs occurring in the session to populate its context (up to token limit).
- Use magic commands
%ai
and%%ai
to interact with the agent using natural language. - Hold
<ctrl>+<space>
to record and transcribe your voice into text inserted at cursor position. Useful to speak out your prompts instead of typing them. - The agent can autonomously execute Python code within the session.
- Can be accessed as a declared object in the session, allowing configuration changes or method execution programmatically.
- Can be used as a smart Python function returning any kind of data/object.
- Supports various LLM providers and models via litellm.
- Integrated tools: The assistant can stream markdown with LaTeX support (in a notebook), talk to you using text to speech, create new code cells in notebooks, observe and extract content (folder, files, URL), introspect python entities (variables, functions, objects, classes, modules...), perform Google searches, perform semantic retrieval using a custom RAG document store (raw text or structured JSON), open files and urls in the browser, open files in a text editor, scrap the web and interact with webpages using a selenium webdriver...
- Custom tools: you can extend the agent's functionalities by defining your own custom tools.
Installation
pip install ipy_agent
Usage
First, you need to set the API keys for your preferred LLM providers as environment variables. Refer to the litellm documentation to know the correct names for your environment variables to be recognized.
Integration into the IPython session is as simple as:
from ipy_agent import IPyAgent
IPyAgent(name="Jarvis", username="Baptiste");
Once loaded, the agent can be accessed in the namespace by the name you gave it in lowercase (jarvis
in this case) and will respond to line and cell magics %ai
and %%ai
respectively. If no custom name is provided, the agent will be accessible by default as agent
.
Configuration
You can customize the agent by modifying its configuration. Here are some examples:
jarvis.config.model = "claude-3-opus-20240229" # Use Claude-3 LLM model
jarvis.config.temperature = 0.7 # Adjust the model temperature
jarvis.config.voice_enabled=True # Activate text to speech
jarvis.config.language = 'en' # Set default language to English
Usage Examples
Simple Conversation
%ai Hello Jarvis! I am a novice user. Can you explain what I should know about you?
Code Execution
%%ai
What is the factorial of 6?
The agent will run the adequate python code as a response to computational tasks.
Smart Function
You can use the agent as a smart python function:
even_list = jarvis("Return a list of n even numbers", n=5)
even_list # Output: [0, 2, 4, 6, 8]
When doing so, the agent's markdown output will be silenced and only the result of computation will be returned.
Available Tools
The agent provides several built-in tools to ease various tasks. These tools are primarily intended for the agent's usage but can also be used by the user. Here is a list of available tools:
agent.observe(source)
: Extracts information from a folder, file, URL, variable, function, class, or module, and injects it into the agent's context.agent.get_text(source)
: Extracts and returns text from a folder, file, URL, variable, function, class, or module.agent.new_code_cell(code)
: Adds a new code cell in the notebook with the specified code.agent.websearch(query, num=5, type='web', start=1)
: Performs a Google search and observe the results.agent.webdriver()
: Creates and returns a selenium webdriver object configured for web automation tasks.agent.edit(file=None,text=None)
: Open a text/code editor to let you edit some content.agent.document_store
: Interface with the custom document store for semantic retrieval and document management (text or JSON).agent.open(file_or_url)
: Opens any file or url with your default webbrowser.agent.add_tool(name,obj,description)
: Add a new custom tool to the agent, provided a name, a pyhton function or object asobj
, and a complete description of the tool (signature, methods, example...)
These tools are designed to offer maximum flexibility and facilitate various interactions in the IPython session. Feel free to use them directly in your scripts to leverage their advanced functionalities.
Contribution
Contributions are welcome! If you wish to contribute to this project, please follow these instructions:
- Fork the repository
- Create a branch for your feature (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ipy_agent-0.0.2.tar.gz
.
File metadata
- Download URL: ipy_agent-0.0.2.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d2b75127a0ed04926edb5680e1506e8dbeb3c3b1f070c5f2f6b40476c749b56 |
|
MD5 | 99113fbb42d365de2d2fb88299befe82 |
|
BLAKE2b-256 | c4c55cda334423e0d60b38b44bbe135f306005aa7cfb777869fe7cbb00afc75e |
File details
Details for the file ipy_agent-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: ipy_agent-0.0.2-py3-none-any.whl
- Upload date:
- Size: 29.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5763aa6a9f98e1fdc32adc9cc13725740aefa578b4da5b2125043ead346ee9e3 |
|
MD5 | 34f12bc2c2e678c478b9632ac8d89a40 |
|
BLAKE2b-256 | 0b5dd28ece963e6e56756da65e3e8b3e0c591368cc3296547c79222eab702b90 |