fix: add completion mode object check (#3515)

pull/3520/head
Yeuoly 2 years ago committed by GitHub
parent 200010be19
commit fbd3ef8752
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -152,6 +152,9 @@ class OAIAPICompatLargeLanguageModel(_CommonOAI_API_Compat, LargeLanguageModel):
if (completion_type is LLMMode.CHAT and json_result['object'] == ''):
json_result['object'] = 'chat.completion'
elif (completion_type is LLMMode.COMPLETION and json_result['object'] == ''):
json_result['object'] = 'text_completion'
if (completion_type is LLMMode.CHAT
and ('object' not in json_result or json_result['object'] != 'chat.completion')):
raise CredentialsValidateFailedError(

Loading…
Cancel
Save