Releases: skit-ai/dialogy
Releases · skit-ai/dialogy
0.7.2
0.7.1
0.7.0
0.6.4
0.6.4
- docs: Better error message for --
DucklingPlugin
comparison requires reference time to be unix timestamp. - fix:
DucklingPlugin
doesn't return duplicate entities when a list of strings is input. - add:
DucklingPlugin
produces a score that can be compared against a threshold. - fix:
DucklingPlugin
doesn't remove other entities ifdatetime_filter
is used.
0.6.3
0.6.2
0.6.1
Release 0.6.0
Updates
- feat: spacy, pattern entity parsing from list support.
- refactor: Plugin class to prevent repeated code in subclasses.
- refactor: @debug -> @dbg to prevent name collisions.
- feat: support for building from local git templates optionally,
--vcs
takes"TAG"
or"HEAD"
. if the user provides--vcs
as
"TAG"
, thendialogy
takes the template's latest released tag commit. if the user provides--vcs
as"HEAD"
, thendialogy
takes the template's present git branch's recent commit. - update: [BREAKING]
DucklingPlugin
expects the locale from the access method as well.
0.5.5
Notes:
- feat:
dialogy create <project-name>
, we can drop the template name! - deprecate: DucklingParser set for deprecation.
- add: DucklingPlugin. [https://github.com//pull/28]
- add: DucklingPlugin supports association of custom entities with dimensions. [https://github.com/Vernacular-ai/dialogy/commit/8d7fbc47f08da9384add9d850aeadbb08b3de0d9]
- refactor: DucklingParser had methods that parsed and restructured json to be compatible with a certain class structure. This made it hard to execute
BaseEntity.from_dict(duckling_json)
.
These methods are now part of the individualEntity
class. [https://github.com//pull/28]