Skip to content

Commit

Permalink
Merge pull request #914 from isamu/toolsResponseLLMStream
Browse files Browse the repository at this point in the history
Tools response llm stream
  • Loading branch information
isamu authored Feb 1, 2025
2 parents 0f4afd1 + b47ed55 commit f84268c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions llm_agents/tools_agent/lib/tools_agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ const toolWorkFlowStep = {
toolsResponseLLM: {
if: ":hasNext",
agent: ":llmAgent",
isResult: true,
params: {
forWeb: true,
stream: true,
},
inputs: { messages: ":toolsMessage.array" },
},
Expand Down
2 changes: 1 addition & 1 deletion llm_agents/tools_agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphai/tools_agent",
"version": "0.2.2",
"version": "0.2.3",
"description": "General tools agents",
"main": "lib/index.js",
"files": [
Expand Down
2 changes: 2 additions & 0 deletions llm_agents/tools_agent/src/tools_agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,10 @@ const toolWorkFlowStep = {
toolsResponseLLM: {
if: ":hasNext",
agent: ":llmAgent",
isResult: true,
params: {
forWeb: true,
stream: true,
},
inputs: { messages: ":toolsMessage.array" },
},
Expand Down

0 comments on commit f84268c

Please sign in to comment.