Skip to content

Commit 4f71589

Browse files
formatting
1 parent 5fc929e commit 4f71589

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/agentlab/llm/chat_api.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
from functools import partial
77
from typing import Optional
88

9-
import agentlab.llm.tracking as tracking
109
import anthropic
1110
import openai
11+
from openai import NOT_GIVEN, OpenAI
12+
13+
import agentlab.llm.tracking as tracking
1214
from agentlab.llm.base_api import AbstractChatModel, BaseModelArgs
1315
from agentlab.llm.llm_utils import AIMessage, Discussion
14-
from openai import NOT_GIVEN, OpenAI
1516

1617

1718
def make_system_message(content: str) -> dict:

src/agentlab/llm/llm_configs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from openai import NOT_GIVEN
2+
13
from agentlab.llm.chat_api import (
24
AnthropicModelArgs,
35
AzureModelArgs,
@@ -6,7 +8,6 @@
68
OpenRouterModelArgs,
79
SelfHostedModelArgs,
810
)
9-
from openai import NOT_GIVEN
1011

1112
default_oss_llms_args = {
1213
"n_retry_server": 4,

0 commit comments

Comments
 (0)