@oro-ai/sdk 1.0.72 → 1.0.73
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/index.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +7 -0
package/dist/index.d.mts
CHANGED
|
@@ -4064,6 +4064,13 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
4064
4064
|
/**
|
|
4065
4065
|
* List allowed inference models
|
|
4066
4066
|
* Returns the models available to ORO agents via the inference proxy. Defaults to a flat array of model IDs (provider's static allowlist). Set ``?ranked=true`` to receive models in load-/health-sorted order with per-model stats from the most recent provider poll.
|
|
4067
|
+
*
|
|
4068
|
+
* **Chutes-deprecated models (still in the Chutes allowlist for miner compatibility, but Chutes no longer serves them — route via OpenRouter):**
|
|
4069
|
+
* - `deepseek-ai/DeepSeek-V3.1-TEE`
|
|
4070
|
+
* - `deepseek-ai/DeepSeek-V3-0324-TEE`
|
|
4071
|
+
* - `deepseek-ai/DeepSeek-R1-0528-TEE`
|
|
4072
|
+
* - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
|
|
4073
|
+
* - `XiaomiMiMo/MiMo-V2-Flash-TEE`
|
|
4067
4074
|
*/
|
|
4068
4075
|
declare const getInferenceModels: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInferenceModelsResponse, HTTPValidationError, ThrowOnError>;
|
|
4069
4076
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -4064,6 +4064,13 @@ declare const joinWaitlist: <ThrowOnError extends boolean = false>(options: Opti
|
|
|
4064
4064
|
/**
|
|
4065
4065
|
* List allowed inference models
|
|
4066
4066
|
* Returns the models available to ORO agents via the inference proxy. Defaults to a flat array of model IDs (provider's static allowlist). Set ``?ranked=true`` to receive models in load-/health-sorted order with per-model stats from the most recent provider poll.
|
|
4067
|
+
*
|
|
4068
|
+
* **Chutes-deprecated models (still in the Chutes allowlist for miner compatibility, but Chutes no longer serves them — route via OpenRouter):**
|
|
4069
|
+
* - `deepseek-ai/DeepSeek-V3.1-TEE`
|
|
4070
|
+
* - `deepseek-ai/DeepSeek-V3-0324-TEE`
|
|
4071
|
+
* - `deepseek-ai/DeepSeek-R1-0528-TEE`
|
|
4072
|
+
* - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
|
|
4073
|
+
* - `XiaomiMiMo/MiMo-V2-Flash-TEE`
|
|
4067
4074
|
*/
|
|
4068
4075
|
declare const getInferenceModels: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInferenceModelsResponse, HTTPValidationError, ThrowOnError>;
|
|
4069
4076
|
/**
|
package/package.json
CHANGED
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -266,6 +266,13 @@ export const joinWaitlist = <ThrowOnError extends boolean = false>(options: Opti
|
|
|
266
266
|
/**
|
|
267
267
|
* List allowed inference models
|
|
268
268
|
* Returns the models available to ORO agents via the inference proxy. Defaults to a flat array of model IDs (provider's static allowlist). Set ``?ranked=true`` to receive models in load-/health-sorted order with per-model stats from the most recent provider poll.
|
|
269
|
+
*
|
|
270
|
+
* **Chutes-deprecated models (still in the Chutes allowlist for miner compatibility, but Chutes no longer serves them — route via OpenRouter):**
|
|
271
|
+
* - `deepseek-ai/DeepSeek-V3.1-TEE`
|
|
272
|
+
* - `deepseek-ai/DeepSeek-V3-0324-TEE`
|
|
273
|
+
* - `deepseek-ai/DeepSeek-R1-0528-TEE`
|
|
274
|
+
* - `tngtech/DeepSeek-TNG-R1T2-Chimera-TEE`
|
|
275
|
+
* - `XiaomiMiMo/MiMo-V2-Flash-TEE`
|
|
269
276
|
*/
|
|
270
277
|
export const getInferenceModels = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetInferenceModelsData, ThrowOnError>) => {
|
|
271
278
|
return (options?.client ?? client).get<GetInferenceModelsResponse, GetInferenceModelsError, ThrowOnError>({
|