A simple, lightweight loop for your agent. Start/stop, step-through, and more.
from agentloop import start, stop
def step_one(next_output, loop_data):
print("step_one")
return next_output
def step_two(next_output, loop_data):
print("step_two")
return next_output
# Run the loop
loop_data = start(steps=[step_one, step_two])
# Pause the loop
pause(loop_data)
# Unpause the loop
unpause(loop_data)
# Stop the loop
stop(loop_data)
pip install agentloop
This package provides a set of functions to perform a stepped or continuous loop of operations in a separate thread. This can be used for various purposes like running a continuous process that can be controlled from the outside, a debugging tool for a cycle of operations, etc.
Each step must take in input from the last step and return output for the next step. The first step will receive None as input, and this will need to be handled. You can either start with an initialization step that returns the initial input, or you can check for None in the first step and return the initial input if it is None.
Example steps:
def step_one(next_output, loop_data): # next output None first run, then received from step_two
print("step_one")
return next_output # next output sent to step_two
def step_two(next_output, loop_data): # next output received from step_one
print("step_two")
return next_output # next output sent to step_one
steps = [step_one, step_two]
start(steps, stepped=False, step_interval=0.0)
Starts the main loop in a separate thread. This loop will run the steps given, in a continuous or stepped manner.
-
steps
: a list of functions that should be executed in the loop. Each function should accept a single argument and return a single value which will be passed as an argument to the next function. The first function will receiveNone
as an argument. -
paused
(optional): a boolean value that determines whether the loop should run in paused step mode or not. Defaults toFalse
. -
step_interval
(optional): a float value that determines the time interval between steps in seconds. Defaults to0.0
.
A dictionary containing
stop_event
: an instance ofthreading.Event
that's used to control stopping of the loop.step_event
: an instance ofthreading.Event
that's used to control stepping.started_event
: an instance ofthreading.Event
that's set when the loop starts running.thread
: an instance ofthreading.Thread
that's running the main loop.
stop(loop_data)
Handles stopping of the loop.
loop_data
: a dictionary containing thestop_event
andthread
which is returned by thestart
function.
None
Sure, here are the updated sections for the pause
and unpause
functions in your README file.
pause(loop_data)
Pauses the loop. When paused, the loop will not execute the next step until it's either stepped using the step
function or unpaused using the unpause
function.
loop_data
: a dictionary containing thepause_event
which is returned by thestart
function.
None
unpause(loop_data)
Resumes the loop after it has been paused with the pause
function. If the loop is not paused, calling this function has no effect.
loop_data
: a dictionary containing thepause_event
which is returned by thestart
function.
None
step(loop_data)
Performs a single step in the loop.
loop_data
: a dictionary containing thestep_event
which is returned by thestart
function.
None
loop(steps, paused=False, loop_data=None, step_interval=0.0)
Runs the step array in a loop until stopped.
-
steps
: a list of functions that should be executed in the loop. Each function should accept a single argument and return a single value which will be passed as an argument to the next function. The first function will receiveNone
as an argument. -
paused
(optional): a boolean value that determines whether the loop should run in paused / stepped mode or not. Defaults toFalse
. -
loop_data
(optional): a dictionary containingstop_event
andstep_event
instances. If not provided, new events will be created. -
step_interval
(optional): a float value that determines the time interval between steps in seconds. Defaults to0.0
.
None
use_keyboard(loop_data, input_key=keyboard.Key.space)
Creates a keyboard listener and attaches it to the provided loop data object. This listener listens for a specified key press, and when detected, steps the loop (sets the 'step_event').
-
loop_data
: A loop data object, which is typically created by thestart
function. -
input_key
(optional): The keyboard key that the listener will react to. Defaults tokeyboard.Key.space
.
Returns the updated loop dictionary with the newly created keyboard listener added to it. Note: Pass the updated dictionary to the stop function to also stop the keyboard listener
Defaults to Spacebar
loop_data = {
"stop_event": threading.Event(),
"step_event": threading.Event(),
"started_event": threading.Event(),
"thread": None,
}
updated_loop_dict = use_keyboard(loop_data, input_key)
pytest test.py
bash publish.sh --version=<version> --username=<pypi_username> --password=<pypi_password>
If you like this library and want to contribute in any way, please feel free to submit a PR and I will review it. Please note that the goal here is simplicity and accesibility, using common language and few dependencies.