Associated with our blog post about ARC, this release of Agentica allows a wider variety of Python objects to be exchanged between your Python session and agent REPLs.This brings us one step closer to the vision of agents and humans collaborating in a unified Python environment.You can pass agents data-heavy or stateful objects like numpy.ndarray, pandas.DataFrame, and sqlite3.Connection. Agents can use the normal APIs provided by these objects. These objects are warped by reference, meaning that the agent can modify them in-place, and the changes will be reflected in your local Python session.Agents can be warped entire Python modules, such as numpy, scipy, sympy, sqlite3 and pandas, to gain access to the full APIs of these libraries.Commonly used Python standard libraries types are also now supported, including NamedTuple, TypedDict, date, time, timedelta, IPv4Address, etc.