Skip to content

Releases: deftio/quikchat

v1.1.12

24 Jan 12:23
Compare
Choose a tag to compare

Added
quikchat.tempMessageGenerator() -- allows creation of temporary message so that one can write a placeholder content (with timer update) but then blow it away with .messageReplaceContent( ....) such as when waiting for an LLM to respond

Also add
.messageGetContentDOMElement(index) : returns the actual DOM element of the content area of the given message.

v1.1.11

24 Jan 01:02
Compare
Choose a tag to compare

Updated behavior of Enter / Shift Enter to match other common chats like mistral or open ai (enter is submit, shift-enter is CR).
Behavior can be updated on intialization of the control.

Updated right side bubble text justification.

v1.1.10 - minor clean up

19 Nov 23:58
Compare
Choose a tag to compare

Remove spurious console.log in add message with advanced CSS handling

v1.1.9

29 Oct 22:24
Compare
Choose a tag to compare

Updates default scroll behavior to scroll to bottom on messageAddNew(). This can be overridden by setting scrollIntoView false.

Adds better CSS support for when text is multiline and is on the right side or center position of the chat area.

v1.1.8

20 Oct 06:42
Compare
Choose a tag to compare

Updated scroll behavior, added messageScrollToBottom() fn

v1.1.7

26 Aug 08:18
Compare
Choose a tag to compare

Added history full save / restore demo with timestamp support.

v1.1.6 show/hide input on construction + updated coverage

25 Aug 21:31
Compare
Choose a tag to compare

Update constructor so one can force input area to be hidden on first instantiation
updated test coverage to 87%

1.1.5: Added backend examples for FastAPI and NodeJS

25 Aug 08:55
Compare
Choose a tag to compare

This release adds working sample projects for nodejs (using express) and python (using FastAPI).
Both examples show how to create streaming and completions based backend requests. This includes pulling LLM data from the LLM server through the backend web app and to the front end web wite.

v1.1.3

06 Aug 21:56
Compare
Choose a tag to compare
  • (done 1.1.3) minified css (/dist/quikchat.min.css)
  • (done 1.1.3) moved all border-radius to themes
  • (done 1.1.3) updated docs / index.html
  • (done 1.1.3) updated readme generator from npx to /node-modules (still using docbat)
  • (done 1.1.3) add ci via github actions

Full Changelog: v1.1.2...v1.1.3

V1.1.2

31 Jul 01:36
Compare
Choose a tag to compare

Updated docs and examples
Changed call back structure
Improved focus handling in streaming chat token applications