LLMAgent.Signals (llm_agent v0.2.0)
View SourceDefines LLM-specific signal types and helpers for agent communication.
This module extends AgentForge.Signal with specialized signal types for LLM interactions, providing a consistent interface for creating signals that represent different stages of LLM agent processing.
Signal Types
:user_message
- A message from the user:system_message
- A system message:thinking
- An agent thinking step:tool_call
- A tool call request:tool_result
- A tool execution result:task_state
- A task state update:response
- An agent response:error
- An error signal
Summary
Functions
Creates an error signal.
Creates a response signal.
Creates a system message signal.
Creates a task state signal.
Creates a thinking signal.
Creates a tool call signal.
Creates a tool result signal.
Creates a user message signal.
Functions
Creates an error signal.
Parameters
message
- The error messagesource
- The source of the errormeta
- Additional metadata for the signal
Returns
A signal of type :error
with the provided message, source, and metadata.
Examples
iex> signal = LLMAgent.Signals.error("API unavailable", "get_stock_price")
iex> signal.type == :error
true
iex> signal.data.message == "API unavailable" and signal.data.source == "get_stock_price"
true
Creates a response signal.
Parameters
content
- The content of the responsemeta
- Additional metadata for the signal
Returns
A signal of type :response
with the provided content and metadata.
Examples
iex> signal = LLMAgent.Signals.response("AAPL is trading at $200")
iex> signal.type == :response and signal.data == "AAPL is trading at $200"
true
Creates a system message signal.
Parameters
content
- The content of the system messagemeta
- Additional metadata for the signal
Returns
A signal of type :system_message
with the provided content and metadata.
Examples
iex> signal = LLMAgent.Signals.system_message("You are a helpful assistant.")
iex> signal.type == :system_message and signal.data == "You are a helpful assistant."
true
Creates a task state signal.
Parameters
task_id
- The ID of the taskstate
- The current state of the taskmeta
- Additional metadata for the signal
Returns
A signal of type :task_state
with the provided task ID, state, and metadata.
Examples
iex> signal = LLMAgent.Signals.task_state("task_123", "running")
iex> signal.type == :task_state
true
iex> signal.data.task_id == "task_123" and signal.data.state == "running"
true
Creates a thinking signal.
Parameters
thought
- The content of the thinking stepstep
- The step number in the thinking processmeta
- Additional metadata for the signal
Returns
A signal of type :thinking
with the provided thought and metadata including step.
Examples
iex> signal = LLMAgent.Signals.thinking("I need to get stock data", 1)
iex> signal.type == :thinking and signal.data == "I need to get stock data"
true
iex> signal.meta.step
1
Creates a tool call signal.
Parameters
name
- The name of the tool to callargs
- The arguments for the tool callmeta
- Additional metadata for the signal
Returns
A signal of type :tool_call
with the provided tool name, arguments, and metadata.
Examples
iex> signal = LLMAgent.Signals.tool_call("get_stock_price", %{ticker: "AAPL"})
iex> signal.type == :tool_call
true
iex> signal.data.name == "get_stock_price" and signal.data.args.ticker == "AAPL"
true
Creates a tool result signal.
Parameters
name
- The name of the tool that was calledresult
- The result of the tool executionmeta
- Additional metadata for the signal
Returns
A signal of type :tool_result
with the provided tool name, result, and metadata.
Examples
iex> signal = LLMAgent.Signals.tool_result("get_stock_price", %{price: 200.50})
iex> signal.type == :tool_result
true
iex> signal.data.name == "get_stock_price" and signal.data.result.price == 200.50
true
Creates a user message signal.
Parameters
content
- The content of the user messagemeta
- Additional metadata for the signal
Returns
A signal of type :user_message
with the provided content and metadata.
Examples
iex> signal = LLMAgent.Signals.user_message("Hello")
iex> signal.type == :user_message and signal.data == "Hello"
true
iex> signal = LLMAgent.Signals.user_message("Hello", %{user_id: "123"})
iex> signal.meta.user_id
"123"