agent-tk 0.4.0

`agent-tk` (`agent toolkit/tasks-knowledge`) is a crate for the development of autonomous agents using Rust, with an emphasis on tasks and knowledge based agents. This project is part of the [auKsys](http://auksys.org) project.
Documentation
1
2
3
4
5
6
7
8
9
//! Contains constants used in agent_tk.

/// String name for TST
pub const TST: &str = "tst";
/// String name for goal
pub const GOAL: &str = "goal";

/// Length of the task queue for an agent
pub const TASK_QUEUE_LENGTH: usize = 20;