Overlay image package for quicksand
Project description
Quicksand Agent Sandbox
An overlay image package for quicksand that provides a Python 3.12 environment with common AI agent tools pre-installed. Built on top of quicksand-ubuntu.
Installation
quicksand install quicksand-agent
Usage
Simple (recommended)
import asyncio
from quicksand_agent import AgentSandbox
async def main():
async with AgentSandbox() as sb:
result = await sb.execute("python3 --version")
print(result.stdout)
asyncio.run(main())
With custom config
from quicksand_core import Sandbox
async with Sandbox(image="quicksand-agent", memory="4G", cpus=4) as sb:
result = await sb.execute("pip list")
What's Included
Built on Ubuntu 24.04, this overlay adds:
- Python 3.12 virtual environment at
/opt/python(withpip) - uv fast Python package manager
- build-essential (gcc, make, etc.)
- requests HTTP library
- pyyaml YAML parsing
- ddgs DuckDuckGo Search API
- markitdown Markdown conversion tool
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file quicksand_agent-0.4.2-py3-none-any.whl.
File metadata
- Download URL: quicksand_agent-0.4.2-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c42f14850831e8c4adcfa11ae70341a46515af9a2f32c792017891edfc9c8d3
|
|
| MD5 |
59a7c96f1efa0b4b90a566139e0db8ca
|
|
| BLAKE2b-256 |
83af1a68cafcb15a4137bad4b6ae757788882cda17fd53b4e43fffaae3a96408
|