Task management for AI agents
Project description
Taskara
Task management for AI agents
Installation
pip install taskara
Usage
Create a task
from taskara import Task
task = Task(
description="Search for the most common varieties of french ducks",
owner_id="delores@agentsea.ai"
)
Assign the task to an agent
task.assigned_to = "roko@agentsea.ai"
Post a message to the task thread
task.post_message("assistant", "Getting started working on this")
task.status = "in progress"
Create a custom thread for the task
task.create_thread("debug")
task.post_message("assistant", "I'll post debug messages to this thread", thread="debug")
task.post_message("assistant", 'My current screenshot', images=["b64img"], thread="debug")
Store prompts used to accomplish the task
thread = RoleThread()
thread.post(role="system", msg="I am a helpful assistant")
response = RoleMessage(
role="assistant",
text="How can I help?"
)
task.store_prompt(thread, response, namespace="actions")
Store the result
task.output = "The most common type of french duck is the Rouen"
task.status = "success"
Save the task
task.save()
Supported Backends
- Sqlite
- Postgresql
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
taskara-0.1.39.tar.gz
(15.3 kB
view details)
Built Distribution
taskara-0.1.39-py3-none-any.whl
(20.5 kB
view details)
File details
Details for the file taskara-0.1.39.tar.gz
.
File metadata
- Download URL: taskara-0.1.39.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.1 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 844b7c516a88112a7720e8df05a1c8bdf337120746d3ded19140315f119a6565 |
|
MD5 | b8f2e40798e7e86e1f8da4d70c00a567 |
|
BLAKE2b-256 | 5013e096ae343b325e2664a51916e530e870ea054ce4d9f377e979aa3d6f196e |
File details
Details for the file taskara-0.1.39-py3-none-any.whl
.
File metadata
- Download URL: taskara-0.1.39-py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.1 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78cf5127c378ea451574a48fbb0ebaec1f335f1be0d923cc776dd03d6c638748 |
|
MD5 | 68c1e2ae33ce1c9c7130fad964d1e75d |
|
BLAKE2b-256 | 6865f7e5e2b68b10b6e9a96f6a51d467a4505daabc8c76e5a9a11a91e600d128 |