Skip to content

Commit

Permalink
Merge pull request #971 from roboflow/feature/batch-processing-cli
Browse files Browse the repository at this point in the history
Feature/batch processing cli
  • Loading branch information
PawelPeczek-Roboflow authored Jan 30, 2025
2 parents 7bb1a67 + 5b7770a commit a66017c
Show file tree
Hide file tree
Showing 23 changed files with 2,555 additions and 77 deletions.
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__ = "0.35.0"
__version__ = "0.36.0"


if __name__ == "__main__":
Expand Down
9 changes: 9 additions & 0 deletions inference_cli/lib/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,12 @@

CLI_LOG_LEVEL = os.getenv("CLI_LOG_LEVEL", "INFO")
ROBOFLOW_API_KEY = os.getenv("ROBOFLOW_API_KEY")
PROJECT = os.getenv("PROJECT", "roboflow-platform")
API_BASE_URL = os.getenv(
"API_BASE_URL",
(
"https://api.roboflow.com"
if PROJECT == "roboflow-platform"
else "https://api.roboflow.one"
),
)
Empty file.
Empty file.
Loading

0 comments on commit a66017c

Please sign in to comment.