Metadata-Version: 2.4
Name: ai-filesystem
Version: 0.2.0
Summary: Virtual filesystem service for AI agents with LangChain integration
Author-email: Nick <nick@langchain.dev>
License: MIT
Project-URL: Repository, https://github.com/langchain-ai/agent-file-system
Keywords: langchain,ai,filesystem,agents,tools
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.25.2
Requires-Dist: pydantic>=2.5.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: typing-extensions>=4.0.0
Provides-Extra: backend
Requires-Dist: deepagents>=0.2.0; extra == "backend"
Requires-Dist: langchain-core>=1.0.0; extra == "backend"
Provides-Extra: server
Requires-Dist: fastapi>=0.100.0; extra == "server"
Requires-Dist: uvicorn[standard]>=0.24.0; extra == "server"
Requires-Dist: asyncpg>=0.29.0; extra == "server"
Requires-Dist: python-jose[cryptography]>=3.3.0; extra == "server"
Requires-Dist: pydantic-settings>=2.10.1; extra == "server"
Requires-Dist: propelauth-fastapi>=4.2.8; extra == "server"
Provides-Extra: test
Requires-Dist: pytest>=7.4.0; extra == "test"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
Requires-Dist: pytest-mock>=3.11.0; extra == "test"
Requires-Dist: respx>=0.20.0; extra == "test"
Dynamic: license-file

# Remote Filesystem for Agents

A remote filesystem for AI agents. Users can easily provide their agents with siloed filesystems to use as long term memory, scratchpads, or general purpose storage. Specifically these can be supplied through FilesystemMiddleware from the `deepagents` package.

## How It Works

1. **API Server**: FastAPI backend that stores files in PostgreSQL
2. **User Isolation**: Each user can only see/modify their own files (enforced by database)
3. **Multiple Filesystems**: A user can have multiple filesystems and provide their agents with access to different, or the same filesystems.

### Creating an account on the Filesystem

1. Navigate [here](https://auth.fs.langchain.com) and sign up for an account on the Filesystem. 
2. Create an API key and save it someplace secure!
