mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 22:44:21 +01:00
* Move rename module `agent` -> `agents`
* WIP: abstract agent structure into base class and port Agent
* Move command arg path sanitization to decorator
* Add fallback token limit in llm.utils.create_chat_completion
* Rebase `MessageHistory` class on `ChatSequence` class
* Fix linting
* Consolidate logging modules
* Wham Bam Boom
* Fix tests & linting complaints
* Update Agent class docstring
* Fix Agent import in autogpt.llm.providers.openai
* Fix agent kwarg in test_execute_code.py
* Fix benchmarks.py
* Clean up lingering Agent(ai_name=...) initializations
* Fix agent kwarg
* Make sanitize_path_arg decorator more robust
* Fix linting
* Fix command enabling lambda's
* Use relative paths in file ops logger
* Fix test_execute_python_file_not_found
* Fix Config model validation breaking on .plugins
* Define validator for Config.plugins
* Fix Config model issues
* Fix agent iteration budget in testing
* Fix declaration of context_while_think
* Fix Agent.parse_and_process_response signature
* Fix Agent cycle_budget usages
* Fix budget checking in BaseAgent.__next__
* Fix cycle budget initialization
* Fix function calling in BaseAgent.think()
* Include functions in token length calculation
* Fix Config errors
* Add debug thing to patched_api_requestor to investigate HTTP 400 errors
* If this works I'm gonna be sad
* Fix BaseAgent cycle budget logic and document attributes
* Document attributes on `Agent`
* Fix import issues between Agent and MessageHistory
* Improve typing
* Extract application code from the agent (#4982)
* Extract application code from the agent
* Wrap interaction loop in a function and call in benchmarks
* Forgot the important function call
* Add docstrings and inline comments to run loop
* Update typing and docstrings in agent
* Docstring formatting
* Separate prompt construction from on_before_think
* Use `self.default_cycle_instruction` in `Agent.think()`
* Fix formatting
* hot fix the SIGINT handler (#4997)
The signal handler in the autogpt/main.py doesn't work properly because
of the clean_input(...) func. This commit remedies this issue. The issue
is mentioned in
3966cdfd69 (r1264278776)
* Update the sigint handler to be smart enough to actually work (#4999)
* Update the sigint handler to be smart enough to actually work
* Update autogpt/main.py
Co-authored-by: Reinier van der Leer <github@pwuts.nl>
* Can still use context manager
* Merge in upstream
---------
Co-authored-by: Reinier van der Leer <github@pwuts.nl>
* Fix CI
* Fix initial prompt construction
* off by one error
* allow exit/EXIT to shut down app
* Remove dead code
---------
Co-authored-by: collijk <collijk@uw.edu>
Co-authored-by: Cyrus <39694513+cyrus-hawk@users.noreply.github.com>
58 lines
2.4 KiB
Python
58 lines
2.4 KiB
Python
# Generated by CodiumAI
|
|
import time
|
|
|
|
from autogpt.spinner import Spinner
|
|
|
|
"""
|
|
Code Analysis
|
|
|
|
Main functionalities:
|
|
The Spinner class provides a simple way to display a spinning animation while a process is running. It can be used to indicate that a process is ongoing and to provide visual feedback to the user. The class can be used as a context manager, which means that it can be used with the 'with' statement to automatically start and stop the spinner animation.
|
|
|
|
Methods:
|
|
- __init__(self, message: str = "Loading...", delay: float = 0.1) -> None: Initializes the Spinner class with a message to display and a delay between each spinner update.
|
|
- spin(self) -> None: Spins the spinner animation while the process is running.
|
|
- __enter__(self): Starts the spinner animation when used as a context manager.
|
|
- __exit__(self, exc_type, exc_value, exc_traceback) -> None: Stops the spinner animation when used as a context manager.
|
|
- update_message(self, new_message, delay=0.1): Updates the message displayed by the spinner animation.
|
|
|
|
Fields:
|
|
- spinner: An itertools.cycle object that contains the characters used for the spinner animation.
|
|
- delay: The delay between each spinner update.
|
|
- message: The message to display.
|
|
- running: A boolean value that indicates whether the spinner animation is running.
|
|
- spinner_thread: A threading.Thread object that runs the spin method in a separate thread.
|
|
"""
|
|
|
|
ALMOST_DONE_MESSAGE = "Almost done..."
|
|
PLEASE_WAIT = "Please wait..."
|
|
|
|
|
|
def test_spinner_initializes_with_default_values():
|
|
"""Tests that the spinner initializes with default values."""
|
|
with Spinner() as spinner:
|
|
assert spinner.message == "Loading..."
|
|
assert spinner.delay == 0.1
|
|
|
|
|
|
def test_spinner_initializes_with_custom_values():
|
|
"""Tests that the spinner initializes with custom message and delay values."""
|
|
with Spinner(message=PLEASE_WAIT, delay=0.2) as spinner:
|
|
assert spinner.message == PLEASE_WAIT
|
|
assert spinner.delay == 0.2
|
|
|
|
|
|
#
|
|
def test_spinner_stops_spinning():
|
|
"""Tests that the spinner starts spinning and stops spinning without errors."""
|
|
with Spinner() as spinner:
|
|
time.sleep(1)
|
|
assert not spinner.running
|
|
|
|
|
|
def test_spinner_can_be_used_as_context_manager():
|
|
"""Tests that the spinner can be used as a context manager."""
|
|
with Spinner() as spinner:
|
|
assert spinner.running
|
|
assert not spinner.running
|