Python SDK for the Atlas Knowledge Operating System — Terraform for AI agent knowledge
Project description
Atlas Python SDK
Python SDK for the Atlas Knowledge Operating System — the Terraform for AI agent knowledge.
pip install atlas-knowledge-sdk
Quickstart
import atlas_sdk as atlas
# Solve: search a knowledge bundle
result = atlas.solve("flutter_core.atlas", "stateful widget")
for node in result.nodes:
print(node.name, node.kind)
# Decide: walk a decision tree
decision = atlas.decide("tech_stack.atlas", "build web app", context={"type": "saas"})
if decision:
print(decision.rationale)
for rec in decision.recommendations:
print(f" -> {rec.node_id} (confidence: {rec.confidence})")
# Use the Agent class for registry-backed agents
from atlas_sdk import Agent
agent = Agent("my-agent", packages=["flutter_core", "riverpod"])
result = agent.solve("How to use AsyncNotifier?")
Documentation
See the full API reference and quickstart guide.
License
Apache 2.0
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 Distribution
atlas_knowledge_sdk-0.3.1.tar.gz
(13.6 kB
view details)
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 atlas_knowledge_sdk-0.3.1.tar.gz.
File metadata
- Download URL: atlas_knowledge_sdk-0.3.1.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d4431662aaa3fd6b1a6087d9ba461f63ee0c0231f28f7c075a7851f1be10d75
|
|
| MD5 |
652306c6e14ff2bd3073ffb4a55eac40
|
|
| BLAKE2b-256 |
5119bb8448459790604611e98243b580f0cb022704cf2e31aced73db1d2aaca6
|
File details
Details for the file atlas_knowledge_sdk-0.3.1-py3-none-any.whl.
File metadata
- Download URL: atlas_knowledge_sdk-0.3.1-py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7777b7b1b7703616a5b5422582218a80e7f0b729e17381c856c115173fed2fe
|
|
| MD5 |
734d4edaa790d32b9072896f3b89bc1d
|
|
| BLAKE2b-256 |
1726dccf8936006c81df5b433dbcc9d9dcd17ba7ddce8260d1f584651c821827
|