|
|
|
Show HN: OpenFiles – Persistent cloud files for AI agents
(openfiles.ai)
|
|
1 points
by gokulsiva
289 days ago
|
|
I spent 4 weeks building file infrastructure for my AI app instead of AI features. Every AI developer I know has done the same -
building S3 + database + versioning just to let agents save files. So I built OpenFiles - a drop-in SDK that gives AI agents persistent file storage. Your agents can now:
- Save/edit files across conversations
- Share files between multiple agents
- Track versions automatically Try it: https://console.openfiles.ai (sign in with GitHub) Example:
```python
from openfiles_ai import OpenAI
client = OpenAI(api_key="...",openfiles_api_key="...")
# Your ChatGPT can now persist files between sessions TypeScript/Python SDKs available. Early users get 5GB free. |
|