Skip to content

chatGPT 'Autonomous Agent' in Node.js, written/runs in Termux. Sandboxed REPL access, Termux:API interface, chain-of-thought Question-Observation-Thought-Action-Result reasoning. All in 600 lines of js

rocket-pig/autobabytermux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

autobabytermux

url

In GPT's words (later appended by me):

Autobabytermux is a project that is realizing multi-turn feedback reasoning through an autonomous agent [AA]. Simply input your API key and ask a question, and autobabytermux will engage in a chain of thought reasoning process to autonomously arrive at a solution to your request/task, utilizing plugins including:

Node REPL : a sanboxed javascript interpreter with a fakefs allowing scripts to read/write that are captured in a single JSON object saved as 'fakefs.json' and restored each time for a pseudo persistence (with the obvious side effect of it otherwise being unable to effect your actual fs).

Termux:API : Termux has a command line scriptable interface to a large amount of Android OS hardware functions - global toggles, sms phone logs' current notifications, flashlight vibration you name it. The whole enterprise. This plugin allows (and informs (and enables) ) the AA to interact directly with the hardware its on.

Memories : Upon successful completion of a task the Agent is asked to title their script and summarize it. It is then saved to a memories.json object. Now, upon asking a Question, these memories are keyword searched using the Agent's own Observations. The results then become part of the chain of thought where the Agent is asked to (and does) interact with them.

The AA is an incredible tool that can do so much more than just generate coherent text. With the ability to leverage plugins (and new ones that can be easily written), the LLM can tackle complex tasks that it previously couldn't. It can now provide exact answers to complicated math problems, automate programming and debugging tasks, interact with almost every aspect of your OS via Termux:API, and much more: the potential for "self-healing", the AA could even begin to write and revise its own codebase, creating a truly autonomous and self-sustaining system. The future is exciting for the AA and its potential applications.

At its core, autobabytermux is an autonomous AI agent that can run entirely on your phone. It requires only ONE npm module - openai - to function.

The QOTAR (Question, Observation, Thought, Action, Result) chain-of-thought framework guides the reasoning process, allowing the agent to efficiently arrive at an answer to your question.

It is worth noting that autobabytermux is a massively micro version of similar projects that typically require advanced dependencies such as numpy and pandas. Because autobabytermux is designed to run within Termux on a phone, it is much more lightweight and accessible.

Usage:

git clone https://github.com/rocket-pig/autobabytermux; cd autobabytermux

Run

npm install openai

(Optional: apt install termux-api if you want AA to have access to all this glory and npm install minisearch (5Kb) if you want to make/recall memories. )

Have an OpenAI key ready, stick it on first line of script. Then, run

node autobabytermux.js

and the interactive CLI starts. You can also pass a question in on the command line (in quotes). You can type *s at any time to debug the sandbox environment directly. The vm instance persists until the script stops. The Agent has a fake, single-folder 'filesystem' that works just as it would expect, ie using (fs.readFileSync, fs.writeFileSync).

...Autonomous AI Agent, on your burner. Shrugs rite? What a world

Latest Updates / Changelog:

View changelog --> click here

picsordidnthappen:

Latest:

url

Little bit older...

img

After this, cat fakefs.txt returns

{"fibonacci_2023-05-06.txt":"Tutorial on printing the fibonacci sequence with Node.js:\n\nTo print the fibonacci sequence, first define a function that takes an integer n as input and returns the first n numbers of the sequence. Then, call the function with your desired n value and console.log the result. Here is an example implementation:\n\nfunction fibonacci(n) {\n if (n <= 1) return [0, 1].slice(0, n + 1);\n const sequence = fibonacci(n - 1);\n sequence.push(sequence[sequence.length - 1] + sequence[sequence.length - 2]);\n return sequence;\n}\n\nconsole.log(fibonacci(10));\n"}

Older, but you get the idea:

url

pix

One more

img

Contributing

If you want to contribute, pull requests or wearing pants not required. You can even just yell at me in the Issues and link a gist, whatever works. I in every sense intend to simultaneously never take this seriously, and see it thru. This is how beauty is made. I hope you join in! - would love your unique input.

TODO:

  • Why are we using langchain to access openAI? Langchain itself is completely unused. Find a cheaper openAI module or just write a quick one.
  • Throw a quick http server (ooh with socketio??) on the end to make this an API we can poke from elsewhere.
  • Bullet point 3
  • Its about to remember how to remember
  • questions on argv are getting butchered somewhere
  • memories pruning (agent revision?)

Further Reading / Links

About

chatGPT 'Autonomous Agent' in Node.js, written/runs in Termux. Sandboxed REPL access, Termux:API interface, chain-of-thought Question-Observation-Thought-Action-Result reasoning. All in 600 lines of js

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published