("open_ai");
@@ -215,7 +222,7 @@ const ModelConfigMainView = ({
/>
}
/>
-
+ {model?.api_type != "anthropic" && (
}
/>
+ )}
)}
+ {/* AWS Configuration */}
+ {model?.api_type == "anthropic" ? [
+ {
+ updateModelConfig("aws_access_key", e.target.value);
+ }}
+ />
+ }
+ />,
+ {
+ updateModelConfig("aws_secret_key", e.target.value);
+ }}
+ />
+ }
+ />,
+ {
+ updateModelConfig("aws_session_token", e.target.value);
+ }}
+ />
+ }
+ />,
+ {
+ updateModelConfig("aws_region", e.target.value);
+ }}
+ />
+ }
+ />
+ ] : null}
diff --git a/samples/apps/autogen-studio/pyproject.toml b/samples/apps/autogen-studio/pyproject.toml
index bc8c7864ad6..968549f26a6 100644
--- a/samples/apps/autogen-studio/pyproject.toml
+++ b/samples/apps/autogen-studio/pyproject.toml
@@ -24,7 +24,8 @@ dependencies = [
"typer",
"uvicorn",
"arxiv",
- "pyautogen[gemini]>=0.2.0",
+ "pyautogen[anthropic,gemini]>=0.2.0",
+ "anthropic[bedrock]",
"python-dotenv",
"websockets",
"numpy < 2.0.0",