CLI for the Griptape Framework and Cloud
Project description
Griptape Cloud CLI
The Griptape CLI is a command-line interface for interacting with features of Griptape Cloud. Today, it provides an emulator for Griptape Cloud Managed Structures, which allows you to run and test your Managed Structures locally.
Prerequisites
- A GitHub account.
- Python 3.11.
- Poetry for running the example client program.
Installation
-
Install griptape-cli
pipx install griptape-cli
You can also install a pre-release version from GitHub.
git clone https://github.com/griptape-ai/griptape-cli.git
pipx install ./griptape-cli --force
-
Verify installation
gt --help
Skatepark Emulator
You can use the CLI to spin up Skatepark, a local emulator for Griptape Cloud Managed Structures. It exposes an API that is identical to the one you would interact with when running your Managed Structure in Griptape Cloud. Use Skatepark to develop, test, and validate that your program will operate as expected when deployed as a Griptape Cloud Managed Structure. Skatepark gives you confidence that when you bring your Structure into Griptape Cloud as a Managed Structure, it will continue to operate as expected, at scale.
-
Start by creating a new repository in your own Github account from the Managed Structure Template.
- Make sure you're logged in to GitHub.
- Go to the Managed Structure Template repo.
- Select the Use this template drop-down.
- Choose Create a new repository.
- Provide a name for the new repository and (optionally) a description.
- Press the Create repository button.
- You now have a repository in your own GitHub account that is a copy of the Managed Structure Template for you to begin working with.
-
Clone your newly-created repository to a directory in your local development environment so that you can begin authoring your own Griptape Cloud Managed Structure.
-
Start Skatepark.
gt skatepark start
-
Open a new terminal window. Navigate to the directory with the locally-cloned repository.
-
Register a Structure with Skatepark.
gt skatepark register --main-file structure.py
This will result in the ID of the registered Structure. It is important to make note of this ID as it will be used to distinguish which Structure you want to run. You can register any number of Structures.
The example client program uses the environment variable
GT_STRUCTURE_ID
to determine which Structure to run. Set this environment variable to the Structure ID you registered in the previous step.export GT_STRUCTURE_ID={STRUCTURE_ID}
Or you can register and set the environment variable in one step.
export GT_STRUCTURE_ID=$(gt skatepark register --main-file structure.py --tldr)
[!IMPORTANT] Structures registered with the Skatepark are not persisted across restarts. You will need to re-register the Structure each time you restart Skatepark.
-
Confirm that the Structure is registered.
gt skatepark list
You should see a list of registered Structures and the directories they point to, confirming that your Structure was properly registered
-
You can load environment variables into your Structure by creating an
.env
file in the directory of the Structure you registered.- Create a file named
.env
in thestructure/
directory. - Open the
.env
file in a text editor. - The template expects an
OPENAI_API_KEY
environment variable by default to function. Add OPENAI_API_KEY=your OpenAI API Key here to the.env
file and save it. - As you expand on the template, you may add any other environment variables your Structure depends on to this file.
- Create a file named
-
Rebuild the structure to load in the new environment variable. Note that this is only required for changes to
.env
orrequirements.txt
. Code changes do not require a rebuild.gt skatepark build
-
Now that your Structure is registered and built with environment variables, use the example client program to call Skatepark's API for running the Structure.
Navigate to the
example-client
directory.cd example-client
Install the dependencies required by the example client program.
poetry install --no-root
Run the example client program.
poetry run python client.py
You should see the result of the Structure answering
What is 123 * 34, 23 / 12.3, and 9 ^ 4
, indicating a successful run.
[!IMPORTANT] The client program is an example for how to interact with the Managed Structure's API. It is useful for testing your Managed Structure locally, but ultimately you will want to integrate your Managed Structure with your own application.
Simulating Structure Run Delay
By default, Skatepark adds a 2 second delay before transitioniong Structure Runs from the QUEUED
state to the RUNNING
state.
If you want to change this delay in order to test the behavior of your Structure when it is in the QUEUED
state, you can do so by setting the GT_SKATEPARK_QUEUE_DELAY
environment variable.
For example, a value of GT_SKATEPARK_QUEUE_DELAY=5
will cause Skatepark to wait 5 seconds before transitioning the Structure Run from QUEUED
to RUNNING
. Setting a value of GT_SKATEPARK_QUEUE_DELAY=0
will cause Skatepark to transition the Structure Run immediately.
Note that this environment variable must be set in the terminal where the Skatepark server is running, not in the terminal where the client program is run.
Documentation
Please refer to Griptape Docs
Development
poetry install
poetry run gt
Tests
poetry run pytest
Contributing
Thank you for considering contributing to Griptape! Before you start, please read the following guidelines.
Submitting Issues
If you have identified a bug, want to propose a new feature, or have a question, please submit an issue through our public issue tracker. Before submitting a new issue, please check the existing issues to ensure it hasn't been reported or discussed before.
Versioning
Griptape CLI is in constant development and its APIs and documentation are subject to change. Until we stabilize the API and release version 1.0.0, we will use minor versions (i.e., x.Y.z) to introduce features and breaking features, and patch versions (i.e., x.y.Z) for bug fixes.
License
Griptape CLI is available under the Apache 2.0 License.
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
Built Distribution
File details
Details for the file griptape_cli-0.5.0.tar.gz
.
File metadata
- Download URL: griptape_cli-0.5.0.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.9.17 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b99760e6c4a4cd857dc35578c59ade71f5655f7d1a9127355b4ad28b97d653f |
|
MD5 | 1fcb71b80584c4289a5e85df6b921fde |
|
BLAKE2b-256 | a92ba21389d5788dd8772056a0e459d84a0d784c24c8f13b45f6c0c98bfaa5de |
File details
Details for the file griptape_cli-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: griptape_cli-0.5.0-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.9.17 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 410970d2c32802233cca73753a13b5c09cd71f4adf6a3070ef05e2eda40c2c77 |
|
MD5 | e14929eae5bf3d02eef74c282b5e7816 |
|
BLAKE2b-256 | 1b98a528fcba0cb2cd4bfcdd91f63a99d457087623acaf1cc3f63c518eaf7d5c |