Microsoft Teams Bot Typing Status does not Display In the Teams

Dhruv Goel 0 Reputation points
2025-12-12T08:58:19.2466667+00:00

Microsoft Teams Bot Typing Status does not Display In the Teams.I am using copilot studio

Microsoft Teams | Development
Microsoft Teams | Development
Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Q&A Assist
    2025-12-12T08:58:29.39+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    If the typing status of your Microsoft Teams bot is not displaying, there are a few considerations to keep in mind:

    1. Typing Activity Implementation: Ensure that you are correctly sending the typing activity from your bot. The typing activity should be sent with a type value of typing. Here is an example of how to implement this in your bot:
         // Send a typing indicator to the user upon receiving a message
         app.on('message', async ({ send }) => {
           await send({ type: 'typing' });
         });
      
    2. Display Duration: Typing indicators are intended to persist within UIs for three seconds. Make sure that your bot is sending the typing activity within this timeframe to ensure it is displayed correctly.
    3. Frequency of Sending: According to the guidelines, senders should not send typing activities more frequently than once every three seconds. If your bot is sending typing indicators too frequently, it may not display them properly.
    4. Client Support: Ensure that the Teams client you are using supports displaying typing indicators. Some client configurations or versions may have limitations.

    If you have checked all the above and the issue persists, consider reviewing your bot's configuration in the Copilot Studio or reaching out for support for further investigation.

    0 comments No comments

  2. Kudos-Ng 10,550 Reputation points Microsoft External Staff Moderator
    2025-12-12T10:22:11.8133333+00:00

    Hi Dhruv Goel,

    Thank you for posting your question in the Microsoft Q&A forum. 

    Based on your description, it seems the bot where you have added a typing activity is responding correctly, but the typing indicator is not functioning as expected.

    After researching this, I found two possible scenarios and corresponding information:

    Scenario 1: Typing indicator does not display at all

    As far as I know, this issue can occur if the “Animation Effects” feature in Windows is deactivated. To address this, please check and enable this setting by navigating to: Settings > Accessibility > Visual Effects > Animation effects

    Scenario 2: Typing indicator displays briefly (2–3 seconds) and then disappears

    Based on my findings, this is the default behavior in Microsoft Teams. Currently, there is no configuration option to keep the typing indicator visible for a longer duration during long-running responses.

    However, a commonly shared workaround is to send typing events periodically (every 4–5 seconds) to simulate that the bot is still active. This helps prevent users from assuming the bot has stopped responding.

    I hope this information is helpful. If you have any further questions or need additional assistance, please feel free to share.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.