OpenAI-J/api/src/main/java/openai/search/SearchResult.java

28 lines
537 B
Java
Raw Normal View History

2020-10-04 18:25:40 -05:00
package openai.search;
import lombok.Data;
/**
* A search result for a single document.
*
* https://beta.openai.com/docs/api-reference/search
*/
2020-10-04 18:25:40 -05:00
@Data
public class SearchResult {
/**
* The position of this document in the request list
*/
2020-10-04 18:25:40 -05:00
Integer document;
/**
* The type of object returned, should be "search_result"
*/
2020-10-04 18:25:40 -05:00
String object;
/**
* A number measuring the document's correlation with the query.
* A higher score means a stronger relationship.
*/
2020-10-04 18:25:40 -05:00
Double score;
}