@jaypie/llm 1.3.15 → 1.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/constants.d.ts +56 -1
- package/dist/cjs/index.cjs +180 -5
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +61 -4
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/operate/adapters/BedrockAdapter.d.ts +2 -0
- package/dist/esm/constants.d.ts +56 -1
- package/dist/esm/index.d.ts +61 -4
- package/dist/esm/index.js +180 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/operate/adapters/BedrockAdapter.d.ts +2 -0
- package/package.json +1 -1
|
@@ -47,6 +47,8 @@ type BedrockRequest = Omit<ConverseCommandInput, "messages"> & {
|
|
|
47
47
|
type AnnotatedBedrockResponse = ConverseCommandOutput & {
|
|
48
48
|
__jaypieStructuredOutput?: boolean;
|
|
49
49
|
};
|
|
50
|
+
/** Exported for tests; not part of the package's public surface. */
|
|
51
|
+
export declare function isCachePointUnsupportedError(error: unknown): boolean;
|
|
50
52
|
export declare class BedrockAdapter extends BaseProviderAdapter {
|
|
51
53
|
readonly name: "bedrock";
|
|
52
54
|
readonly defaultModel: "amazon.nova-pro-v1:0";
|