Skip to content

Commit 700083c

Browse files
committed
more lint fixes
1 parent 8d99035 commit 700083c

8 files changed

Lines changed: 24 additions & 24 deletions

File tree

packages/ai-providers/server-ai-openai/src/ldai_openai/openai_agent_graph_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def __init__(self, last_handoff_ns: int, last_node_key: str) -> None:
3333
class OpenAIAgentGraphRunner(AgentGraphRunner):
3434
"""
3535
CAUTION:
36-
This feature is experimental and should NOT be considered ready for production use.
37-
It may change or be removed without notice and is not subject to backwards
36+
This feature is experimental and should NOT be considered ready for production use.
37+
It may change or be removed without notice and is not subject to backwards
3838
compatibility guarantees.
3939
4040
AgentGraphRunner implementation for the OpenAI Agents SDK.

packages/ai-providers/server-ai-openai/src/ldai_openai/openai_agent_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
class OpenAIAgentRunner(AgentRunner):
1414
"""
1515
CAUTION:
16-
This feature is experimental and should NOT be considered ready for production use.
17-
It may change or be removed without notice and is not subject to backwards
16+
This feature is experimental and should NOT be considered ready for production use.
17+
It may change or be removed without notice and is not subject to backwards
1818
compatibility guarantees.
1919
2020
AgentRunner implementation for OpenAI.

packages/ai-providers/server-ai-openai/src/ldai_openai/openai_runner_factory.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def _extract_model_config(self, config: AIConfigKind) -> tuple:
3939
def create_agent(self, config: Any, tools: Optional[ToolRegistry] = None) -> 'OpenAIAgentRunner':
4040
"""
4141
CAUTION:
42-
This feature is experimental and should NOT be considered ready for production use.
43-
It may change or be removed without notice and is not subject to backwards
42+
This feature is experimental and should NOT be considered ready for production use.
43+
It may change or be removed without notice and is not subject to backwards
4444
compatibility guarantees.
4545
4646
Create a configured OpenAIAgentRunner for the given AI agent config.
@@ -67,8 +67,8 @@ def create_agent(self, config: Any, tools: Optional[ToolRegistry] = None) -> 'Op
6767
def create_agent_graph(self, graph_def: Any, tools: ToolRegistry) -> Any:
6868
"""
6969
CAUTION:
70-
This feature is experimental and should NOT be considered ready for production use.
71-
It may change or be removed without notice and is not subject to backwards
70+
This feature is experimental and should NOT be considered ready for production use.
71+
It may change or be removed without notice and is not subject to backwards
7272
compatibility guarantees.
7373
7474
Create a configured OpenAIAgentGraphRunner for the given graph definition.

packages/sdk/server-ai/src/ldai/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,8 @@ async def create_agent(
391391
) -> Optional[ManagedAgent]:
392392
"""
393393
CAUTION:
394-
This feature is experimental and should NOT be considered ready for production use.
395-
It may change or be removed without notice and is not subject to backwards
394+
This feature is experimental and should NOT be considered ready for production use.
395+
It may change or be removed without notice and is not subject to backwards
396396
compatibility guarantees.
397397
398398
Creates and returns a new ManagedAgent for AI agent invocations.
@@ -681,8 +681,8 @@ async def create_agent_graph(
681681
) -> Optional[ManagedAgentGraph]:
682682
"""
683683
CAUTION:
684-
This feature is experimental and should NOT be considered ready for production use.
685-
It may change or be removed without notice and is not subject to backwards
684+
This feature is experimental and should NOT be considered ready for production use.
685+
It may change or be removed without notice and is not subject to backwards
686686
compatibility guarantees.
687687
688688
Creates and returns a new ManagedAgentGraph for AI agent graph execution.

packages/sdk/server-ai/src/ldai/providers/agent_graph_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
class AgentGraphRunner(Protocol):
88
"""
99
CAUTION:
10-
This feature is experimental and should NOT be considered ready for production use.
11-
It may change or be removed without notice and is not subject to backwards
10+
This feature is experimental and should NOT be considered ready for production use.
11+
It may change or be removed without notice and is not subject to backwards
1212
compatibility guarantees.
1313
1414
Runtime capability interface for multi-agent graph execution.

packages/sdk/server-ai/src/ldai/providers/agent_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
class AgentRunner(Protocol):
88
"""
99
CAUTION:
10-
This feature is experimental and should NOT be considered ready for production use.
11-
It may change or be removed without notice and is not subject to backwards
10+
This feature is experimental and should NOT be considered ready for production use.
11+
It may change or be removed without notice and is not subject to backwards
1212
compatibility guarantees.
1313
1414
Runtime capability interface for single-agent execution.

packages/sdk/server-ai/src/ldai/providers/ai_provider.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def create_model(self, config: Any) -> Optional[Any]:
7676
def create_agent(self, config: Any, tools: Optional[ToolRegistry] = None) -> Optional[Any]:
7777
"""
7878
CAUTION:
79-
This feature is experimental and should NOT be considered ready for production use.
80-
It may change or be removed without notice and is not subject to backwards
79+
This feature is experimental and should NOT be considered ready for production use.
80+
It may change or be removed without notice and is not subject to backwards
8181
compatibility guarantees.
8282
8383
Create a configured agent executor for the given AI config and tool registry.
@@ -94,8 +94,8 @@ def create_agent(self, config: Any, tools: Optional[ToolRegistry] = None) -> Opt
9494
def create_agent_graph(self, graph_def: Any, tools: Any) -> Optional[Any]:
9595
"""
9696
CAUTION:
97-
This feature is experimental and should NOT be considered ready for production use.
98-
It may change or be removed without notice and is not subject to backwards
97+
This feature is experimental and should NOT be considered ready for production use.
98+
It may change or be removed without notice and is not subject to backwards
9999
compatibility guarantees.
100100
101101
Create a configured agent graph executor for the given graph definition and tools.

packages/sdk/server-ai/src/ldai/providers/runner_factory.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ def create_agent(
138138
) -> Optional[AgentRunner]:
139139
"""
140140
CAUTION:
141-
This feature is experimental and should NOT be considered ready for production use.
142-
It may change or be removed without notice and is not subject to backwards
141+
This feature is experimental and should NOT be considered ready for production use.
142+
It may change or be removed without notice and is not subject to backwards
143143
compatibility guarantees.
144144
145145
Create an agent executor for the given AI agent config and tool registry.
@@ -161,8 +161,8 @@ def create_agent_graph(
161161
) -> Optional[AgentGraphRunner]:
162162
"""
163163
CAUTION:
164-
This feature is experimental and should NOT be considered ready for production use.
165-
It may change or be removed without notice and is not subject to backwards
164+
This feature is experimental and should NOT be considered ready for production use.
165+
It may change or be removed without notice and is not subject to backwards
166166
compatibility guarantees.
167167
168168
Create an agent graph executor for the given graph definition and tool registry.

0 commit comments

Comments
 (0)