Live data from Hacker News

ReAct REPL Agent: GPT with the ability to search and chain API calls

peterroelants.github.io

1–4 of 4 posts

Re: ReAct REPL Agent: GPT with the ability to search and chain API calls

#2
I build a large-language model based "agent" that can can execute small tasks by using a Python REPL and pre-implemented methods. The "agent loop" is based on ReAct.

The agent can look up methods using a `method_search()` method that uses semantic search on the indexed Python methods.

I documented my findings in this blogpost and the following repo: https://github.com/peterroelants/gpt_react_repl_w_method_sea...