Changelog
All notable changes (from [1.4.0] onwards) will be documented here.
Please note that this project adheres to Semantic Versioning. As carter-js is built around an API which is still in beta, breaking changes may be introduced indirectly in minor releases. Major releases will be reserved for breaking changes to the way in carter-js is used. IE. function names, parameter deprecation etc. Where a breaking change is made on the API side, carter-js will be updated to reflect this change. However, as carter-js exposes the API response to the user, it is possible that this response may change and will not be reflected in a major release if the only difference is in the response from the API.
I will continue to build carter-js with the intention of maintaining backwards compatibility, but this is not guaranteed.
[2.1] 2023-04-13 Adds support for optional speak parameter in say function
Added
Optional
speakparameter when creating a carter object. This will determine whether or not carter returns an audio URL, which is currently slowing down response timesOptional
speakparameter to all interaction functions. This allows you to override the default class speak property.openerandpersonalisecan also receive this parameter, but the audio url is not currently supported by the API for these functions, so related properties in the interaction will remain undefined.All interactions now have a
response_textproperty, which extracts the response text from the API response. This is to streamline getting your output, but also allows me to adapt carter-js to the API changes in the future. Using this property to extract your output is strongly recommended as it will always work, regardless of API changes.saynow has aresponse_audioparameter which extracts the audio URL from the API response. Seeresponse_text.openerandpersonalisealso have this property, but it will always be undefined as the API does not currently support audio for these functions. Another minor update will be released with this functionality when available. Using this property to extract your audio is strongly recommended as it will always work, regardless of API changes.
Changed
Small type changes to accommodate the above additions.
Fixed
None
Deprecated
None
[2.0.2] 2023-04-13 Fixes error when using require
[2.0.1] 2023-04-10 Removes unnecessary files from build
[2.0] 2023-04-10 Support for Carter Engine V1
Items marked as [Beta] are currently untested and may not work as expected.
Added
Vastly improved error handling. Errors are handled where appropriate and useful error messages are thrown where possible.
Logging. By providing a logging object to the
Carterconstructor, you can now log all interactions with the API. This is useful for debugging and for monitoring. Logging will be improved in future releases.Support for the new /opener endpoint with
carter.opener(playerId).Support for the new /personalise endpoint with
carter.personalise(text).Added new types for opener and personalise interactions. These are identical to the
CarterInteractiontype, but don't include forced behaviours.
Changed
[Beta] The
Carterobject now takes an extra propertyuserLoggerwhich can be used to activate debug logging. More details in the documentation.carter.sayno longer accepts aCarterPayloadOptionsobject as its second argument. Instead, it accepts a playerId string.carter-jswill still generate a uuid if this is not provided.Changed
queryproperty in carter to `textTime taken property of interactions is now calculated by
carter-jsrather than the API. This is measured from function call to just before the interaction is returned.interactions now contain an id property which is a uuid generated by
carter-js, this is used to identify interactions when logging and in the history array.Skill actions no longer accept metadata or entity parameters.
The carter.history array can now contain
CarterInteractionobjects ORCarterOpenerInteractionobjects. Personalise interactions are not included as they are not considered part of the conversation.
Deprecated
carter.downvote()has been removed. This is because the API no longer supports downvoting.carter.audioLinkhas been removed. This is because the API no longer supports audio links.
[1.6.2] 2022-12-31
Fixes
Fixes issue where skill actions which did not alter the response did not work if no value was returned.
[1.6.1] 2022-12-31
Changed
Skill actions which alter the response must now return a CarterSkillOutput object. See documentation for details.
[1.6.0] 2022-12-31
Changed
Skill actions which alter the response can now return a CarterSkillOutput object. See documentation for details.
Changed
Skill actions must now return a CarterSkillOutput object. See documentation for details.
[1.5.1] 2022-11-30
Bug fixes related to carter update 0.0.18
[1.5] 2022-11-05
Added
Skills
Skills allow a carter-js object to detect CarterAPI triggers. A carter-js skill allows you to then define an action which will take in CarterAPI's response and allow you to modify it. This action can be triggered automatically or manually and allows easy replacement of text in your CarterAPI responses.
Carter.registerSkill(name, action, options)- registers a new skill and its action with your carter objectCarter.skills- An array of skills registered with your carter object
Timing functions
You can now extract response time data from your conversation history. As well as being able to pull the response time data from an individual CarterInteraction you are now able to use:
Carter.lastResponseTime()- extracts the response time from your most recent interaction.Carter.averageResponseTime()- Calculates the average response time of interactions with your agent, can accept an optionalminutesparameter
Changed
carter.say()now returns aCarterResponseobject with an undefineddataproperty if the response from Carter is not successful - if theresponse.okproperty is not true.Following on from the above change, it might now be possible to pass an interaction to
Carter.downvote()which doesn't have any data as it was unsuccessful. Therefore,Carter.downvote()will now return false both if the request is unsuccessful and ifcarter-jsis unable to retrieve a TID from the object provided.
[1.4.1] - 2022-11-02
Fixed
Fixed spelling error in
CarterDataobject. Was "time_takem" now "time_taken"
[1.4.0] - 2022-11-02
Breaking Changes: please note there is a small breaking change in this release related to the CarterConversationEntry type. This is the object used in the Carter.history array. As I don't believe this feature is being used yet I have elected to make this a minor release. There is also a deprecation I have chosen to include in a minor release for the same reason.
Added
Carter.downvote()can now accept 3 types of argument. It will accept aCarterInteraction, aCarterConversationEntry(the object stored inCarter.historyarray), or you can simply pass it a TID.Carter.latest()is now a utility function which will return the most recent interaction. TheCarter.latestproperty has been deprecated.
Changed
Types
carter-js types have had a semantic overhaul, they now make more sense and their context is more clear. The heart of CarterAPI is in increasing our ability to interact with technology, hence carter-js has taken on more interaction-focussed semantics.
CarterJSResponse->CarterInteraction: Still contains request and response data for every message you send to Carter.CarterQueryOptions->CarterPayloadOptions: More in line with the terminology used inCarterInteractionand more intuitive.Breaking
CarterConversationEntry: This object has been reworked to be more semantically intuitive and to avoid repeating data. Previously, it contained aCarterDataobject and what used to be called theCarterJSResponseobject, now renamedCarterInteraction. These objects contain similar data, and since theCarterInteractionobject contains all the information about an object you might need, theCarterConversationEntrynow contains only the timestamp and the interaction.
CarterConversationEntry {
isoTimestamp: string
interaction: CarterInteraction
}Updated docs
Deprecated
Carter.latestattribute has been removed and replaced byCarter.latest(). (See above)
Last updated