Optionalfields: anyPenalizes repeated tokens according to frequency
Model name to use
Model name to use
Alias for model
Number of completions to generate for each prompt
Penalizes repeated tokens
Whether or not to include token usage data in streamed chunks.
Whether to stream the results or not. Enabling disables tokenUsage reporting
Sampling temperature to use
Total probability mass of tokens to consider at each step
OptionalapiAPI key to use when making requests to OpenAI. Defaults to the value of
OPENAI_API_KEY environment variable.
OptionalazureADTokenA function that returns an access token for Microsoft Entra (formerly known as Azure Active Directory), which will be invoked on every request.
OptionalazureAzure OpenAI API deployment name to use for completions when making requests to Azure OpenAI. This is the name of the deployment you created in the Azure portal. e.g. "my-openai-deployment" this will be used in the endpoint URL: https://{InstanceName}.openai.azure.com/openai/deployments/my-openai-deployment/
OptionalazureAzure OpenAI API instance name to use when making requests to Azure OpenAI. this is the name of the instance you created in the Azure portal. e.g. "my-openai-instance" this will be used in the endpoint URL: https://my-openai-instance.openai.azure.com/openai/deployments/{DeploymentName}/
OptionalazureAPI key to use when making requests to Azure OpenAI.
OptionalazureAPI version to use when making requests to Azure OpenAI.
OptionalazureCustom endpoint for Azure OpenAI API. This is useful in case you have a deployment in another region. e.g. setting this value to "https://westeurope.api.cognitive.microsoft.com/openai/deployments" will be result in the endpoint URL: https://westeurope.api.cognitive.microsoft.com/openai/deployments/{DeploymentName}/
OptionallogitDictionary used to adjust the probability of specific tokens being generated
OptionallogprobsWhether to return log probabilities of the output tokens or not. If true, returns the log probabilities of each output token returned in the content of message.
OptionalmaxMaximum number of tokens to generate in the completion. -1 returns as many tokens as possible given the prompt and the model's maximum context size.
OptionalmodelHolds any additional parameters that are valid to pass to openai.createCompletion that are not explicitly specified on this class.
OptionalopenAIApiAPI key to use when making requests to OpenAI. Defaults to the value of
OPENAI_API_KEY environment variable.
Alias for apiKey
OptionalorganizationOptionalstopList of stop words to use when generating
Alias for stopSequences
OptionalstopList of stop words to use when generating
OptionalsupportsWhether the model supports the strict argument when passing in tools.
If undefined the strict argument will not be passed to OpenAI.
OptionaltimeoutTimeout to use when making requests to OpenAI.
OptionaltopAn integer between 0 and 5 specifying the number of most likely tokens to return at each token position, each with an associated log probability. logprobs must be set to true if this parameter is used.
OptionaluserUnique string identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
ProtectedclientProtectedclientOptionalkwargs: Partial<ChatOpenAICallOptions>Calls the OpenAI API with retry logic in case of failures.
The request to send to the OpenAI API.
Optionaloptions: OpenAICoreRequestOptionsOptional configuration for the API call.
The response from the OpenAI API.
Optionaloptions: OpenAICoreRequestOptionsGet the identifying parameters for the model
Get the parameters used to invoke the model
Optionaloptions: unknownOptionalextra: { Optionalstreaming?: booleanOptionalconfig: ChatOpenAIStructuredOutputMethodOptions<false>Optionalconfig: ChatOpenAIStructuredOutputMethodOptions<true>
Azure OpenAI chat model integration.
Setup: Install
@langchain/openaiand set the following environment variables:Key args
Init args
Runtime args
Examples
Instantiate
Invoking
Streaming Chunks
Aggregate Streamed Chunks
Bind tools
Structured Output
JSON Object Response Format
Multimodal
Usage Metadata
Logprobs
Response Metadata