We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Cognitive Services SDK 1.10.0 with Web Chat NPM, we are seeing:
master of now.
master
When pairing Cognitive Services SDK 1.10.0 with Direct Line Speech SDK, it failed on this line:
class ConversationImpl extends Conversation { ... }
The problem is Conversation is undefined, causing an error "super expression must either be null or a function".
Conversation
undefined
Translate to human:
const Conversation = undefined; // or 123, 'abc', true, {}, [] class ConversationImpl extends Conversation { ... }
Seems related to microsoft/cognitive-services-speech-sdk-js#155.
npm install botframework-directlinespeech
node_modules/microsoft-cognitiveservices-speech-sdk
1.9.1
Direct Line Speech SDK should work with npm install. Instead, it bring down 1.10.0 which is not compatible with Direct Line Speech SDK.
npm install
1.10.0
[Bug]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Screenshot
When using Cognitive Services SDK 1.10.0 with Web Chat NPM, we are seeing:
Version
master
of now.Describe the bug
When pairing Cognitive Services SDK 1.10.0 with Direct Line Speech SDK, it failed on this line:
The problem is
Conversation
isundefined
, causing an error "super expression must either be null or a function".Translate to human:
Seems related to microsoft/cognitive-services-speech-sdk-js#155.
Steps to reproduce
npm install botframework-directlinespeech
on a NPM projectnode_modules/microsoft-cognitiveservices-speech-sdk
to be1.9.1
Expected behavior
Direct Line Speech SDK should work with
npm install
. Instead, it bring down1.10.0
which is not compatible with Direct Line Speech SDK.Additional context
[Bug]
The text was updated successfully, but these errors were encountered: