2021-07-10 20:18:12 UTC - Siddharth Venu: I want to create a *.zip* action that has the Python 3 + AI runtime. When I try to specify a kind parameter for it in the CLI, it throws an error: ```The specified runtime 'python:3-ai' is not supported by this platform. Valid values are: 'dotnet:2.2', 'go:1.11', 'nodejs:10', 'ruby:2.5', 'dotnet:3.1', 'swift:5.1', 'blackbox', 'swift:4.2', 'rust:1.34', 'java:8', 'sequence', 'nodejs:12', 'python:3', 'go:1.15', 'php:7.4', 'nodejs:14', 'php:7.3'. ``` Does this mean the runtime is available just to be used as a Docker action and cannot be used with *.zip* actions? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1625948292073900 ---- 2021-07-10 20:44:40 UTC - Matt Welke: You have to use --docker as the kind, since it isn't registered as a kind on your deployment, but you can still use a .zip file for your source code that way. The runtimes I've come across so far have been designed that way. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1625949880074600?thread_ts=1625949880.074600&cid=C3TPCAQG1 ----