This commit is contained in:
mannaandpoem 2023-12-27 15:33:33 +08:00
parent 8952deaa8b
commit 81934e2202
2 changed files with 2 additions and 1 deletions

View file

@ -136,6 +136,7 @@ REASON = ActionNode(
key="reason", expected_type=str, instruction="Explain the reasoning process from question to answer", example="..."
)
NODES = [
LANGUAGE,
PROGRAMMING_LANGUAGE,

View file

@ -237,7 +237,7 @@ class OpenAIGPTAPI(BaseGPTAPI, RateLimiter):
"n": 1,
"stop": None,
"temperature": 0.3,
"timeout": 30,
"timeout": 3,
"model": self.model,
}
if configs: