// This is an automatically generated code sample.
// To make this code sample work in your Oracle Cloud tenancy,
// please replace the values for any parameters whose current values do not fit
// your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
// boolean, number, and enum parameters with values not fitting your use case).
import * as generativeaiagent from "oci-generativeaiagent";
import common = require("oci-common");
// Create a default authentication provider that uses the DEFAULT
// profile in the configuration file.
// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();
(async () => {
try {
// Create a service client
const client = new generativeaiagent.GenerativeAiAgentClient({ authenticationDetailsProvider: provider });
// Create a request and dependent object(s).
const updateToolDetails = {
displayName: "EXAMPLE-displayName-Value",
description: "EXAMPLE-description-Value",
toolConfig: {
toolConfigType: "RAG_TOOL_CONFIG", knowledgeBaseConfigs: [{
knowledgeBaseId: "ocid1.test.oc1..<unique_ID>EXAMPLE-knowledgeBaseId-Value",
}
],
generationLlmCustomization: {
llmSelection: {
llmSelectionType: "DEFAULT",
}
,
llmHyperParameters: {
EXAMPLE_KEY_NoRY0 :"EXAMPLE--Value"
},
instruction: "EXAMPLE-instruction-Value",
}
,
runtimeVersion: "EXAMPLE-runtimeVersion-Value",
embeddingLlmCustomization: {
llmSelection: {
llmSelectionType: "CUSTOM_GEN_AI_ENDPOINT", endpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-endpointId-Value"
}
,
llmHyperParameters: {
EXAMPLE_KEY_QhJZ8 :"EXAMPLE--Value"
},
instruction: "EXAMPLE-instruction-Value",
}
,
rerankingLlmCustomization: {
llmSelection: {
llmSelectionType: "CUSTOM_GEN_AI_ENDPOINT", endpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-endpointId-Value"
}
,
llmHyperParameters: {
EXAMPLE_KEY_e0rd7 :"EXAMPLE--Value"
},
instruction: "EXAMPLE-instruction-Value",
}
,
reasoningLlmCustomization: {
llmSelection: {
llmSelectionType: "CUSTOM_GEN_AI_ENDPOINT", endpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-endpointId-Value"
}
,
llmHyperParameters: {
EXAMPLE_KEY_hkEmZ :"EXAMPLE--Value"
},
instruction: "EXAMPLE-instruction-Value",
}
}
,
metadata: {
EXAMPLE_KEY_uIoa2 :"EXAMPLE_VALUE_0wOkmgV5OR02BK8EE8p8"
},
freeformTags: {
EXAMPLE_KEY_974o9 :"EXAMPLE_VALUE_4sGSiPoooMnisXZtCtAz"
},
definedTags: {
EXAMPLE_KEY_2Y5cs :{
EXAMPLE_KEY_HlSe1 :"EXAMPLE--Value"
}
},
}
const updateToolRequest: generativeaiagent.requests.UpdateToolRequest = {
toolId: "ocid1.test.oc1..<unique_ID>EXAMPLE-toolId-Value",
updateToolDetails: updateToolDetails,
ifMatch: "EXAMPLE-ifMatch-Value",
opcRequestId: "ESJARRJUFGJBFK3UXQ49<unique_ID>",
};
// Send request to the Client.
const updateToolResponse = await client.updateTool(updateToolRequest);
}
catch (error) {
console.log("updateTool Failed with error " + error);
}
})();