@synsci/sdk 2.0.61 → 2.0.62

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.
@@ -1984,6 +1984,7 @@ export type Model = {
1984
1984
  reasoningOptions?: Array<{
1985
1985
  [key: string]: unknown;
1986
1986
  }>;
1987
+ contextOptions?: Array<number>;
1987
1988
  variants?: {
1988
1989
  [key: string]: {
1989
1990
  [key: string]: unknown;
@@ -1999,6 +2000,15 @@ export type Model = {
1999
2000
  read: number;
2000
2001
  write: number;
2001
2002
  };
2003
+ tiers?: Array<{
2004
+ input: number;
2005
+ output: number;
2006
+ cache: {
2007
+ read: number;
2008
+ write: number;
2009
+ };
2010
+ threshold: number;
2011
+ }>;
2002
2012
  };
2003
2013
  provider?: {
2004
2014
  body?: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@synsci/sdk",
4
- "version": "2.0.61",
4
+ "version": "2.0.62",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "scripts": {