Skip to content

Commit

Permalink
Add experimental method to actions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AI Developer committed Dec 29, 2023
1 parent d2357a3 commit 0b9c98f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ai_developer/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,11 @@ def git_pull(sandbox: Sandbox, args: Dict[str, Any]) -> str:
def experimental_method(sandbox: Sandbox, args: Dict[str, Any]) -> str:
# TODO: Implement the functionality of this experimental method
pass



def experimental_method(sandbox: Sandbox, args: Dict[str, Any]) -> str:
# This is an experimental method for future development.
# TODO: Implement the functionality of this experimental method
print_sandbox_action("Experimental Method", "This method is still under development.")
return "success"

0 comments on commit 0b9c98f

Please sign in to comment.