Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
lm-evaluation-harness
Commits
30c060d2
"vscode:/vscode.git/clone" did not exist on "362c33dff4bb8999e848c8b9e78068ec98cb9a09"
Unverified
Commit
30c060d2
authored
May 05, 2024
by
ciaranby
Committed by
GitHub
May 05, 2024
Browse files
Fix bug in setting until kwarg in openai completions (#1784)
parent
297966f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lm_eval/models/openai_completions.py
lm_eval/models/openai_completions.py
+1
-1
No files found.
lm_eval/models/openai_completions.py
View file @
30c060d2
...
@@ -430,7 +430,7 @@ class OpenaiChatCompletionsLM(LM):
...
@@ -430,7 +430,7 @@ class OpenaiChatCompletionsLM(LM):
if
"until"
in
kwargs
.
keys
():
if
"until"
in
kwargs
.
keys
():
until
=
kwargs
.
pop
(
"until"
)
until
=
kwargs
.
pop
(
"until"
)
if
isinstance
(
until
,
str
):
if
isinstance
(
until
,
str
):
until
=
[
kwargs
]
until
=
[
until
]
elif
not
isinstance
(
until
,
list
):
elif
not
isinstance
(
until
,
list
):
raise
ValueError
(
raise
ValueError
(
f
"Expected repr(kwargs['until']) to be of type Union[str, list] but got
{
until
}
"
f
"Expected repr(kwargs['until']) to be of type Union[str, list] but got
{
until
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment