File tree 2 files changed +4
-2
lines changed
tests/unit/codegen/agents
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
import os
2
2
from typing import Any , Optional
3
+
3
4
from codegen_api_client .api .agents_api import AgentsApi
4
5
from codegen_api_client .api_client import ApiClient
5
6
from codegen_api_client .configuration import Configuration
6
7
from codegen_api_client .models .agent_run_response import AgentRunResponse
7
8
from codegen_api_client .models .create_agent_run_input import CreateAgentRunInput
9
+
8
10
from codegen .agents .constants import CODEGEN_BASE_API_URL
9
11
10
12
Original file line number Diff line number Diff line change 1
1
from unittest .mock import MagicMock , patch
2
2
3
3
import pytest
4
-
5
- from codegen .agents .agent import Agent , AgentTask
6
4
from codegen_api_client .api .agents_api import AgentsApi
7
5
from codegen_api_client .configuration import Configuration
8
6
from codegen_api_client .models .agent_run_response import AgentRunResponse
7
+
8
+ from codegen .agents .agent import Agent , AgentTask
9
9
from codegen .agents .constants import CODEGEN_BASE_API_URL
10
10
11
11
You can’t perform that action at this time.
0 commit comments