`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.
//! Contains constants used in agent_tk.
/// String name for TST
pubconstTST:&str="tst";/// String name for goal
pubconstGOAL:&str="goal";/// Length of the task queue for an agent
pubconstTASK_QUEUE_LENGTH:usize=20;