@langchain/community
Version:
Third-party integrations for LangChain.js
42 lines (41 loc) • 1.26 kB
JavaScript
import { GoogleCalendarBase } from "./base.js";
import { VIEW_TOOL_DESCRIPTION } from "./descriptions.js";
import { runViewEvents } from "./commands/run-view-events.js";
//#region src/tools/google_calendar/view.ts
/**
* @example
* ```typescript
* const googleCalendarViewTool = new GoogleCalendarViewTool({
* credentials: {
* clientEmail: process.env.GOOGLE_CALENDAR_CLIENT_EMAIL,
* privateKey: process.env.GOOGLE_CALENDAR_PRIVATE_KEY,
* calendarId: process.env.GOOGLE_CALENDAR_CALENDAR_ID,
* },
* scopes: [
* "https:
* "https:
* ],
* model: new ChatOpenAI({ model: "gpt-4o-mini" }),
* });
* const viewInput = `What meetings do I have this week?`;
* const viewResult = await googleCalendarViewTool.invoke({ input: viewInput });
* console.log("View Result", viewResult);
* ```
*/
var GoogleCalendarViewTool = class extends GoogleCalendarBase {
name = "google_calendar_view";
description = VIEW_TOOL_DESCRIPTION;
constructor(fields) {
super(fields);
}
async _call(query, runManager) {
return runViewEvents(query, {
calendar: await this.getCalendarClient(),
model: this.getModel(),
calendarId: this.calendarId
}, runManager);
}
};
//#endregion
export { GoogleCalendarViewTool };
//# sourceMappingURL=view.js.map