File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 66from functools import partial
77from typing import Optional
88
9- import agentlab .llm .tracking as tracking
109import anthropic
1110import openai
11+ from openai import NOT_GIVEN , OpenAI
12+
13+ import agentlab .llm .tracking as tracking
1214from agentlab .llm .base_api import AbstractChatModel , BaseModelArgs
1315from agentlab .llm .llm_utils import AIMessage , Discussion
14- from openai import NOT_GIVEN , OpenAI
1516
1617
1718def make_system_message (content : str ) -> dict :
Original file line number Diff line number Diff line change 1+ from openai import NOT_GIVEN
2+
13from agentlab .llm .chat_api import (
24 AnthropicModelArgs ,
35 AzureModelArgs ,
68 OpenRouterModelArgs ,
79 SelfHostedModelArgs ,
810)
9- from openai import NOT_GIVEN
1011
1112default_oss_llms_args = {
1213 "n_retry_server" : 4 ,
You can’t perform that action at this time.
0 commit comments