Skip to content

Commit 24fc692

Browse files
author
Lilian
authored
v0.20.1: patch how model is handled in moderation endpoint. (#102)
1 parent 3852e25 commit 24fc692

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

openai/api_resources/moderation.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ def get_url(self):
1212

1313
@classmethod
1414
def create(cls, input: Union[str, List[str]], model: Optional[str] = None):
15-
if model not in cls.VALID_MODEL_NAMES:
15+
if model is not None and model not in cls.VALID_MODEL_NAMES:
1616
raise ValueError(
1717
f"The parameter model should be chosen from {cls.VALID_MODEL_NAMES} "
1818
f"and it is default to be None."
1919
)
2020

2121
instance = cls()
22-
return instance.request("post", cls.get_url(), {"input": input, "model": model})
22+
params = {"input": input}
23+
if model is not None:
24+
params["model"] = model
25+
return instance.request("post", cls.get_url(), params)

0 commit comments

Comments
 (0)