Agent configuration for controlling behavior, capabilities, and document access.
const config = { instruction: 'You are a Slack bot helping users manage content.', userMessageContext: { 'slack-channel': '#content-team', 'slack-user': '@john.doe', }, capabilities: { read: true, write: false, },} Copy
const config = { instruction: 'You are a Slack bot helping users manage content.', userMessageContext: { 'slack-channel': '#content-team', 'slack-user': '@john.doe', }, capabilities: { read: true, write: false, },}
const config = { capabilities: { read: { preset: 'standard' }, write: false, }, filter: { read: '_type in ["post", "author", "page"]', },} Copy
const config = { capabilities: { read: { preset: 'standard' }, write: false, }, filter: { read: '_type in ["post", "author", "page"]', },}
Agent configuration for controlling behavior, capabilities, and document access.