deep-chat-dev 9.0.105 → 9.0.107
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 +12 -0
- package/custom-elements.json +2078 -1932
- package/dist/deepChat.bundle.js +1 -1
- package/dist/deepChat.js +753 -789
- package/dist/services/openAI/openAIAssistantIO.d.ts.map +1 -1
- package/dist/services/serviceIO.d.ts.map +1 -1
- package/dist/types/openAIResult.d.ts +4 -1
- package/dist/types/openAIResult.d.ts.map +1 -1
- package/dist/types/submitButton.d.ts +1 -1
- package/dist/types/submitButton.d.ts.map +1 -1
- package/dist/types/webModel/webModel.d.ts +1 -0
- package/dist/types/webModel/webModel.d.ts.map +1 -1
- package/dist/views/chat/input/dropup/dropupMenu.d.ts +4 -0
- package/dist/views/chat/input/dropup/dropupMenu.d.ts.map +1 -1
- package/dist/views/chat/input/fileAttachments/modal/modal.d.ts +2 -0
- package/dist/views/chat/input/fileAttachments/modal/modal.d.ts.map +1 -1
- package/dist/views/chat/input/input.d.ts.map +1 -1
- package/dist/views/chat/input/validation/validationHandler.d.ts +0 -1
- package/dist/views/chat/input/validation/validationHandler.d.ts.map +1 -1
- package/dist/views/chat/messages/messages.d.ts.map +1 -1
- package/dist/webModel/webModel.d.ts.map +1 -1
- package/dist/webModel/webModelConfig.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -71,6 +71,18 @@ Please note that this approach should be used for local/prototyping/demo purpose
|
|
71
71
|
Currently supported direct API connections:
|
72
72
|
[OpenAI](https://openai.com/blog/openai-api), [HuggingFace](https://learn.microsoft.com/en-gb/azure/cognitive-services/), [Cohere](https://docs.cohere.com/docs), [Stability AI](https://stability.ai/), [Azure](https://learn.microsoft.com/en-gb/azure/cognitive-services/), [AssemblyAI](https://www.assemblyai.com/)
|
73
73
|
|
74
|
+
### :robot: Web model
|
75
|
+
|
76
|
+

|
77
|
+
|
78
|
+
No servers, no connections, host an LLM model entirely on your browser.
|
79
|
+
|
80
|
+
Simply add the [deep-chat-web-llm](https://deepchat.dev/examples/externalModules) module and define the [webModel](https://deepchat.dev/docs/webModel) property:
|
81
|
+
|
82
|
+
```
|
83
|
+
<deep-chat webModel="true" />
|
84
|
+
```
|
85
|
+
|
74
86
|
### :camera: :microphone: Camera and Microphone
|
75
87
|
|
76
88
|

|