Custom Engine Agents in Microsoft 365 Copilot

Agents in BizChat has been available for some time already, but now there is an upcoming update to Agents. The introduction of “ custom engine agents ” in Microsoft 365 Copilot! These specialized agents can be built on any large language model (LLM), toolchain, or orchestration tool, tailored specifically for your domain or tenant workflows. Initially supported in Microsoft Teams, this feature will soon be available in Microsoft 365 Copilot Business Chat ( BizChat ).   The introduction of Custom engine agents enables your organization to create customized experiences using your own AI systems and orchestrators. You can design unique prompts, connect to any LLM, and integrate these custom agents with Microsoft 365 Copilot. After the rollout, users will be able to access these agents, provided they are enabled and deployed in the Microsoft 365 admin center under the Copilot tab.   You can read more about the feature on this page . Eligible users can create agents using Micros...

Live Caption (English) Coming to Teams soon

**Updated with proper commands"
Microsoft is releasing a new feature in Teams called "Live captioning". This enables the end-user to turn on speech to text for their meetings. The message was recently distributed in the O365 Admin portal and is mentioned as roadmap feature 52817,

If you are a user, you need to know this isn't automatically turned on, but yout have to select it from the "call bar".

If you are an admin, you might want to know you can control this feature on a global or per policy basis by the guidelines in the following article at docs.

Through powershell, you can do the following (Teams meetings policies are managed with the SkypeOnlinePowershellModule):
- If you want to disable the option of live captions for Teams meeting attendees, run this command in PowerShell:
Set-CsTeamsMeetingPolicy -Identity "global" -LiveCaptionsEnabledType "Disabled"
- If you want to re-enable the option of live captions for Teams meeting attendees, run this command in PowerShell:
Set-CsTeamsMeetingPolicy -Identity "global" -LiveCaptionsEnabledType "EnabledUserOverride"
- Where PolicyName is any custom policy you may have created. Global would refer to tenant-wide global policy.