mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 02:41:59 -04:00
11 lines
356 B
Plaintext
11 lines
356 B
Plaintext
```java Java
|
|
List<ChatCompletionMessageParam> messages =
|
|
Collections.singletonList(
|
|
ChatCompletionMessageParam.ofUser(
|
|
ChatCompletionUserMessageParam.builder()
|
|
.content("What is my name")
|
|
.build()));
|
|
|
|
ThreadsChatPipeline.chatPipeline().apply(new ThreadsChatPipeline.ChatRequest(messages, true));
|
|
```
|