소스 검색

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