Loan Processing with Azure OpenAI > Using the Loan Processing with Azure OpenAI recipe > Step 6: Publish the processes
  

Step 6: Publish the processes

  1. 1Open the following processes in the order specified below:
    1. aValidate Employment
    2. bValidate Loan Information
    3. cRisk Assessment - LLM using Azure OpenAI
    4. dSend Document for eSignature
    5. eCredit Check
  2. 2Save and publish all the processes.
  3. 3Open the Process Loan Request LLM process.
  4. 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:
  5. 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.
  6. 5Save and publish the process.