Skip to main content

The Banana CLI helps you build Potassium apps

Project description

banana-cli

The goal of the Banana CLI is to bring an npm-like experience to ML development loops.

This version includes:

  • banana init to create a project with boilerplate
  • banana install to install packages from the requirements.txt
  • banana --version to show the current version
  • banana deploy to easily deploy the local folder to Banana.dev without using GitHub

Here's a demo video

Installing the CLI locally

python3 -m venv .venv
source .venv/bin/activate
pip3 install -e ./
banana --version

This is a v0 release using SemVer; it is not stable and the interface can break at any time.

To use it

  1. Create a new project directory with
banana init my-app
cd my-app
  1. Start the dev server
python3 app.py
  1. Call your API (from a separate terminal)
curl -X POST -H "Content-Type: application/json" -d '{"prompt": "Hello I am a [MASK] model."}' http://localhost:8000/

The interactive dev server works like a react, next, or nodemon server: it selectively hot reloads components when you save changes to different parts of your app.py file.

The init() function is ran on startup and for every change to init().

The handler() function is ran on every change to handler(), without needing to wait for a long init()

Play with it:

  1. Try changing the handler, see what happens!
  2. Try changing the init, see what happens!

Future Development:

  • Lock in a stable interface
  • Add the following commands
    • banana stage -> run a temporary deployment to Banana's cluster for on-GPU testing
    • banana test -> unit test against local test cases

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

banana_cli-0.1.2.tar.gz (17.5 kB view hashes)

Uploaded Source

Built Distribution

banana_cli-0.1.2-py3-none-any.whl (18.4 kB view hashes)

Uploaded Python 3

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