Introducing Action Server and Local Python Notebook: Inviting Collaborators and Feedback!

Hi all,

We at Robocorp have launched our new Action Server.

As part of that effort I created an example of Locally running Python Notebook that you can connect to your GPT. actions-cookbook/local-advanced-data-analysis at master · robocorp/actions-cookbook · GitHub

I would be very interested on what do you think about the local Python … and about Robocorp Action Server in general.
All these tools are Open Source and we are also happy if you want to contribute!

Cheers,
Mikko

1 Like

Added another concept example of getting user input during Action Execution:

@action
def greeter(name: str) -> str:
    place = request_input(f"Ask from the user: Where are you from {name}?")
    return f"Hello {name} from {place}!"