Skip to content

Commit 438e457

Browse files
committed
Missing args default + litellm version cap
1 parent dbcc9e8 commit 438e457

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

interpreter/terminal_interface/start_terminal_interface.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ def start_terminal_interface(interpreter):
259259
for arg in arguments:
260260
action = arg.get("action", "store_true")
261261
nickname = arg.get("nickname")
262+
default=arg.get("default")
262263

263264
name_or_flags = [f'--{arg["name"]}']
264265
if nickname:

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ python = ">=3.9,<4"
1414
astor = "^0.8.1"
1515
git-python = "^1.0.3"
1616
inquirer = "^3.1.3"
17-
litellm = "^1.18.4"
17+
litellm = "^1.18.4, <1.34.25"
1818
pyyaml = "^6.0.1"
1919
rich = "^13.4.2"
2020
six = "^1.16.0"

0 commit comments

Comments
 (0)