Please enable JavaScript.
Coggle requires JavaScript to display documents.
Academic Literature - Coggle Diagram
Academic Literature
AgentLens
-
Agent View
-
Agent Behaviour
-
-
Operation
-
-
Environment(Tool)
Interactions toward the external system, including other agents and the environment
-
-
observability by design
TapeAgent
Tape Metadata
-
tape.metadata.author
which agent or environment made this tape; either by authoring it, or by
adding steps to it, or by making a revision of another tape.
-
-
step.metadata.prompt_id
the identifier (id) of the prompt that led to the generation of this step,
see the explanation below.
Tape Step
-
observations step : that the agent receives from its environment in response to the
agent’s actions(step).
-
-
Concept
Tape
In TapeAgents we often define a tape type by specifying what specific actions, thoughts, and
observations classes it can contain,
Node
In TapeAgents, one builds the agent from nodes: the basic atoms of intelligence. A node describes one LLM call and the classical symbolic processing of the call’s output.
When an agent runs a node, the node generates a unique ID for the prompt that it builds at this iteration.
The prompt ID thus serves as the unique identifier of a node execution, i.e., of a specific iteration when the
node was active. The ID also links the step to the LLM call from the node run so we can trace the origin of
each step down to the specific prompt and LLM output.
Step
Nodes generate new tape entries that we call steps: basic atoms of the agent’s memory. Examples of what an agent can do in a step include making
a long-term plan, reasoning about how to fulfill the plan or how to use a tool, requesting a tool call.
-
-