Trigger Example with V7
Configuration on Valohai
- step:
name: V7 incoming
image: python:3.11
command:
- pip install valohai-utils
- python ./v7_request.py
inputs:
- name: v7-payloadimport json
import valohai
with open(valohai.inputs("v7-payload").path()) as payload_f:
payload = json.load(payload_f)
print("Got this data from V7:")
print(json.dumps(payload, indent=4))Configuration on V7
Next steps
Last updated
Was this helpful?
