Releases: reinfer/cli
Releases · reinfer/cli
v0.12.3
Added
re create quota
to set a quota in a tenant
v0.12.2
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
LabelDef
s and inAnnotatedComments
s
Added
re get comments
will now return auto-thresholds for predicted labels if provided with a--model-version
parameterre update users
for bulk user permission updates- Option to send welcome email on create user
v0.12.1
Added
re update source
can now update the source's transform tagre get source
andre get sources
will show bucket name if exists.re get comments
can now download predictions within a given timerange
v0.12.0
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
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
v0.10.2
Bug Fixes
- Fixes serialization issue where statistics expected
usize
notf64
v0.10.1
v0.10.0
v0.10.0
Added
- New
re create annotations
command for uploading annotations (labels and
entities) to existing comments in a dataset, without having to usere 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
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 forre 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
inre create dataset
.
v0.8.0
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 there get *
subcommands. - The
EntityDefs
wrapper has been removed in favour ofVec<EntityDef>
. This impacts theNewDataset
andDataset
structs EntityDef
has added fields to accurately reflect the api return type- Added
metadata
field to theLabel
struct
Changed
- More public types implement
Serialize
,Eq
andHash
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
andemails
resources.
- This excludes creation of the
- Added
entity_defs
andlabel_defs
to thereinfer_api::Dataset
struct, andcreate dataset
command - Added
LabelDef
,NewLabelDef
,NewEntity
and associated structs