Skip to content

Commit

Permalink
feat: change default verbose to False
Browse files Browse the repository at this point in the history
  • Loading branch information
vndee committed Jul 11, 2024
1 parent 91248c0 commit 8b15465
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion llm_sandbox/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(
dockerfile: Optional[str] = None,
lang: str = SupportedLanguage.PYTHON,
keep_template: bool = False,
verbose: bool = True,
verbose: bool = False,
):
"""
Create a new sandbox session
Expand Down
2 changes: 1 addition & 1 deletion llm_sandbox/kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(
image: Optional[str] = None,
lang: str = SupportedLanguage.PYTHON,
keep_template: bool = False,
verbose: bool = True,
verbose: bool = False,
kube_namespace: Optional[str] = "default",
):
"""
Expand Down
2 changes: 1 addition & 1 deletion llm_sandbox/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __new__(
image: Optional[str] = None,
lang: str = SupportedLanguage.PYTHON,
keep_template: bool = False,
verbose: bool = True,
verbose: bool = False,
use_kubernetes: bool = False,
kube_namespace: Optional[str] = "default",
):
Expand Down

0 comments on commit 8b15465

Please sign in to comment.