Atulya: A living algorithm for machine intelligence (MI) - All-in-One Bundle
Project description
atulya-all
All-in-one package for Atulya - A living algorithm for machine intelligence (MI)
Quick Start
from atulya import start_server, AtulyaClient
# Start server with embedded PostgreSQL
server = start_server(
llm_provider="groq",
llm_api_key="your-api-key",
llm_model="openai/gpt-oss-120b"
)
# Create client
client = AtulyaClient(base_url=server.url)
# Store memories
client.put(agent_id="assistant", content="User prefers Python for data analysis")
# Search memories
results = client.search(agent_id="assistant", query="programming preferences")
# Generate contextual response
response = client.think(agent_id="assistant", query="What languages should I recommend?")
# Stop server when done
server.stop()
Using Context Manager
from atulya import AtulyaServer, AtulyaClient
with AtulyaServer(llm_provider="groq", llm_api_key="...") as server:
client = AtulyaClient(base_url=server.url)
# ... use client ...
# Server automatically stops
Installation
pip install atulya-all
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
atulya_all-0.8.0.tar.gz
(15.7 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 atulya_all-0.8.0.tar.gz.
File metadata
- Download URL: atulya_all-0.8.0.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc63e6f27d00c40b7aadf8366c54a1af3d2d0053cc908af6710a41f9ce9acd22
|
|
| MD5 |
80e3987c8cee31701c1b05b0ecea26fb
|
|
| BLAKE2b-256 |
06362aaa0e1e0681e1ce4aeeec078f6386f27ec2dea71c473e35f06055c545dc
|
File details
Details for the file atulya_all-0.8.0-py3-none-any.whl.
File metadata
- Download URL: atulya_all-0.8.0-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6bd154b5d06207b3845d0596725d8a487137d542ce71cdea6b7d9898e587d30
|
|
| MD5 |
d789e86a41a44635ac9417f24d0f18e2
|
|
| BLAKE2b-256 |
b0836f77a99917c2a7a913592322f0e7975bafc8f4f7d55ed245c32c51221259
|