Skip to main content

Documentation Index

Fetch the complete documentation index at: https://openlayer.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

The openlayer push command is used to push the current local directory to the Openlayer project linked.

Usage

openlayer push [flags]

Examples

# Push with a commit message
openlayer push --message "Initial experiment with smaller model"

# Push without waiting for results
openlayer push --wait=false

# Push and stream logs in real time
openlayer push --tail

# Push with custom arguments passed to your batch command – these will get logged in the commit
openlayer push --custom-args learning_rate=0.01,batch_size=32

Flags

FlagAliasDefaultDescription
--message""Add a commit message to describe this push.
--waittrueWait until tests finish running before returning.
--tail-tfalseStream live logs and progress updates while the push runs.
--custom-args""Comma-separated list of key=value arguments. Overrides any custom args defined in openlayer.json.