类 OpenAIChatModel.Builder
java.lang.Object
io.agentscope.core.model.OpenAIChatModel.Builder
- 封闭类:
OpenAIChatModel
Builder for OpenAIChatModel.
The built model internally wraps the configuration so that calls without explicit options use the builder-provided values.
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明Sets the API key for OpenAI authentication.Sets a custom base URL for OpenAI API.build()Builds the OpenAIChatModel instance.endpointPath(String endpointPath) Sets a custom endpoint path for the API request.formatter(Formatter<OpenAIMessage, OpenAIResponse, OpenAIRequest> formatter) Sets the message formatter to use.generateOptions(GenerateOptions options) Sets the default generation options.httpTransport(HttpTransport httpTransport) Sets the HTTP transport to use.Sets the model name to use.stream(boolean stream) Sets whether streaming should be enabled.
-
构造器详细资料
-
Builder
public Builder()
-
-
方法详细资料
-
apiKey
Sets the API key for OpenAI authentication.- 参数:
apiKey- the API key- 返回:
- this builder instance
-
modelName
Sets the model name to use.- 参数:
modelName- the model name (e.g., "gpt-4", "gpt-3.5-turbo")- 返回:
- this builder instance
-
stream
Sets whether streaming should be enabled.- 参数:
stream- true to enable streaming, false for non-streaming- 返回:
- this builder instance
-
generateOptions
Sets the default generation options.- 参数:
options- the default options to use (null for defaults)- 返回:
- this builder instance
-
baseUrl
Sets a custom base URL for OpenAI API.- 参数:
baseUrl- the base URL (null for default)- 返回:
- this builder instance
-
endpointPath
Sets a custom endpoint path for the API request.This allows customization for OpenAI-compatible APIs that use different endpoint paths than the standard OpenAI API (e.g., "/v4/chat/completions", "/api/v1/llm/chat", etc.). When null, the default endpoint path will be used.
- 参数:
endpointPath- the endpoint path (e.g., "/v1/chat/completions")- 返回:
- this builder instance
-
formatter
public OpenAIChatModel.Builder formatter(Formatter<OpenAIMessage, OpenAIResponse, OpenAIRequest> formatter) Sets the message formatter to use.Use provider-specific formatters for different providers:
OpenAIChatFormatter- Standard OpenAI GPT modelsDeepSeekFormatter- DeepSeek Chat modelsGLMFormatter- Zhipu GLM models
- 参数:
formatter- the formatter (null for default OpenAI formatter)- 返回:
- this builder instance
-
httpTransport
Sets the HTTP transport to use.- 参数:
httpTransport- the HTTP transport (null for default from factory)- 返回:
- this builder instance
-
build
Builds the OpenAIChatModel instance.- 返回:
- configured OpenAIChatModel instance
- 抛出:
IllegalArgumentException- if modelName is not set
-