deep-chat-dev 1.1.37 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/custom-elements.json +2027 -2332
- package/dist/deepChat.bundle.js +1 -1
- package/dist/deepChat.d.ts +3 -2
- package/dist/deepChat.d.ts.map +1 -1
- package/dist/deepChat.js +9561 -5913
- package/dist/services/assemblyAI/assemblyAIAudioIO.d.ts +1 -2
- package/dist/services/assemblyAI/assemblyAIAudioIO.d.ts.map +1 -1
- package/dist/services/azure/azureSpeechToTextIO.d.ts +1 -2
- package/dist/services/azure/azureSpeechToTextIO.d.ts.map +1 -1
- package/dist/services/azure/azureSummarizationIO.d.ts +2 -3
- package/dist/services/azure/azureSummarizationIO.d.ts.map +1 -1
- package/dist/services/azure/azureTextToSpeechIO.d.ts +1 -2
- package/dist/services/azure/azureTextToSpeechIO.d.ts.map +1 -1
- package/dist/services/azure/azureTranslationIO.d.ts +1 -2
- package/dist/services/azure/azureTranslationIO.d.ts.map +1 -1
- package/dist/services/cohere/cohereChatIO.d.ts +1 -2
- package/dist/services/cohere/cohereChatIO.d.ts.map +1 -1
- package/dist/services/cohere/cohereSummarizationIO.d.ts +1 -2
- package/dist/services/cohere/cohereSummarizationIO.d.ts.map +1 -1
- package/dist/services/cohere/cohereTextGenerationIO.d.ts +1 -2
- package/dist/services/cohere/cohereTextGenerationIO.d.ts.map +1 -1
- package/dist/services/huggingFace/huggingFaceAudioClassificationIO.d.ts.map +1 -1
- package/dist/services/huggingFace/huggingFaceFileIO.d.ts +2 -2
- package/dist/services/huggingFace/huggingFaceFileIO.d.ts.map +1 -1
- package/dist/services/huggingFace/huggingFaceIO.d.ts +2 -2
- package/dist/services/huggingFace/huggingFaceIO.d.ts.map +1 -1
- package/dist/services/openAI/openAIAudioIO.d.ts +1 -2
- package/dist/services/openAI/openAIAudioIO.d.ts.map +1 -1
- package/dist/services/openAI/openAIChatIO.d.ts +1 -2
- package/dist/services/openAI/openAIChatIO.d.ts.map +1 -1
- package/dist/services/openAI/openAICompletionsIO.d.ts +1 -2
- package/dist/services/openAI/openAICompletionsIO.d.ts.map +1 -1
- package/dist/services/openAI/openAIImagesIO.d.ts +1 -2
- package/dist/services/openAI/openAIImagesIO.d.ts.map +1 -1
- package/dist/services/serviceIO.d.ts +4 -1
- package/dist/services/serviceIO.d.ts.map +1 -1
- package/dist/services/stabilityAI/stabilityAIImageToImageIO.d.ts +1 -2
- package/dist/services/stabilityAI/stabilityAIImageToImageIO.d.ts.map +1 -1
- package/dist/services/stabilityAI/stabilityAIImageToImageMaskingIO.d.ts +1 -2
- package/dist/services/stabilityAI/stabilityAIImageToImageMaskingIO.d.ts.map +1 -1
- package/dist/services/stabilityAI/stabilityAIImageToImageUpscaleIO.d.ts +1 -2
- package/dist/services/stabilityAI/stabilityAIImageToImageUpscaleIO.d.ts.map +1 -1
- package/dist/services/stabilityAI/stabilityAITextToImageIO.d.ts +1 -2
- package/dist/services/stabilityAI/stabilityAITextToImageIO.d.ts.map +1 -1
- package/dist/services/utils/baseServiceIO.d.ts +5 -4
- package/dist/services/utils/baseServiceIO.d.ts.map +1 -1
- package/dist/services/utils/directServiceIO.d.ts.map +1 -1
- package/dist/types/demo.d.ts +4 -1
- package/dist/types/demo.d.ts.map +1 -1
- package/dist/types/interceptors.d.ts +6 -2
- package/dist/types/interceptors.d.ts.map +1 -1
- package/dist/types/request.d.ts +2 -0
- package/dist/types/request.d.ts.map +1 -1
- package/dist/types/stream.d.ts +4 -0
- package/dist/types/stream.d.ts.map +1 -0
- package/dist/types/textInput.d.ts +1 -0
- package/dist/types/textInput.d.ts.map +1 -1
- package/dist/utils/HTTP/HTTPRequest.d.ts +4 -7
- package/dist/utils/HTTP/HTTPRequest.d.ts.map +1 -1
- package/dist/utils/HTTP/customRequest.d.ts +9 -0
- package/dist/utils/HTTP/customRequest.d.ts.map +1 -0
- package/dist/utils/HTTP/requestUtils.d.ts +10 -2
- package/dist/utils/HTTP/requestUtils.d.ts.map +1 -1
- package/dist/utils/HTTP/stream.d.ts +10 -0
- package/dist/utils/HTTP/stream.d.ts.map +1 -0
- package/dist/utils/HTTP/websocket.d.ts +1 -3
- package/dist/utils/HTTP/websocket.d.ts.map +1 -1
- package/dist/utils/demo/demo.d.ts +4 -2
- package/dist/utils/demo/demo.d.ts.map +1 -1
- package/dist/utils/errorMessages/errorMessages.d.ts +4 -0
- package/dist/utils/errorMessages/errorMessages.d.ts.map +1 -1
- package/dist/views/chat/input/buttons/submit/submitButton.d.ts +1 -0
- package/dist/views/chat/input/buttons/submit/submitButton.d.ts.map +1 -1
- package/dist/views/chat/input/textInput/textInput.d.ts +2 -0
- package/dist/views/chat/input/textInput/textInput.d.ts.map +1 -1
- package/dist/views/chat/messages/messages.d.ts +2 -0
- package/dist/views/chat/messages/messages.d.ts.map +1 -1
- package/package.json +12 -5
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.