Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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`).
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