com.github.tjake.jlama.net.CombineRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlama-net Show documentation
Show all versions of jlama-net Show documentation
Jlama: A modern LLM inference engine for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: JlamaService.proto
package com.github.tjake.jlama.net;
public interface CombineRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:com.github.tjake.jlama.net.CombineRequest)
com.google.protobuf.MessageOrBuilder {
/**
* bytes workerid = 1;
* @return The workerid.
*/
com.google.protobuf.ByteString getWorkerid();
/**
* bytes uuid = 2;
* @return The uuid.
*/
com.google.protobuf.ByteString getUuid();
/**
* int32 layer = 3;
* @return The layer.
*/
int getLayer();
/**
* repeated bytes tensor = 4;
* @return A list containing the tensor.
*/
java.util.List getTensorList();
/**
* repeated bytes tensor = 4;
* @return The count of tensor.
*/
int getTensorCount();
/**
* repeated bytes tensor = 4;
* @param index The index of the element to return.
* @return The tensor at the given index.
*/
com.google.protobuf.ByteString getTensor(int index);
}