Skip to main content

Robocorp Actions

Project description

⚡️ robocorp-actions

A Python library designed to simplify the development of Python actions (AI or otherwise) to be run with the Robocorp Action Server.

Getting started

If you have not setup Action Server already, see the 🏃‍♂️ Quickstart on how to do that.

Decorate your Python function with the @action decorator:

from robocorp.actions import action

@action
def sum_numbers(a: float, b: float) -> float:
    ...

And your function is now an ⚡️ action!

You can now run and debug your action by Starting Action Server with action-server start and accessing the UI at http://localhost:8080.

[!NOTE] Action inputs and outputs support only int, float, str, and bool types.

Describe your action

For an action's purpose and usage to be understood by AI models (and humans) it needs to be documented correctly.

To do that, use Google Style Docstring to write a clear and concise description on what your action does and document the action inputs and expected output:

@action
def get_weather_forecast(city: str, days: int, scale: str = "celsius") -> str:
    """
    Returns weather conditions forecast for a given city.

    Args:
        city (str): Target city to get the weather conditions for
        days: How many day forecast to return
        scale (str): Temperature scale to use, should be one of "celsius" or "fahrenheit"

    Returns:
        str: The requested weather conditions forecast
    """
    ...

[!TIP] Experiment with and iterate the exact documentation wording to get more predictable results when using your action with AI apps.


Consequential flag

You can explicitly provide the is_consequential flag for an action to mark it's operations as "must always prompt the user for confirmation before running" by OpenAI GPTs (and possibly by other providers). If set to False, the user will be provided with an "always allow" feature.

@action(is_consequential=True)
def get_weather_forecast(city: str, days: int, scale: str = "celsius") -> str:

Execution

To get the full benefits of your actions, the suggested way to run them is using Action Server. But it's also possible to do that directly in command line by passing the named arguments:

python -m robocorp.actions run -- --city=Helsinki --days=3

API Reference

Information on specific functions or classes: robocorp.actions

Changelog

A list of releases and corresponding changes can be found in the changelog.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robocorp_actions-0.0.5.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

robocorp_actions-0.0.5-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file robocorp_actions-0.0.5.tar.gz.

File metadata

  • Download URL: robocorp_actions-0.0.5.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure

File hashes

Hashes for robocorp_actions-0.0.5.tar.gz
Algorithm Hash digest
SHA256 ab65b3da7c21322ca09aa584f78117fe9c2e2701c2804fc36c0ed2fbe373c32b
MD5 5d43b52c4ccae167a8208e0ba6c9b60a
BLAKE2b-256 d370c345c31c112690e986bfa4f7f0b3d6cc61480843a89498e5ee1699366e39

See more details on using hashes here.

File details

Details for the file robocorp_actions-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: robocorp_actions-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure

File hashes

Hashes for robocorp_actions-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 04446183992765ed498a6972b368fa6589eb7c7d005ba2d08360994f30f59ddf
MD5 8a083bbdeb4e29602255f6335d297cdd
BLAKE2b-256 a2a0f4c9be0e32dfd35bc618739f4122ea017f71bf37524b503eeee8ac00b3fb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page