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
10
//! definitions
//! ===========
//!
//! Support for defining parts of an agent.

pub mod agent;
pub mod goal;
pub mod misc_structures;
pub mod task;
pub mod tst;