소스 검색

Update examples/typescript-simplechat/readme.md

Co-authored-by: Bruce MacDonald <brucewmacdonald@gmail.com>
Matt Williams 1 년 전
부모
커밋
fa75998c0d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/typescript-simplechat/readme.md

+ 1 - 1
examples/typescript-simplechat/readme.md

@@ -1,6 +1,6 @@
 # Simple Chat Example
 
-The **chat** endpoint is one of two ways to generate text from an LLM with Ollama. At a high level you provide the endpoint an array of objects with a role and content specified. Then with each output and prompt, you add more of those role/content objects, which builds up the history.
+The **chat** endpoint is one of two ways to generate text from an LLM with Ollama. At a high level you provide the endpoint an array of message objects with a role and content specified. Then with each output and prompt, you add more messages, which builds up the history.
 
 ## Review the Code