-
Notifications
You must be signed in to change notification settings - Fork 3.2k
feat(fireflies): added fireflies tools and trigger #2713
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryThis PR successfully adds a comprehensive Fireflies.ai integration with 10 tools, a webhook-based trigger, and enhanced wand AI assistance for timestamp generation across multiple blocks. Key Changes:
Technical Quality:
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
actor User
participant UI as Fireflies Block UI
participant Workflow as Workflow Engine
participant Tool as Fireflies Tool
participant API as Fireflies API
participant Webhook as Webhook Handler
Note over User,Webhook: Fireflies Tools Flow
User->>UI: Select operation & enter params
UI->>Workflow: Execute block with params
Workflow->>Tool: Call fireflies_* tool
Tool->>API: GraphQL/REST request<br/>(Bearer auth)
API-->>Tool: Response data
Tool-->>Workflow: Transformed response
Workflow-->>UI: Display results
Note over User,Webhook: Timestamp Wand Enhancement
User->>UI: Click wand on date field
UI->>UI: Show "Describe the date" prompt
User->>UI: "last week"
UI->>UI: Send to /api/wand with<br/>generationType='timestamp'
UI->>UI: Add current UTC context
UI->>UI: LLM generates "2026-01-01T00:00:00Z"
UI-->>User: Fill date field
Note over User,Webhook: Webhook Trigger Flow
User->>UI: Set up trigger in workflow
UI->>UI: Generate unique webhook URL
User->>API: Configure webhook in<br/>Fireflies dashboard
API->>Webhook: POST transcription event
Webhook->>Webhook: Verify HMAC signature
Webhook->>Workflow: Trigger workflow with<br/>meetingId, eventType, etc.
Workflow-->>User: Execute downstream blocks
|
This was referenced Jan 7, 2026
waleedlatif1
added a commit
that referenced
this pull request
Jan 8, 2026
* feat(fireflies): added fireflies tools and trigger * finished fireflies * added wandConfig to all timestamp subblocks on the platform * added current time to timestamp wand generation * fix file upload subblock styling, tested all fireflies ops * removed dropdown for trigger for fireflies * updated docs * added fireflies to formatWebhookInput * added more wandConfigs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
timestampand added this to all timestamp fields for various blocksType of Change
Testing
Tested manually
Checklist