From 9d69db7f8160b51f5b787dd92d182f3e3a7491b8 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Wed, 18 Dec 2024 10:16:53 -0800 Subject: [PATCH] Update README.md Co-authored-by: Siddharth Narayanan --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0135b6c..dd258ae 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ new_action, new_agent_state, value = await agent.get_asv( ) ``` -`get_asv(agent_state, obs)` chooses an action (`a`) from the observation messages, +`get_asv(agent_state, obs)` chooses an action (`a`) conditioned on the observation messages, and returns the next agent state (`s`) and a value estimate (`v`). The first argument, `agent_state`, is a state specific for the agent. We make the state extrinsic so that agents are functional (enabling concurrency across environments).