Skip to content

Commit c744b8e

Browse files
committed
Clean internal references
1 parent 641146c commit c744b8e

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

packages/mcp-server/src/agent_builder_mcp/knowledge/data/sdk_docs.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@
306306
},
307307
{
308308
"name": "TransformEndpointConfig",
309-
"docstring": "Configuration utility for Elastic Gumby endpoints and region mappings.",
309+
"docstring": "Configuration utility for AWS Transform endpoints and region mappings.",
310310
"file": "agent_builder_sdk/utils.py"
311311
},
312312
{
@@ -341,7 +341,7 @@
341341
},
342342
{
343343
"name": "create_endpoint_url",
344-
"docstring": "Creates the endpoint URL for Elastic Gumby services.\n\nArgs:\n stage: Environment stage (e.g., 'prod', 'beta', 'gamma')\n region: AWS region code\n component_name: Service component name\n\nReturns:\n The fully constructed endpoint URL\n\nRaises:\n ValueError: If the provided region is not supported",
344+
"docstring": "Creates the endpoint URL for AWS Transform services.\n\nArgs:\n stage: Environment stage (e.g., 'prod', 'beta', 'gamma')\n region: AWS region code\n component_name: Service component name\n\nReturns:\n The fully constructed endpoint URL\n\nRaises:\n ValueError: If the provided region is not supported",
345345
"file": "agent_builder_sdk/utils.py"
346346
},
347347
{
@@ -1996,7 +1996,7 @@
19961996
},
19971997
{
19981998
"name": "HitlClient",
1999-
"docstring": "A wrapper around Elastic Gumby's HITL (human-in-the-loop) APIs.",
1999+
"docstring": "A wrapper around AWS Transform's HITL (human-in-the-loop) APIs.",
20002000
"file": "agent_builder_sdk/agentic_framework/hitl.py"
20012001
},
20022002
{
@@ -2216,7 +2216,7 @@
22162216
},
22172217
{
22182218
"name": "AgenticApiRequestContext",
2219-
"docstring": "Request context for Elastic Gumby Agentic API calls.\nContains job metadata and agent identification information.",
2219+
"docstring": "Request context for AWS Transform Agentic API calls.\nContains job metadata and agent identification information.",
22202220
"file": "agent_builder_sdk/agentic_framework/api_model.py"
22212221
},
22222222
{

packages/sdk/src/agent_builder_sdk/agentic_framework/api_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def to_dict(self) -> T:
5353
@dataclass(frozen=True)
5454
class AgenticApiRequestContext(ApiShapeMixin[abt.RequestContextTypeDef]):
5555
"""
56-
Request context for Elastic Gumby Agentic API calls.
56+
Request context for AWS Transform Agentic API calls.
5757
Contains job metadata and agent identification information.
5858
"""
5959

packages/sdk/src/agent_builder_sdk/agentic_framework/hitl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
class HitlClient(AgenticApiHelper):
12-
"""A wrapper around Elastic Gumby's HITL (human-in-the-loop) APIs."""
12+
"""A wrapper around AWS Transform's HITL (human-in-the-loop) APIs."""
1313

1414
client: TransformAgenticServiceClient
1515

packages/sdk/src/agent_builder_sdk/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Application-wide constants for the Elastic Gumby Platform Base Agent.
2+
Application-wide constants for the AWS Transform Platform Base Agent.
33
"""
44

55
# Tool filtering constants

packages/sdk/src/agent_builder_sdk/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def extract_text_from_strands_agent_response(response: AgentResult) -> str:
232232

233233
class TransformEndpointConfig:
234234
"""
235-
Configuration utility for Elastic Gumby endpoints and region mappings.
235+
Configuration utility for AWS Transform endpoints and region mappings.
236236
"""
237237

238238
@staticmethod
@@ -283,7 +283,7 @@ def get_airport_code_for_region(region: str) -> str:
283283
@staticmethod
284284
def create_endpoint_url(stage: str, region: str, component_name: str) -> str:
285285
"""
286-
Creates the endpoint URL for Elastic Gumby services.
286+
Creates the endpoint URL for AWS Transform services.
287287
288288
Args:
289289
stage: Environment stage (e.g., 'prod', 'beta', 'gamma')

0 commit comments

Comments
 (0)