Skip to content

Releases: reinfer/cli

v0.12.3

28 Feb 12:05
f3627cb
Compare
Choose a tag to compare

Added

  • re create quota to set a quota in a tenant

v0.12.2

21 Feb 13:53
1ebc746
Compare
Choose a tag to compare

v0.12.2

  • Rename "triggers" to "streams" following the rename in the API
  • Removed semantic url joins to support deployments within a subdirectory
  • Added functionality to use moon forms both in LabelDefs and in AnnotatedCommentss

Added

  • re get comments will now return auto-thresholds for predicted labels if provided with a --model-version parameter
  • re update users for bulk user permission updates
  • Option to send welcome email on create user

v0.12.1

10 Nov 17:13
231a239
Compare
Choose a tag to compare

Added

  • re update source can now update the source's transform tag
  • re get source and re get sources will show bucket name if exists.
  • re get comments can now download predictions within a given timerange

v0.12.0

06 Jul 13:25
d12278d
Compare
Choose a tag to compare

Added

  • Display project ids when listing projects
  • Add support for getting or deleting a single user
  • Upgrade all dependencies to their latest released version
  • Enable retry logic for uploading annotations

v0.11.0

07 Mar 18:01
62cb3e5
Compare
Choose a tag to compare

Breaking

  • Renames organisation -> project throughout, including in the CLI command line arguments for consistency with the new API
  • re create dataset will default to sentiment disabled if --has-sentiment is not provided.
  • Changed --source-type parameter to --kind.

Added

  • re create trigger-exception to tag a comment exception within a trigger.

Bug Fixes

  • Fix serialization of sources after api change of internal parameter _kind.

v0.10.2

09 Dec 15:39
7002bbb
Compare
Choose a tag to compare

v0.10.2

Bug Fixes

  • Fixes serialization issue where statistics expected usize not f64

v0.10.1

02 Dec 17:00
78a3d79
Compare
Choose a tag to compare

v0.10.1

Added

  • Add an optional --source-type parameter to create source. Only for internal use.

v0.10.0

23 Nov 10:24
a679a15
Compare
Choose a tag to compare

v0.10.0

Added

  • New re create annotations command for uploading annotations (labels and
    entities) to existing comments in a dataset, without having to use re create comments.
    This avoids potentially - and unknowingly - modifying the underlying comments in the source.
  • Add support to --force delete projects with existing resources.
  • Print comment uid when a comment upload fails due to bad annotations.

Bug Fixes

  • Failure when uploading comments with thread properties

v0.9.0

13 Oct 11:41
c0da378
Compare
Choose a tag to compare

v.0.9.0

Breaking

  • Added support for new labellings api. Old jsonl files can still be uploaded with re but newly downloaded jsonl files will be in the new format.

Added

  • Deserialize thread properties when downloading comments for a dataset (the -d dataset option for re get comments). This limitation exists as only the /labellings API route returns thread properties.
  • Added re config get-token [context] which dumps the auth token for the current or a different, given context.
  • Added CRUD commands for projects.
  • Added option for --label-groups in re create dataset.

v0.8.0

23 Jul 15:21
38c1e65
Compare
Choose a tag to compare

v0.8.0

Breaking

  • All API resources with floats now use ordered_float::NotNan
  • A new top level flag -o/--output has been added. This replaces all previous -o/--output flags in the re get * subcommands.
  • The EntityDefs wrapper has been removed in favour of Vec<EntityDef>. This impacts the NewDataset and Dataset structs
  • EntityDef has added fields to accurately reflect the api return type
  • Added metadata field to the Label struct

Changed

  • More public types implement Serialize, Eq and Hash for downstream use.

Added

  • get comment: get a single comment by source and id
  • Created or updated resources will be returned via stdout. The format of the output can be changed with the global -o/--output flag.
    • This excludes creation of the comments and emails resources.
  • Added entity_defs and label_defs to the reinfer_api::Dataset struct, and create dataset command
  • Added LabelDef, NewLabelDef, NewEntity and associated structs