index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/Message.java | package art.starrynift.messages;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
import java.util.Map;
/**
* Represents a Message within a thread.
* <p>
* https://platform.op... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/MessageContent.java | package art.starrynift.messages;
import com.fasterxml.jackson.annotation.JsonProperty;
import art.starrynift.messages.content.ImageFile;
import art.starrynift.messages.content.Text;
import lombok.Data;
/**
* Represents the content of a message
* <p>
* https://platform.openai.com/docs/api-reference/messages/objec... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/MessageFile.java | package art.starrynift.messages;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* A list of files attached to a Message
* <p>
* https://platform.openai.com/docs/api-reference/messages/file-object
*/
@NoArgsConstructo... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/MessageRequest.java | package art.starrynift.messages;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import java.util.List;
import java.util.Map;
/**
* Creates a Message
* <p>
* https://platform.openai.com/docs/api-reference/messages/createMessage
*/
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Data
publi... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/ModifyMessageRequest.java | package art.starrynift.messages;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Map;
/**
* Modifies a Message
* <p>
* https://platform.openai.com/docs/api-reference/messages/modifyMessage
*/
@Builder
@NoArgsConstructor
@AllArgsConstr... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/content/Annotation.java | package art.starrynift.messages.content;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* An annotation for a text Message
* <p>
* https://platform.openai.com/docs/api-reference/messages/object
*/
@Data
@NoArgsConstr... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/content/FileCitation.java | package art.starrynift.messages.content;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* A citation within the message that points to a specific quote from a specific File associated with the
* assistant or the messag... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/content/FilePath.java | package art.starrynift.messages.content;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* A URL for the file that's generated when the assistant used the code_interpreter tool to generate a file.
* <p>
* https://platf... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/content/ImageFile.java | package art.starrynift.messages.content;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* References an image File int eh content of a message.
* <p>
* /https://platform.openai.com/docs/api-reference/messages/object
... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/messages/content/Text.java | package art.starrynift.messages.content;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
/**
* The text content that is part of a message
* <p>
* https://platform.openai.com/docs/api-reference/messages/object
*/
@Data
@NoArgsConstructor
@AllArgsConstr... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/model/Model.java | package art.starrynift.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.util.List;
/**
* GPT model details
*
* https://beta.openai.com/docs/api-reference/models
*/
@Data
public class Model {
/**
* An identifier for this model, used to specify the model when ma... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/model/Permission.java | package art.starrynift.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* Model permissions
* I couldn't find documentation for the specific permissions, and I've elected to leave them undocumented rather than
* write something incorrect.
*
* https://beta.openai.com/docs/api-r... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/moderation/Moderation.java | package art.starrynift.moderation;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* An object containing the moderation data for a single input string
*
* https://beta.openai.com/docs/api-reference/moderations/create
*/
@Data
public class Moderation {
/**
* Set to true if t... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/moderation/ModerationCategories.java | package art.starrynift.moderation;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.util.List;
/**
* An object containing the flags for each moderation category
*
* https://beta.openai.com/docs/api-reference/moderations/create
*/
@Data
public class ModerationCategories {
... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/moderation/ModerationCategoryScores.java | package art.starrynift.moderation;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* An object containing the scores for each moderation category
*
* https://beta.openai.com/docs/api-reference/moderations/create
*/
@Data
public class ModerationCategoryScores {
public double hate... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/moderation/ModerationRequest.java | package art.starrynift.moderation;
import lombok.*;
/**
* A request for OpenAi to detect if text violates OpenAi's content policy.
*
* https://beta.openai.com/docs/api-reference/moderations/create
*/
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Data
public class ModerationRequest {
/**
* The input t... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/moderation/ModerationResult.java | package art.starrynift.moderation;
import lombok.Data;
import java.util.List;
/**
* An object containing a response from the moderation api
*
* https://beta.openai.com/docs/api-reference/moderations/create
*/
@Data
public class ModerationResult {
/**
* A unique id assigned to this moderation.
*/
... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/CreateThreadAndRunRequest.java | package art.starrynift.runs;
import java.util.List;
import java.util.Map;
import javax.tools.Tool;
import com.fasterxml.jackson.annotation.JsonProperty;
import art.starrynift.threads.ThreadRequest;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/MessageCreation.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MessageCreation {
@JsonProperty("message_id")
... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/RequiredAction.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class RequiredAction {
private String type;
@JsonP... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/Run.java | package art.starrynift.runs;
import java.util.List;
import java.util.Map;
import javax.tools.Tool;
import com.fasterxml.jackson.annotation.JsonProperty;
import art.starrynift.common.LastError;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Build... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/RunCreateRequest.java | package art.starrynift.runs;
import java.util.List;
import java.util.Map;
import javax.tools.Tool;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Data
public class RunCreateRequest {
String assistantI... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/RunImage.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class RunImage {
@JsonProperty("file_id")
private Strin... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/RunStep.java | package art.starrynift.runs;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
import art.starrynift.common.LastError;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Data
public ... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/StepDetails.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class StepDetails {
private St... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/SubmitToolOutputRequestItem.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SubmitToolOutputRequestItem {
@JsonProperty("tool_cal... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/SubmitToolOutputs.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SubmitToolOutputs {
@Json... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/SubmitToolOutputsRequest.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SubmitToolOutputsRequest {
... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/ToolCall.java | package art.starrynift.runs;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Map;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ToolCall {
private String i... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/ToolCallCodeInterpreter.java | package art.starrynift.runs;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ToolCallCodeInterpreter {
private String input;
private List<ToolCallC... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/ToolCallCodeInterpreterOutput.java | package art.starrynift.runs;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ToolCallCodeInterpreterOutput {
private String type;
private String logs;
private RunI... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/runs/ToolCallFunction.java | package art.starrynift.runs;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ToolCallFunction {
private String name;
private String arguments;
private String outp... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/AuthenticationInterceptor.java | package art.starrynift.service;
import okhttp3.Interceptor;
import okhttp3.Request;
import okhttp3.Response;
import java.io.IOException;
import java.util.Objects;
/**
* OkHttp Interceptor that adds an authorization token header
*/
public class AuthenticationInterceptor implements Interceptor {
private final S... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ChatCompletionRequestMixIn.java | package art.starrynift.service;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import art.starrynift.completion.chat.ChatCompletionRequest;
public abstract class ChatCompletionRequestMixIn {
@JsonSerialize(using = ChatCompletionR... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ChatCompletionRequestSerializerAndDeserializer.java | package art.starrynift.service;
import java.io.IOException;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonSer... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ChatFunctionCallArgumentsSerializerAndDeserializer.java | package art.starrynift.service;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.node.JsonNodeT... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ChatFunctionCallMixIn.java | package art.starrynift.service;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public abstract class ChatFunctionCallMixIn {
@JsonSerialize(using = ChatFunctionCallArgumentsSerialize... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ChatFunctionMixIn.java | package art.starrynift.service;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public abstract class ChatFunctionMixIn {
@JsonSerialize(using = ChatFunctionParametersSerializer.class)
abstract Class<?> getParametersClass();
}
|
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ChatFunctionParametersSerializer.java | package art.starrynift.service;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.kjetland.jackso... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ChatMessageAccumulator.java | package art.starrynift.service;
import art.starrynift.completion.chat.ChatFunctionCall;
import art.starrynift.completion.chat.ChatMessage;
/**
* Class that accumulates chat messages and provides utility methods for
* handling message chunks and function calls within a chat stream. This
* class is immutable.
*
*/... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/DeepseekService.java | package art.starrynift.service;
import art.starrynift.*;
import art.starrynift.assistants.*;
import art.starrynift.audio.*;
import art.starrynift.billing.BillingUsage;
import art.starrynift.billing.Subscription;
import art.starrynift.client.DeepseekApi;
import art.starrynift.client.OpenAiApi;
import art.starrynift.com... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/FunctionExecutor.java | package art.starrynift.service;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
i... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/OpenAiService.java | package art.starrynift.service;
import java.io.IOException;
import java.time.Duration;
import java.time.LocalDate;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit;
import javax.validation... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/ResponseBodyCallback.java | package art.starrynift.service;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import com.fasterxml.jackson.databind.ObjectMapper;
import art.starrynift.OpenAiError;
import art.starrynift.OpenAiHttpExc... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/SSE.java | package art.starrynift.service;
/**
* Simple Server Sent Event representation
*/
public class SSE {
private static final String DONE_DATA = "[DONE]";
private final String data;
public SSE(String data){
this.data = data;
}
public String getData(){
return this.data;
}
... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/service/SSEFormatException.java | package art.starrynift.service;
/**
* Exception indicating a SSE format error
*/
public class SSEFormatException extends Throwable{
public SSEFormatException(String msg){
super(msg);
}
} |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/threads/Thread.java | package art.starrynift.threads;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Map;
/**
* Represents a Thread with an assistant
* <p>
* https://platform.openai.com/docs/api-reference/threads/object
*/
@... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/threads/ThreadRequest.java | package art.starrynift.threads;
import java.util.List;
import java.util.Map;
import art.starrynift.messages.MessageRequest;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Creates a thread
* <p>
* https://platform.openai.com/docs/api-reference/th... |
0 | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift | java-sources/ai/starrynift/aisdk/starry-ai-sdk/1.0.3/art/starrynift/utils/TikTokensUtil.java | package art.starrynift.utils;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import com.knuddels.jtokkit.Encodings;
import com.knuddels.jtokkit.api.Encoding;
import com.knuddels.jtokkit.api.EncodingRegistry;
import com.knuddels.jtokkit.api.... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ApiVersions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ClientDnsLookup.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ClientRequest.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ClientResponse.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ClientUtils.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ClusterConnectionStates.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/CommonClientConfigs.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ConnectionState.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/DefaultHostResolver.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/FetchSessionHandler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/GroupRebalanceConfig.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/HostResolver.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/InFlightRequests.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/KafkaClient.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/ManualMetadataUpdater.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/Metadata.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/MetadataCache.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/MetadataUpdater.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/NetworkClient.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/NetworkClientUtils.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/NodeApiVersions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/RequestCompletionHandler.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/StaleMetadataException.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AbortTransactionOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AbortTransactionResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AbortTransactionSpec.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AbstractOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/Admin.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AdminClient.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AdminClientConfig.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterClientQuotasOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterClientQuotasResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterConfigOp.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterConfigsOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterConfigsResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterConsumerGroupOffsetsOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterConsumerGroupOffsetsResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterPartitionReassignmentsOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterPartitionReassignmentsResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterReplicaLogDirsOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterReplicaLogDirsResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterUserScramCredentialsOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/AlterUserScramCredentialsResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/Config.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/ConfigEntry.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/ConsumerGroupDescription.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/ConsumerGroupListing.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/CreateAclsOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/CreateAclsResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/CreateDelegationTokenOptions.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
0 | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients | java-sources/ai/superstream/kafka-clients/3.5.118/org/apache/kafka/clients/admin/CreateDelegationTokenResult.java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may n... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.