Optional
fields: Partial<Omit<OpenAIInput, "openAIApiKey" | FireworksUnsupportedArgs>> & BaseLLMParams & { Batch size to use when passing multiple documents to generate
Penalizes repeated tokens according to frequency
Maximum 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.
Model name to use
Number of completions to generate for each prompt
Penalizes repeated tokens
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
Optional
azureAzure 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/
Optional
azureAzure 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}/
Optional
azureAPI key to use when making requests to Azure OpenAI.
Optional
azureAPI version to use when making requests to Azure OpenAI.
Optional
azureCustom 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}/
Optional
bestGenerates bestOf
completions server side and returns the "best"
Optional
fireworksOptional
logitDictionary used to adjust the probability of specific tokens being generated
Optional
modelHolds any additional parameters that are valid to pass to openai.createCompletion
that are not explicitly specified on this class.
Optional
openAIApiAPI key to use when making requests to OpenAI. Defaults to the value of
OPENAI_API_KEY
environment variable.
Optional
organizationOptional
stopList of stop words to use when generating
Optional
timeoutTimeout to use when making requests to OpenAI.
Optional
userUnique string identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
Calls the Fireworks API with retry logic in case of failures.
The request to send to the Fireworks API.
Optional
options: OpenAICoreRequestOptionsOptional configuration for the API call.
The response from the Fireworks API.
Calls the Fireworks API with retry logic in case of failures.
The request to send to the Fireworks API.
Optional
options: OpenAICoreRequestOptionsOptional configuration for the API call.
The response from the Fireworks API.
Get the parameters used to invoke the model
Optional
options: Omit<Partial<Omit<OpenAICallOptions, FireworksUnsupportedCallOptions>>, never>Generated using TypeDoc
Wrapper around Fireworks API for large language models
Fireworks API is compatible to the OpenAI API with some limitations described in https://readme.fireworks.ai/docs/openai-compatibility.
To use, you should have the
openai
package installed and theFIREWORKS_API_KEY
environment variable set.