deep-chat-dev 9.0.260 → 9.0.262
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 +3 -1
- package/custom-elements.json +15070 -14960
- package/dist/deepChat.bundle.js +1 -1
- package/dist/deepChat.js +1906 -1843
- package/dist/services/huggingFace/huggingFaceQuestionAnswerIO.d.ts +1 -1
- package/dist/services/huggingFace/huggingFaceQuestionAnswerIO.d.ts.map +1 -1
- package/dist/services/openAI/assistant/openAIAssistantIOI.d.ts +7 -7
- package/dist/services/openAI/assistant/openAIAssistantIOI.d.ts.map +1 -1
- package/dist/services/openAI/realtime/openAIRealtimeIO.d.ts.map +1 -1
- package/dist/services/utils/directServiceIO.d.ts +2 -2
- package/dist/services/utils/directServiceIO.d.ts.map +1 -1
- package/dist/types/focusMode.d.ts +1 -1
- package/dist/types/focusMode.d.ts.map +1 -1
- package/dist/views/chat/input/buttons/custom/customButton.d.ts +4 -3
- package/dist/views/chat/input/buttons/custom/customButton.d.ts.map +1 -1
- package/dist/views/chat/input/buttons/microphone/speechToText/silenceSubmit.d.ts +2 -2
- package/dist/views/chat/input/buttons/microphone/speechToText/silenceSubmit.d.ts.map +1 -1
- package/dist/views/chat/input/fileAttachments/fileAttachmentTypes/fileAttachmentsType.d.ts +4 -1
- package/dist/views/chat/input/fileAttachments/fileAttachmentTypes/fileAttachmentsType.d.ts.map +1 -1
- package/dist/views/chat/input/fileAttachments/fileAttachments.d.ts +8 -2
- package/dist/views/chat/input/fileAttachments/fileAttachments.d.ts.map +1 -1
- package/dist/views/chat/input/textInput/focusUtils.d.ts.map +1 -1
- package/dist/views/chat/messages/messages.d.ts +3 -1
- package/dist/views/chat/messages/messages.d.ts.map +1 -1
- package/dist/views/chat/messages/messagesBase.d.ts.map +1 -1
- package/dist/views/chat/messages/stream/messageStream.d.ts.map +1 -1
- package/dist/views/chat/messages/utils/messageUtils.d.ts +2 -0
- package/dist/views/chat/messages/utils/messageUtils.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|

|
4
4
|
|
5
|
-
<b>Deep Chat</b> is a fully customizable AI chat component that can be injected into your website with
|
5
|
+
<b>Deep Chat</b> is a fully customizable AI chat component that can be injected into your website with just _one line of code_. Whether you want to create a chatbot that leverages popular APIs such as ChatGPT or connect to your own custom service, this component can do it all! Explore [deepchat.dev](https://deepchat.dev/) to view all of the available features, how to use them, examples and more!
|
6
6
|
|
7
7
|
### :rocket: Main Features
|
8
8
|
|
@@ -17,8 +17,10 @@
|
|
17
17
|
- Support for MarkDown and custom elements to help structure text and render code
|
18
18
|
- Introduction panel and dynamic modals to help describe functionality for your users
|
19
19
|
- Connect to popular AI APIs such as OpenAI, HuggingFace, Cohere directly from the browser
|
20
|
+
- Communicate with Speech to Speech models
|
20
21
|
- Support for all major ui frameworks/libraries
|
21
22
|
- Host a model on the browser
|
23
|
+
- Focus mode to display only the latest messages
|
22
24
|
- Everything is customizable!
|
23
25
|
|
24
26
|
### :computer: Getting started
|