Skip to content

Commit

Permalink
cohere[patch]: Do not test stream tool calls in cohere (langchain-ai#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul authored and CarterMorris committed Nov 10, 2024
1 parent 377ad8b commit e15307f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ class ChatCohereStandardIntegrationTests extends ChatModelIntegrationTests<
"Prompt does not always cause Cohere to invoke a tool. TODO: re-write inside this class with better prompting for cohere."
);
}

async testStreamTools(): Promise<void> {
this.skipTestMessage(
"testStreamTools",
"ChatCohere",
"Cohere only responds with the tool call in the final chunk. TODO: fix implementation to actually stream tools."
);
}
}

const testClass = new ChatCohereStandardIntegrationTests();
Expand Down

0 comments on commit e15307f

Please sign in to comment.