Skip to content

Commit

Permalink
tool uses original input (opensearch-project#2022) (opensearch-projec…
Browse files Browse the repository at this point in the history
…t#2031)

* tool uses original input



* fix tool input in trace



---------

Signed-off-by: Jing Zhang <[email protected]>
  • Loading branch information
jngz-es authored Feb 6, 2024
1 parent 20c1781 commit b7c60ce
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,12 @@ private void runReAct(
if (toolSpecParams != null) {
toolParams.putAll(toolSpecParams);
}
toolParams.put("input", actionInput);
if (tools.get(action).useOriginalInput()) {
toolParams.put("input", question);
lastActionInput.set(question);
} else {
toolParams.put("input", actionInput);
}
if (tools.get(action).validate(toolParams)) {
try {
String finalAction = action;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.ArgumentMatchers.isA;
import static org.mockito.Mockito.doAnswer;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
Expand Down Expand Up @@ -114,6 +115,8 @@ public class MLChatAgentRunnerTest {
private ArgumentCaptor<ActionListener<CreateInteractionResponse>> conversationIndexMemoryCapture;
@Captor
private ArgumentCaptor<ActionListener<UpdateResponse>> mlMemoryManagerCapture;
@Captor
private ArgumentCaptor<Map<String, String>> ToolParamsCapture;

@Before
@SuppressWarnings("unchecked")
Expand Down Expand Up @@ -668,6 +671,35 @@ public void testToolParameters() {
assertNotNull(modelTensorOutput);
}

@Test
public void testToolUseOriginalInput() {
// Mock tool validation to return false.
when(firstTool.validate(any())).thenReturn(true);

// Create an MLAgent with a tool including two parameters.
MLAgent mlAgent = createMLAgentWithTools();

// Create parameters for the agent.
Map<String, String> params = createAgentParamsWithAction(FIRST_TOOL, "someInput");
params.put("question", "raw input");
doReturn(true).when(firstTool).useOriginalInput();

// Run the MLChatAgentRunner.
mlChatAgentRunner.run(mlAgent, params, agentActionListener);

// Verify that the tool's run method was called.
verify(firstTool).run(any(), any());
// Verify the size of parameters passed in the tool run method.
ArgumentCaptor argumentCaptor = ArgumentCaptor.forClass(Map.class);
verify(firstTool).run((Map<String, String>) argumentCaptor.capture(), any());
assertEquals(3, ((Map) argumentCaptor.getValue()).size());
assertEquals("raw input", ((Map<?, ?>) argumentCaptor.getValue()).get("input"));

Mockito.verify(agentActionListener).onResponse(objectCaptor.capture());
ModelTensorOutput modelTensorOutput = (ModelTensorOutput) objectCaptor.getValue();
assertNotNull(modelTensorOutput);
}

@Test
public void testSaveLastTraceFailure() {
// Mock tool validation to return true.
Expand Down

0 comments on commit b7c60ce

Please sign in to comment.