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.0.tar.gz
(13.8 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.0.tar.gz.
File metadata
- Download URL: atlas_knowledge_sdk-0.3.0.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3285d8607488bd91af54efcdddc3bbc2fa76ae3cefba28dd9689d1becb249648
|
|
| MD5 |
9816d73c6fe78ab43044eb687f0e7215
|
|
| BLAKE2b-256 |
825e012bd60e7050448cb6d2cfc0b037fde7a10715a625c84937e0ec582f4a5f
|
File details
Details for the file atlas_knowledge_sdk-0.3.0-py3-none-any.whl.
File metadata
- Download URL: atlas_knowledge_sdk-0.3.0-py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
765195b3fda477323cf2a0f4be46bc9fda1bba223ce021109837bbc1d5ea4d1d
|
|
| MD5 |
ac11950ca4d70f7389e59f79e741ad5f
|
|
| BLAKE2b-256 |
df59a5dbb931522e32a74dcb7eaee6b88252747596a15d5d170fa0db6f256e20
|