Skip to content

Commit

Permalink
fix: langchain and remove failing test check (#1187)
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu-dixit authored Jan 14, 2025
1 parent 62d1de9 commit 46b606e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/src/frameworks/langchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class LangchainToolSet extends BaseComposioToolSet {
super({
apiKey: config.apiKey || null,
baseUrl: config.baseUrl || COMPOSIO_BASE_URL,
runtime: config?.runtime || null,
runtime: config?.runtime || LangchainToolSet.FRAMEWORK_NAME,
entityId: config.entityId || LangchainToolSet.DEFAULT_ENTITY_ID,
});
}
Expand Down
2 changes: 1 addition & 1 deletion js/src/sdk/base.toolset.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ describe("ComposioToolSet class tests", () => {
expect(executionResultAfterRemove.data.title).toBe("Test issue");
});

it.failing("should execute an file upload", async () => {
it("should execute an file upload", async () => {
const ACTION_NAME = "GMAIL_SEND_EMAIL";
const actions = await toolset.getToolsSchema({ actions: [ACTION_NAME] });

Expand Down

0 comments on commit 46b606e

Please sign in to comment.