File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1- export { AnthropicBedrock , AnthropicBedrock as default } from './client' ;
1+ export * from './client' ;
2+ export { AnthropicBedrock as default } from './client' ;
Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ import { FinalRequestOptions } from './internal/request-options';
66import { FinalizedRequestInit } from './internal/types' ;
77import { isObj } from './internal/utils/values' ;
88import { buildHeaders , HeadersLike } from './internal/headers' ;
9- export { BaseAnthropic } from '@anthropic-ai/sdk/client' ;
109import type { Fetch } from './internal/builtin-types' ;
1110import type { MergedRequestInit } from './internal/types' ;
1211
12+ export { BaseAnthropic } from '@anthropic-ai/sdk/client' ;
13+
1314const DEFAULT_VERSION = 'vertex-2023-10-16' ;
1415const MODEL_ENDPOINTS = new Set < string > ( [ '/v1/messages' , '/v1/messages?beta=true' ] ) ;
1516
Original file line number Diff line number Diff line change 1- export { AnthropicVertex , AnthropicVertex as default } from './client' ;
1+ export * from './client' ;
2+ export { AnthropicVertex as default } from './client' ;
You can’t perform that action at this time.
0 commit comments