Skip to main content

Integration library for Microsoft Agents with Slack

Project description

Microsoft Agents Hosting - Slack

PyPI version

Integration library for building Slack agents using the Microsoft 365 Agents SDK. Provides direct-to-Slack responses (the full Slack Web API surface, beyond what Azure Bot Service exposes), a typed SlackChannelData envelope with dot-notation property access, and a SlackStream helper for chat.startStream / chat.appendStream / chat.stopStream.

Installation

pip install microsoft-agents-hosting-slack

Usage

from microsoft_agents.hosting.core.app import AgentApplication
from microsoft_agents.hosting.slack import SlackAgentExtension
from microsoft_agents.hosting.slack.api import SlackChannelData

app = AgentApplication(options)
slack = SlackAgentExtension(app)

@slack.on_message()
async def on_slack_message(context, state):
    channel_data = SlackChannelData.from_activity(context.activity)
    await slack.call(
        context,
        "chat.postMessage",
        {
            "channel": channel_data.get("event.channel"),
            "text": f"You said: {context.activity.text}",
        },
        token=channel_data.api_token,
    )

Key Classes

  • SlackAgentExtension — registers Slack-channel-scoped message/event handlers; exposes call(...) and create_stream(...).
  • SlackChannelData — typed wrapper around Bot Service's Slack channel-data payload with get(path) / try_get(path) accessors.
  • SlackApi — async HTTP client for the Slack Web API.
  • SlackStream — wraps Slack's streaming methods for incremental message updates.
  • SlackHelpers — encode/decode and conversation-id parsing utilities.

Quick Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

microsoft_agents_hosting_slack-1.1.0.dev9.tar.gz (13.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file microsoft_agents_hosting_slack-1.1.0.dev9.tar.gz.

File metadata

File hashes

Hashes for microsoft_agents_hosting_slack-1.1.0.dev9.tar.gz
Algorithm Hash digest
SHA256 a5a7c99f7deee526bd2eb315bc8ec56ba14783d3ef6effd646aa781926474173
MD5 33fe6235c7b3ae077ecbfeb54e83e82c
BLAKE2b-256 d27e98607a7295cec1da4542b26cbf2951399b7b801b3f6f666041936a56e503

See more details on using hashes here.

File details

Details for the file microsoft_agents_hosting_slack-1.1.0.dev9-py3-none-any.whl.

File metadata

File hashes

Hashes for microsoft_agents_hosting_slack-1.1.0.dev9-py3-none-any.whl
Algorithm Hash digest
SHA256 5644e0d08388b55ae101cd5f00a1026bdf7644a29c00095d12609257748e9b9b
MD5 d169c81b65d52dddff8d895f1ab931b9
BLAKE2b-256 a21b84755f2fcd541bcd123d8f7faba43b481bf72f06339e20363dc9904d84ad

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page