Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
56c0d41
Add inference-compiler extension
PawelPeczek-Roboflow Mar 31, 2026
5159e22
Merge branch 'main' into feature/inference-compiler-tool
PawelPeczek-Roboflow Apr 13, 2026
f61da5a
Bump version
PawelPeczek-Roboflow Apr 13, 2026
de8ab17
Fix issue with Jetson version
PawelPeczek-Roboflow Apr 13, 2026
c3dc0fe
Adjust type of entity
PawelPeczek-Roboflow Apr 13, 2026
a532bde
Improve auto-detection of compilation mode
PawelPeczek-Roboflow Apr 13, 2026
3cbb777
Adjust compilation inside docker container
PawelPeczek-Roboflow Apr 13, 2026
f04ecfb
Fix entrypoint bash
PawelPeczek-Roboflow Apr 13, 2026
8f8483d
Add debug
PawelPeczek-Roboflow Apr 13, 2026
71f23e4
Try to fix command
PawelPeczek-Roboflow Apr 13, 2026
ba23411
Fix command
PawelPeczek-Roboflow Apr 13, 2026
926cd4c
Adjust compilation option
PawelPeczek-Roboflow Apr 13, 2026
0189cc0
Add env file option
PawelPeczek-Roboflow Apr 13, 2026
3a2e039
Add more display
PawelPeczek-Roboflow Apr 13, 2026
7bf8ba4
re-raise error tmp
PawelPeczek-Roboflow Apr 13, 2026
bd1b915
really dummy dumps
PawelPeczek-Roboflow Apr 13, 2026
b0dd256
Disable verbose
PawelPeczek-Roboflow Apr 13, 2026
8aa9cfa
Disable dummy prints
PawelPeczek-Roboflow Apr 13, 2026
9b7e267
Pass console
PawelPeczek-Roboflow Apr 13, 2026
5ff091f
Disable dummy dump
PawelPeczek-Roboflow Apr 13, 2026
6014f74
Enable yolo26 compilation
PawelPeczek-Roboflow Apr 14, 2026
9983dd1
Add changes to make roboflow weights provider resilient for malformed…
PawelPeczek-Roboflow Apr 16, 2026
b2e8e04
Apply changes requested in CR
PawelPeczek-Roboflow Apr 16, 2026
e5ccfbe
Merge branch 'main' into feature/inference-compiler-tool
PawelPeczek-Roboflow Apr 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ LICENSE.core (Apache 2.0) applies to all files in this repository
except for files in or under any directory that contains a superseding
license file (such as the models located in `inference/models/`
which are governed by their own individual licenses and
the files and folders in the `inference/enterprise/` directory which are
the files and folders in the `inference/enterprise/` and `inference_cli/lib/enterprise/` directories which are
governed by the Roboflow Enterprise License located at
`inference/enterprise/LICENSE.txt`).
2 changes: 1 addition & 1 deletion inference/core/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.2.2"
__version__ = "1.2.3"


if __name__ == "__main__":
Expand Down
39 changes: 39 additions & 0 deletions inference_cli/lib/enterprise/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
The Roboflow Enterprise License (the “Enterprise License”)
Copyright (c) 2023 Roboflow Inc.

With regard to the Roboflow Software:

This software and associated documentation files (the "Software") may only be
used in production, if you (and any entity that you represent) have accepted
and are following the terms of a separate Roboflow Enterprise agreement
that governs how you use the software.

Subject to the foregoing sentence, you are free to modify this Software and publish
patches to the Software. You agree that Roboflow and/or its licensors (as applicable)
retain all right, title and interest in and to all such modifications and/or patches,
and all such modifications and/or patches may only be used, copied, modified,
displayed, distributed, or otherwise exploited with a valid Roboflow Enterprise
license for the correct number of seats, devices, inferences, and other
usage metrics specified therein.

Notwithstanding the foregoing, you may copy and modify the Software for development
and testing purposes, without requiring a subscription. You agree that Roboflow and/or
its licensors (as applicable) retain all right, title and interest in and to all
such modifications. You are not granted any other rights beyond what is expressly
stated herein. Subject to the foregoing, it is forbidden to copy, merge, publish,
distribute, sublicense, and/or sell the Software.

The full text of this Enterprise License shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

For all third party components incorporated into the Roboflow Software, those
components are licensed under the original license provided by the owner of the
applicable component.
Empty file.
8 changes: 8 additions & 0 deletions inference_cli/lib/enterprise/core.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import typer

from inference_cli.lib.enterprise.inference_compiler.cli.core import (
inference_compiler_app,
)

enterprise_app = typer.Typer(help="Roboflow Enterprise commands")
enterprise_app.add_typer(inference_compiler_app, name="inference-compiler")
Empty file.
Empty file.
Loading
Loading