8000 Add warning for people who wants to use other apis aside from OpenAI · DataSolveProblems/pyqt-openai@e5b96fd · GitHub
[go: up one dir, main page]

Skip to content

Commit e5b96fd

Browse files
committed
Add warning for people who wants to use other apis aside from OpenAI
1 parent c102490 commit e5b96fd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyqt_openai/gpt_widget/right_sidebar/chatPage.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ def __initUi(self):
5555
self.__warningLbl.setVisible(False)
5656

5757
# TODO WILL_BE_REMOVED_AFTER v1.5.0
58-
self.__warningLbl.setText('Currently LlamaIndex, JSON mode, and Image input are only available for the OpenAI Chat model.')
58+
self.__warningLbl.setText('Currently LlamaIndex, JSON mode, and Image input are only available for the OpenAI Chat model.\n'
59+
# TODO WILL_BE_REMOVED_AFTER v1.3.0
60+
'Also you have to get OpenAI API key to use these features.\n'
61+
'I will update this soon.')
5962
self.__warningLbl.setWordWrap(True)
6063

6164
advancedSettingsScrollArea = QScrollArea()

0 commit comments

Comments
 (0)
0