@pydantic/genai-prices 0.0.8 → 0.0.13

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/data.js CHANGED
@@ -1973,6 +1973,30 @@ export const data = [
1973
1973
  output_mtok: 0.24,
1974
1974
  },
1975
1975
  },
1976
+ {
1977
+ id: 'openai/gpt-oss-120b',
1978
+ description: "GPT-OSS 120B is OpenAI's flagship open source model, built on a Mixture-of-Experts (MoE) architecture with\n120 billion parameters and 128 experts.\n",
1979
+ match: {
1980
+ equals: 'openai/gpt-oss-120b',
1981
+ },
1982
+ context_window: 131072,
1983
+ prices: {
1984
+ input_mtok: 0.15,
1985
+ output_mtok: 0.75,
1986
+ },
1987
+ },
1988
+ {
1989
+ id: 'openai/gpt-oss-20b',
1990
+ description: "GPT-OSS 20B is OpenAI's flagship open source model, built on a Mixture-of-Experts (MoE) architecture with\n20 billion parameters and 32 experts.\n",
1991
+ match: {
1992
+ equals: 'openai/gpt-oss-20b',
1993
+ },
1994
+ context_window: 131072,
1995
+ prices: {
1996
+ input_mtok: 0.1,
1997
+ output_mtok: 0.5,
1998
+ },
1999
+ },
1976
2000
  ],
1977
2001
  },
1978
2002
  {
@@ -1978,6 +1978,30 @@
1978
1978
  input_mtok: 0.24,
1979
1979
  output_mtok: 0.24
1980
1980
  }
1981
+ },
1982
+ {
1983
+ id: "openai/gpt-oss-120b",
1984
+ description: "GPT-OSS 120B is OpenAI's flagship open source model, built on a Mixture-of-Experts (MoE) architecture with\n120 billion parameters and 128 experts.\n",
1985
+ match: {
1986
+ equals: "openai/gpt-oss-120b"
1987
+ },
1988
+ context_window: 131072,
1989
+ prices: {
1990
+ input_mtok: 0.15,
1991
+ output_mtok: 0.75
1992
+ }
1993
+ },
1994
+ {
1995
+ id: "openai/gpt-oss-20b",
1996
+ description: "GPT-OSS 20B is OpenAI's flagship open source model, built on a Mixture-of-Experts (MoE) architecture with\n20 billion parameters and 32 experts.\n",
1997
+ match: {
1998
+ equals: "openai/gpt-oss-20b"
1999
+ },
2000
+ context_window: 131072,
2001
+ prices: {
2002
+ input_mtok: 0.1,
2003
+ output_mtok: 0.5
2004
+ }
1981
2005
  }
1982
2006
  ]
1983
2007
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pydantic/genai-prices",
3
- "version": "0.0.8",
3
+ "version": "0.0.13",
4
4
  "description": "Calculate prices for calling LLM inference APIs (JS/TS version of genai-prices)",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",