1Open the following processes in the order specified below:
aValidate Employment
bValidate Loan Information
cRisk Assessment - LLM using Azure OpenAI
dSend Document for eSignature
eCredit Check
2Save and publish all the processes.
3Open the Process Loan Request LLM process.
4In the Set LLM properties step, enter the instructions in the Assignments field by updating the LLM_Settings field using the Expression Editor, as shown in the following sample code:
if(exists($input.LLM_Settings)) then $input.LLM_Settings else <SettingsLLM> <Top_P>1</Top_P> <Temperature>0.5</Temperature> <Max_Tokens>500</Max_Tokens> <Deployment_ID><Deployment ID of the LLM model></Deployment_ID> <API_Version><API version of the deployed LLM model></API_Version> </SettingsLLM>
To invoke the process using the guide or the run using option, you must configure these properties in the Set LLM properties step. To invoke the process using the REST or SOAP API endpoints, you can optionally provide these properties as input into the request payload.