-
Notifications
You must be signed in to change notification settings - Fork 49
feat(runtime): add standalone edge runtime for Pi/Jetson deployment #799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
rachmlenig
wants to merge
37
commits into
main
Choose a base branch
from
feat-runtime-edge-standalone
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
85fc182
feat(runtime): add standalone edge runtime for Pi/Jetson deployment
rachmlenig 6a291a9
refactor(common): extract shared utils into llamafarm_common
rachmlenig f922cd4
chore(runtime): add edge runtime OpenAPI spec
rachmlenig e274e01
feat(runtime): add Hailo-10H backend for edge vision detection
rachmlenig 270af52
fix(runtime): fix Dockerfile build context and uv source paths
rachmlenig e18c3a3
fix(llamafarm-llama): fix ARM64 binary download URL for linux-arm64
rachmlenig 6c3db02
fix(runtime): switch Docker base to Ubuntu 24.04 for GLIBC 2.39
rachmlenig 2119f7d
fix(runtime): remove import * from re-export shims, drop unused import
rachmlenig 1a2f1f7
fix(runtime): fix Docker vision deps and harden image decoding
rachmlenig bfd5d00
fix(ci): re-export HfApi for test mocking, add Nx project config for …
rachmlenig 199816d
fix(ci): fix test mocks and prevent PyTorch index leaking into server…
rachmlenig 5fda695
fix(runtime): fix Hailo PCIe auto-detection in edge server
rachmlenig 3e22dee
fix(runtime): use InferModel for output shape in Hailo inference
rachmlenig 4d94975
fix(runtime): remove unsupported timeout_ms arg from Hailo run()
rachmlenig ffef60a
fix(runtime): pass timeout as positional arg to Hailo run()
rachmlenig 2c39c0a
fix(runtime): address PR review findings from CodeQL and code-quality…
rachmlenig d218e89
fix(runtime): fix normalized coordinate parsing in Hailo NMS output
rachmlenig d09495a
fix(runtime): add debug logging to Hailo NMS coordinate parsing
rachmlenig 6ac481a
fix(runtime): rewrite Hailo NMS parser for per-class output format
rachmlenig 7dd0142
fix(runtime): parse flat per-class Hailo NMS buffer correctly
rachmlenig ff5f045
fix(runtime): address cubic-dev-ai review feedback
rachmlenig 4ec1f4a
feat(runtime): add Zenoh IPC interface for on-drone inference
rachmlenig 4e8a5ee
fix(runtime): remove await from synchronous zenoh.open() call
rachmlenig d39fdf1
fix(runtime): use synchronous Zenoh Python API throughout IPC service
rachmlenig 9b3bbb2
fix(common): cache device detection to suppress repeated CPU log spam
rachmlenig a6d2de7
ci(docker): add edge-runtime to Docker CI and release workflows
rachmlenig 64a102b
chore(rag): update uv.lock to fix Docker build
rachmlenig f05e41b
feat(edge): add /v1/completions endpoint for raw text completions
mhamann d77518e
chore(common): update uv.lock to add cachetools dependency
rachmlenig 53d1395
chore(server): update uv.lock to fix Docker build
rachmlenig 1985cca
chore: use multistage docker build with vision toggle
BobbyRadford fb5c1b1
fix(edge): address PR review comments for path safety and correctness
rachmlenig 310c808
fix(ci): use branch-derived tag for Trivy security scan
rachmlenig 4ccb64b
ci(docker): publish edge-runtime-lite image without vision deps
rachmlenig 22256a0
fix(ci): restore runtime to create-manifest for multi-arch support
rachmlenig 80bc45c
fix(ci): use uv run for datamodel import verification
rachmlenig 8be0ec9
fix(ci): replace broken ollama-action with official install script
rachmlenig File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1: Avoid executing an unpinned remote install script in CI; use a pinned action/versioned artifact (or checksum-verified download) to reduce supply-chain and reproducibility risk.
Prompt for AI agents