interface ApiCommentsGetParams {
    authorUserId?: null | string;
    limit?: null | number;
    objectId?: null | string;
    objectType?: null | string;
    page?: null | number;
}

Properties

authorUserId?: null | string

Filter comments by author user id.

limit?: null | number

Limit of items per page. If you encounter api issues due to too large page sizes, try to reduce the limit

objectId?: null | string

Filter comments by object id. If objectType is not provided, an error will be thrown.

objectType?: null | string

Filter comments by object type (trace, observation, session, prompt).

page?: null | number

Page number, starts at 1.