浏览代码

tiny type fix

Falko Schindler 1 年之前
父节点
当前提交
cd6246cf55
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/chat_with_ai/main.py

+ 1 - 1
examples/chat_with_ai/main.py

@@ -10,7 +10,7 @@ OPENAI_API_KEY = 'not-set'  # TODO: set your OpenAI API key here
 
 llm = ConversationChain(llm=ChatOpenAI(model_name='gpt-3.5-turbo', openai_api_key=OPENAI_API_KEY))
 
-messages: List[Tuple[str, str, str]] = []
+messages: List[Tuple[str, str]] = []
 thinking: bool = False