Metadata-Version: 2.1
Name: stored-agent
Version: 0.1.2
Summary: A framework for building agents that persist state between interactions.
Author: Vijay Balasubramaniam
Author-email: vbalasu@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: boto3 (>=1.35.60,<2.0.0)
Requires-Dist: fs (>=2.4.16,<3.0.0)
Requires-Dist: fs-s3fs (>=1.1.1,<2.0.0)
Description-Content-Type: text/markdown

# stored-agent

A framework for building agents that persist state between interactions.

## Usage

#### Create a new agent and invoke it
```python
my_agent = StoredAgent(id='agent1', name='My Agent')
response = my_agent.invoke(input='Hello, how are you?')
print(response)
```

#### Load an existing agent and invoke it
```python
my_agent = StoredAgent(id='agent1')
response = my_agent.invoke(input='Hello, how are you?')
print(response)
```


