You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: processors/providers/promptly/text_chat.py
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,9 @@ class TextChatConfiguration(ApiProcessorSchema):
75
75
use_azure_if_available: bool=Field(
76
76
title='Use Azure if available', default=True, description='Use Azure if available. Will fallback to OpenAI when unchecked', advanced_parameter=True,
77
77
)
78
+
use_localai_if_available: bool=Field(
79
+
title='Use LocalAI if available', default=False, description='Use LocalAI if available. Will fallback to OpenAI or Azure OpenAI when unchecked', advanced_parameter=True,
80
+
)
78
81
chat_history_in_doc_search: int=Field(
79
82
title='Chat history in doc search', default=0, description='Number of messages from chat history to include in doc search', advanced_parameter=True,
0 commit comments