Package akka.javasdk.agent
Record Class ModelProvider.LocalAI
- All Implemented Interfaces:
ModelProvider
- Enclosing interface:
ModelProvider
public static record ModelProvider.LocalAI(String baseUrl, String modelName, Double temperature, Double topP, int maxTokens)
extends Record
implements ModelProvider
Settings for the Local AI Large Language Model provider.
-
Nested Class Summary
Nested classes/interfaces inherited from interface akka.javasdk.agent.ModelProvider
ModelProvider.Anthropic, ModelProvider.Custom, ModelProvider.FromConfig, ModelProvider.GoogleAIGemini, ModelProvider.HuggingFace, ModelProvider.LocalAI, ModelProvider.Ollama, ModelProvider.OpenAi -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbaseUrl()Returns the value of thebaseUrlrecord component.final booleanIndicates whether some other object is "equal to" this one.static ModelProvider.LocalAIfromConfig(com.typesafe.config.Config config) final inthashCode()Returns a hash code value for this object.intReturns the value of themaxTokensrecord component.Returns the value of themodelNamerecord component.Returns the value of thetemperaturerecord component.topP()Returns the value of thetopPrecord component.final StringtoString()Returns a string representation of this record class.withMaxTokens(int maxTokens) withModelName(String modelName) withTemperature(double temperature) withTopP(double topP)
-
Constructor Details
-
LocalAI
Creates an instance of aLocalAIrecord class.- Parameters:
baseUrl- the value for thebaseUrlrecord componentmodelName- the value for themodelNamerecord componenttemperature- the value for thetemperaturerecord componenttopP- the value for thetopPrecord componentmaxTokens- the value for themaxTokensrecord component
-
-
Method Details
-
fromConfig
-
withModelName
-
withTemperature
-
withTopP
-
withMaxTokens
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
baseUrl
Returns the value of thebaseUrlrecord component.- Returns:
- the value of the
baseUrlrecord component
-
modelName
Returns the value of themodelNamerecord component.- Returns:
- the value of the
modelNamerecord component
-
temperature
Returns the value of thetemperaturerecord component.- Returns:
- the value of the
temperaturerecord component
-
topP
Returns the value of thetopPrecord component.- Returns:
- the value of the
topPrecord component
-
maxTokens
public int maxTokens()Returns the value of themaxTokensrecord component.- Returns:
- the value of the
maxTokensrecord component
-