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
11
12
//! Import agent_tk modules.

pub use crate::{
  agent, consts, conversion, decision, definitions, delegation,
  error::{ElapsedErrorResultExt as _, SpawnErrorResultExt as _},
  execution, knowledge_base, module, projection, states, uuid, Error, Result,
};

pub(crate) use crate::Runtime;
pub use knowledge_base::{KnowledgeBase as _, KnowledgeBaseInterface as _};

pub use yaaral::prelude::*;