com.clarifai.grpc.api.AiAssistParametersOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface AiAssistParametersOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.AiAssistParameters)
com.google.protobuf.MessageOrBuilder {
/**
*
* Min and max threshold values for approving annotations by default based on prediction score
*
*
* float min_threshold = 1;
* @return The minThreshold.
*/
float getMinThreshold();
/**
* float max_threshold = 2;
* @return The maxThreshold.
*/
float getMaxThreshold();
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @return A list containing the conceptRelationIds.
*/
java.util.List
getConceptRelationIdsList();
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @return The count of conceptRelationIds.
*/
int getConceptRelationIdsCount();
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param index The index of the element to return.
* @return The conceptRelationIds at the given index.
*/
java.lang.String getConceptRelationIds(int index);
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param index The index of the value to return.
* @return The bytes of the conceptRelationIds at the given index.
*/
com.google.protobuf.ByteString
getConceptRelationIdsBytes(int index);
}