Skip to content
Draft
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions apps/docs/providers/communications/slack.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,18 @@ If you want to start tasks by direct message, make sure the app can receive DMs.
Enable the app surfaces needed for messages to the bot, then keep the
`message.im` event subscription enabled.

### Audio attachments

Roomote transcribes the first audio attachment in a Slack message and includes
the transcript in the task prompt. Audio must be no larger than 20 MiB and use
AAC, FLAC, MP4, MPEG, OGG, WAV, or WebM. The deployment also needs at least one
configured model that supports audio input.

If a message contains multiple audio attachments, Roomote transcribes only the

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This condition is not unconditional. In processSlackAttachments, an unsupported or oversized first audio attachment returns at lines 145-161 before the audioFiles.length > 1 block at line 201, so multiple attachments in either case produce only the unsupported/size warning. Qualify this sentence or change the handler so the docs remain accurate.

first and adds a warning to the task prompt. It also adds a warning when the
audio format is unsupported, the file is too large, no configured model can
transcribe it, or transcription fails.

## Local URL changes

Keep the public URL stable. When it changes, update the Slack app's redirect
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/providers/inference/google-gemini.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Add **Google Gemini** in **Settings > Models** and paste the key, or configure:
GEMINI_API_KEY=...
```

Roomote adds recommended Gemini models under the `google/` prefix. A practical
mapping uses a Pro model for coding and planning and a Flash model for helper
and explore work. Refresh model metadata after Google changes preview model IDs.
Roomote adds recommended Gemini models under the `google/` prefix and uses
Gemini 3.6 Flash as the default recommendation across roles. Refresh model
metadata after Google changes preview model IDs.

## Cost behavior

Expand Down
Loading