diff --git a/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.spec.ts b/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.spec.ts index 5c648a13b..e48a28168 100644 --- a/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.spec.ts +++ b/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.spec.ts @@ -4,7 +4,7 @@ import { PasswordServiceClientCredentialFactory } from 'botframework-connector'; import packageInfo from '../package.json'; import { TeamsBotFrameworkAuthentication } from './TeamsBotFrameworkAuthentication'; -const USER_AGENT = `${packageInfo.name}/${packageInfo.version}`; +const USER_AGENT = `teamsai-js/${packageInfo.version}`; describe('TeamsBotFrameworkAuthentication', () => { const auth = new TeamsBotFrameworkAuthentication({ diff --git a/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.ts b/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.ts index d65869cde..878c1c019 100644 --- a/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.ts +++ b/js/packages/teams-ai/src/TeamsBotFrameworkAuthentication.ts @@ -20,7 +20,7 @@ import { ParameterizedBotFrameworkAuthentication } from 'botframework-connector/ import packageInfo from '../package.json'; -const USER_AGENT = `${packageInfo.name}/${packageInfo.version}`; +const USER_AGENT = `teamsai-js/${packageInfo.version}`; const DEFAULTS = { authentication: { validateAuthority: true,