|
69 | 69 | from .agent_retrieve_response import AgentRetrieveResponse as AgentRetrieveResponse |
70 | 70 | from .api_openai_api_key_info import APIOpenAIAPIKeyInfo as APIOpenAIAPIKeyInfo |
71 | 71 | from .gpu_droplet_list_params import GPUDropletListParams as GPUDropletListParams |
72 | | -from .api_deployment_visibility import APIDeploymentVisibility as APIDeploymentVisibility |
| 72 | +from .agents.evaluation_metrics import ( |
| 73 | + openai, # type: ignore # noqa: F401 |
| 74 | + anthropic, # type: ignore # noqa: F401 |
| 75 | +) |
| 76 | +from .api_deployment_visibility import ( |
| 77 | + APIDeploymentVisibility as APIDeploymentVisibility, |
| 78 | +) |
73 | 79 | from .gpu_droplet_create_params import GPUDropletCreateParams as GPUDropletCreateParams |
74 | 80 | from .gpu_droplet_list_response import GPUDropletListResponse as GPUDropletListResponse |
75 | 81 | from .agent_update_status_params import ( |
|
112 | 118 | from .gpu_droplet_list_kernels_params import ( |
113 | 119 | GPUDropletListKernelsParams as GPUDropletListKernelsParams, |
114 | 120 | ) |
| 121 | +from .agents.evaluation_metrics.openai import ( |
| 122 | + key_list_agents_response, # type: ignore # noqa: F401 |
| 123 | +) |
115 | 124 | from .gpu_droplet_delete_by_tag_params import ( |
116 | 125 | GPUDropletDeleteByTagParams as GPUDropletDeleteByTagParams, |
117 | 126 | ) |
|
127 | 136 | from .gpu_droplet_list_snapshots_params import ( |
128 | 137 | GPUDropletListSnapshotsParams as GPUDropletListSnapshotsParams, |
129 | 138 | ) |
| 139 | +from .agents.evaluation_metrics.anthropic import ( |
| 140 | + key_list_agents_response, # type: ignore # noqa: F401 |
| 141 | +) |
130 | 142 | from .gpu_droplet_list_firewalls_response import ( |
131 | 143 | GPUDropletListFirewallsResponse as GPUDropletListFirewallsResponse, |
132 | 144 | ) |
|
199 | 211 | agents.route_view_response.RouteViewResponse.model_rebuild( |
200 | 212 | _parent_namespace_depth=0 |
201 | 213 | ) |
202 | | - models.providers.anthropic_list_agents_response.AnthropicListAgentsResponse.model_rebuild(_parent_namespace_depth=0) |
| 214 | + models.providers.anthropic_list_agents_response.AnthropicListAgentsResponse.model_rebuild( |
| 215 | + _parent_namespace_depth=0 |
| 216 | + ) |
203 | 217 | models.providers.openai_retrieve_agents_response.OpenAIRetrieveAgentsResponse.model_rebuild( |
204 | 218 | _parent_namespace_depth=0 |
205 | 219 | ) |
|
0 commit comments