diff --git a/frontend/src/components/LLMSelection/AwsBedrockLLMOptions/index.jsx b/frontend/src/components/LLMSelection/AwsBedrockLLMOptions/index.jsx
index 00f44a35ff..569ec4395b 100644
--- a/frontend/src/components/LLMSelection/AwsBedrockLLMOptions/index.jsx
+++ b/frontend/src/components/LLMSelection/AwsBedrockLLMOptions/index.jsx
@@ -1,7 +1,12 @@
import { ArrowSquareOut, Info } from "@phosphor-icons/react";
import { AWS_REGIONS } from "./regions";
+import { useState } from "react";
export default function AwsBedrockLLMOptions({ settings }) {
+ const [useSessionToken, setUseSessionToken] = useState(
+ settings?.AwsBedrockLLMConnectionMethod === "sessionToken"
+ );
+
return (
{!settings?.credentialsOnly && (
@@ -24,6 +29,43 @@ export default function AwsBedrockLLMOptions({ settings }) {
)}
+
+ {useSessionToken && (
+
+
+
+
+ )}