Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aws[patch]: Use abort signal when available with SDK requests #6540

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions libs/langchain-aws/src/chat_models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,9 @@ export class ChatBedrockConverse
system: converseSystem,
...params,
});
const response = await this.client.send(command);
const response = await this.client.send(command, {
abortSignal: options.signal,
});
const { output, ...responseMetadata } = response;
if (!output?.message) {
throw new Error("No message found in Bedrock response.");
Expand Down Expand Up @@ -855,7 +857,9 @@ export class ChatBedrockConverse
system: converseSystem,
...params,
});
const response = await this.client.send(command);
const response = await this.client.send(command, {
abortSignal: options.signal,
});
if (response.stream) {
for await (const chunk of response.stream) {
if (chunk.contentBlockStart) {
Expand Down
Loading