mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 10:52:15 -04:00
11 lines
379 B
Plaintext
11 lines
379 B
Plaintext
```java Java
|
|
List<ChatCompletionMessageParam> messages =
|
|
Collections.singletonList(
|
|
ChatCompletionMessageParam.ofUser(
|
|
ChatCompletionUserMessageParam.builder()
|
|
.content("What was the first message I sent you?")
|
|
.build()));
|
|
|
|
ThreadsChatPipeline.chatPipeline().apply(new ThreadsChatPipeline.ChatRequest(messages, true));
|
|
```
|