To ensure your feature is recognized by a runtime environment, you must place your main logic and its dependencies at the root of the folder before zipping.
List any external libraries in a requirements.txt file. 2. Install Dependencies Locally arina.zip
pip install -r requirements.txt --target=/path/to/your-feature-folder Use code with caution. Copied to clipboard 3. Package the ZIP To ensure your feature is recognized by a
def handler(context, inputs): # Your feature logic here greeting = "Feature Active: " + inputs["name"] return {"status": "success", "message": greeting} Use code with caution. Copied to clipboard arina.zip