@oro-ai/sdk 1.0.111 → 1.0.113
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 +288 -1
- package/dist/index.d.ts +288 -1
- package/dist/index.js +40 -0
- package/dist/index.mjs +35 -0
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +56 -1
- package/src/generated/types.gen.ts +288 -0
package/dist/index.d.mts
CHANGED
|
@@ -987,6 +987,12 @@ type ClaimWorkResponse = {
|
|
|
987
987
|
*/
|
|
988
988
|
inference_token?: (InferenceTokenGrant | null);
|
|
989
989
|
};
|
|
990
|
+
type ClearAllCooldownsResponse = {
|
|
991
|
+
/**
|
|
992
|
+
* Number of miner cooldowns cleared
|
|
993
|
+
*/
|
|
994
|
+
cleared_count: number;
|
|
995
|
+
};
|
|
990
996
|
type ClearCooldownResponse = {
|
|
991
997
|
/**
|
|
992
998
|
* Whether the cooldown was cleared
|
|
@@ -1200,6 +1206,112 @@ type EliminateResponse = {
|
|
|
1200
1206
|
*/
|
|
1201
1207
|
eliminated_at: string;
|
|
1202
1208
|
};
|
|
1209
|
+
/**
|
|
1210
|
+
* Request error from an environment operation or its authentication middleware.
|
|
1211
|
+
*/
|
|
1212
|
+
type EnvPackErrorResponse = {
|
|
1213
|
+
/**
|
|
1214
|
+
* Error message or structured details. Inspect the HTTP status for retries.
|
|
1215
|
+
*/
|
|
1216
|
+
detail: (string | {
|
|
1217
|
+
[key: string]: unknown;
|
|
1218
|
+
});
|
|
1219
|
+
};
|
|
1220
|
+
/**
|
|
1221
|
+
* Request an immutable upload target for one environment episode.
|
|
1222
|
+
*/
|
|
1223
|
+
type EpisodeArtifactPresignRequest = {
|
|
1224
|
+
eval_run_id: string;
|
|
1225
|
+
env_pack_sha256: string;
|
|
1226
|
+
artifact_sha256: string;
|
|
1227
|
+
content_length: number;
|
|
1228
|
+
};
|
|
1229
|
+
/**
|
|
1230
|
+
* Content-addressed S3 target returned to the owning validator.
|
|
1231
|
+
*/
|
|
1232
|
+
type EpisodeArtifactPresignResponse = {
|
|
1233
|
+
upload_url: string;
|
|
1234
|
+
artifact_uri: string;
|
|
1235
|
+
artifact_sha256: string;
|
|
1236
|
+
};
|
|
1237
|
+
/**
|
|
1238
|
+
* A validator's terminal result for one task in a bound environment pack.
|
|
1239
|
+
*/
|
|
1240
|
+
type EpisodeResultEntry = {
|
|
1241
|
+
/**
|
|
1242
|
+
* Evaluation run this episode belongs to.
|
|
1243
|
+
*/
|
|
1244
|
+
eval_run_id: string;
|
|
1245
|
+
/**
|
|
1246
|
+
* Pack the task was compiled from.
|
|
1247
|
+
*/
|
|
1248
|
+
env_pack_sha256: string;
|
|
1249
|
+
/**
|
|
1250
|
+
* Task identifier within the bound pack.
|
|
1251
|
+
*/
|
|
1252
|
+
task_id: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* Task family name (retrieval_recall, intent_decomposition, ...).
|
|
1255
|
+
*/
|
|
1256
|
+
family: string;
|
|
1257
|
+
/**
|
|
1258
|
+
* Terminal task outcome.
|
|
1259
|
+
*/
|
|
1260
|
+
outcome: 'completed' | 'partial' | 'agent_error' | 'environment_error' | 'verifier_error' | 'leakage' | 'exploit';
|
|
1261
|
+
/**
|
|
1262
|
+
* Whether the deterministic hard gate passed.
|
|
1263
|
+
*/
|
|
1264
|
+
verdict_correct?: boolean;
|
|
1265
|
+
/**
|
|
1266
|
+
* Per-check tri-state results (final_in_gold, within_budget, ...).
|
|
1267
|
+
*/
|
|
1268
|
+
verdict_checks?: {
|
|
1269
|
+
[key: string]: unknown;
|
|
1270
|
+
};
|
|
1271
|
+
/**
|
|
1272
|
+
* Bounded per-family reward gradients — only paid when verdict_correct.
|
|
1273
|
+
*/
|
|
1274
|
+
reward_components?: {
|
|
1275
|
+
[key: string]: unknown;
|
|
1276
|
+
};
|
|
1277
|
+
/**
|
|
1278
|
+
* Terminal reward paid for this episode. MUST be null when verdict_correct is false.
|
|
1279
|
+
*/
|
|
1280
|
+
aggregate_reward?: (number | string | null);
|
|
1281
|
+
/**
|
|
1282
|
+
* sha256 of the ledger's final state — cross-validator parity anchor. Required for completed / partial / leakage / exploit; MUST be null for the *_error outcomes (no state to compare).
|
|
1283
|
+
*/
|
|
1284
|
+
terminal_state_hash?: (string | null);
|
|
1285
|
+
/**
|
|
1286
|
+
* S3 URI of the complete episode artifact, including its ledger.
|
|
1287
|
+
*/
|
|
1288
|
+
ledger_uri?: (string | null);
|
|
1289
|
+
/**
|
|
1290
|
+
* Number of agent steps taken before termination.
|
|
1291
|
+
*/
|
|
1292
|
+
step_count?: number;
|
|
1293
|
+
};
|
|
1294
|
+
/**
|
|
1295
|
+
* Terminal task outcome.
|
|
1296
|
+
*/
|
|
1297
|
+
type outcome = 'completed' | 'partial' | 'agent_error' | 'environment_error' | 'verifier_error' | 'leakage' | 'exploit';
|
|
1298
|
+
/**
|
|
1299
|
+
* Per-item result inside ``SubmitEpisodeResultsResponse``.
|
|
1300
|
+
*/
|
|
1301
|
+
type EpisodeResultSubmission = {
|
|
1302
|
+
eval_run_id: string;
|
|
1303
|
+
task_id: string;
|
|
1304
|
+
status: 201 | 409 | 404 | 422;
|
|
1305
|
+
/**
|
|
1306
|
+
* Populated when status=201 (row was written).
|
|
1307
|
+
*/
|
|
1308
|
+
episode_result_id?: (string | null);
|
|
1309
|
+
/**
|
|
1310
|
+
* Populated when status != 201; short human-readable reason.
|
|
1311
|
+
*/
|
|
1312
|
+
error?: (string | null);
|
|
1313
|
+
};
|
|
1314
|
+
type status = 201 | 409 | 404 | 422;
|
|
1203
1315
|
/**
|
|
1204
1316
|
* Base weight standings pinned to one epoch (ORO-1704).
|
|
1205
1317
|
*
|
|
@@ -1924,6 +2036,53 @@ type NotVersionOwnerError = {
|
|
|
1924
2036
|
*/
|
|
1925
2037
|
error_code?: "NOT_VERSION_OWNER";
|
|
1926
2038
|
};
|
|
2039
|
+
/**
|
|
2040
|
+
* Authorized environment delivery and its parent pack identity.
|
|
2041
|
+
*
|
|
2042
|
+
* Verify downloaded bytes against ``download_url_sha256``, not the parent
|
|
2043
|
+
* ``pack_sha256``. Only tasks authorized for this delivery are included.
|
|
2044
|
+
*/
|
|
2045
|
+
type PackFetchResponse = {
|
|
2046
|
+
/**
|
|
2047
|
+
* Content-addressed parent pack identity.
|
|
2048
|
+
*/
|
|
2049
|
+
pack_sha256: string;
|
|
2050
|
+
/**
|
|
2051
|
+
* Time-limited URL for the authorized archive.
|
|
2052
|
+
*/
|
|
2053
|
+
download_url: string;
|
|
2054
|
+
download_url_expires_at: string;
|
|
2055
|
+
/**
|
|
2056
|
+
* SHA-256 of the delivered archive bytes.
|
|
2057
|
+
*/
|
|
2058
|
+
download_url_sha256: string;
|
|
2059
|
+
/**
|
|
2060
|
+
* Byte size of the delivered archive.
|
|
2061
|
+
*/
|
|
2062
|
+
download_url_size_bytes: number;
|
|
2063
|
+
/**
|
|
2064
|
+
* Derivative bytes are not covered by the parent artifact signature.
|
|
2065
|
+
*/
|
|
2066
|
+
artifact_signature?: null;
|
|
2067
|
+
delivery_scope?: "qualifying";
|
|
2068
|
+
/**
|
|
2069
|
+
* Exact task roster authorized in this delivery.
|
|
2070
|
+
*/
|
|
2071
|
+
delivery_task_ids: Array<(string)>;
|
|
2072
|
+
contract_version: string;
|
|
2073
|
+
runtime_version: string;
|
|
2074
|
+
tool_contract_version: string;
|
|
2075
|
+
verifier_version: string;
|
|
2076
|
+
result_schema_version: string;
|
|
2077
|
+
catalog_epoch: string;
|
|
2078
|
+
catalog_sha256: string;
|
|
2079
|
+
search_index_epoch: (string | null);
|
|
2080
|
+
search_index_sha256: (string | null);
|
|
2081
|
+
task_count: number;
|
|
2082
|
+
family_counts: {
|
|
2083
|
+
[key: string]: (number);
|
|
2084
|
+
};
|
|
2085
|
+
};
|
|
1927
2086
|
type PendingEvaluation = {
|
|
1928
2087
|
/**
|
|
1929
2088
|
* Unique work item identifier
|
|
@@ -2291,6 +2450,53 @@ type RaceNotFoundError = {
|
|
|
2291
2450
|
*/
|
|
2292
2451
|
error_code?: "RACE_NOT_FOUND";
|
|
2293
2452
|
};
|
|
2453
|
+
/**
|
|
2454
|
+
* Environment delivery scoped to the caller's active assigned work.
|
|
2455
|
+
*
|
|
2456
|
+
* Verify downloaded bytes against ``download_url_sha256``. The parent
|
|
2457
|
+
* ``pack_sha256`` identifies the environment against which results are bound.
|
|
2458
|
+
*/
|
|
2459
|
+
type RacePackFetchResponse = {
|
|
2460
|
+
/**
|
|
2461
|
+
* Evaluation group containing the assigned work.
|
|
2462
|
+
*/
|
|
2463
|
+
race_id: string;
|
|
2464
|
+
/**
|
|
2465
|
+
* Content-addressed parent pack identity.
|
|
2466
|
+
*/
|
|
2467
|
+
pack_sha256: string;
|
|
2468
|
+
/**
|
|
2469
|
+
* Time-limited URL for the assigned-work archive.
|
|
2470
|
+
*/
|
|
2471
|
+
download_url: string;
|
|
2472
|
+
download_url_expires_at: string;
|
|
2473
|
+
/**
|
|
2474
|
+
* SHA-256 of the delivered archive bytes.
|
|
2475
|
+
*/
|
|
2476
|
+
download_url_sha256: string;
|
|
2477
|
+
/**
|
|
2478
|
+
* Byte size of the delivered archive.
|
|
2479
|
+
*/
|
|
2480
|
+
download_url_size_bytes: number;
|
|
2481
|
+
delivery_scope?: "race";
|
|
2482
|
+
/**
|
|
2483
|
+
* Exact task roster authorized in this delivery.
|
|
2484
|
+
*/
|
|
2485
|
+
delivery_task_ids: Array<(string)>;
|
|
2486
|
+
contract_version: string;
|
|
2487
|
+
runtime_version: string;
|
|
2488
|
+
tool_contract_version: string;
|
|
2489
|
+
verifier_version: string;
|
|
2490
|
+
result_schema_version: string;
|
|
2491
|
+
catalog_epoch: string;
|
|
2492
|
+
catalog_sha256: string;
|
|
2493
|
+
search_index_epoch: (string | null);
|
|
2494
|
+
search_index_sha256: (string | null);
|
|
2495
|
+
task_count: number;
|
|
2496
|
+
family_counts: {
|
|
2497
|
+
[key: string]: (number);
|
|
2498
|
+
};
|
|
2499
|
+
};
|
|
2294
2500
|
type RacePublic = {
|
|
2295
2501
|
/**
|
|
2296
2502
|
* Race ID
|
|
@@ -2904,6 +3110,30 @@ type SubmitAgentResponse = {
|
|
|
2904
3110
|
*/
|
|
2905
3111
|
message?: string;
|
|
2906
3112
|
};
|
|
3113
|
+
/**
|
|
3114
|
+
* Submit between 1 and 500 episode results in a single request.
|
|
3115
|
+
*/
|
|
3116
|
+
type SubmitEpisodeResultsRequest = {
|
|
3117
|
+
/**
|
|
3118
|
+
* Non-empty list of episode outcomes. Split more than 500 results into multiple requests.
|
|
3119
|
+
*/
|
|
3120
|
+
results: Array<EpisodeResultEntry>;
|
|
3121
|
+
};
|
|
3122
|
+
/**
|
|
3123
|
+
* Acknowledgement for a processed batch; inspect every per-item status.
|
|
3124
|
+
*
|
|
3125
|
+
* HTTP 200 does not mean all items were accepted. Request-level validation
|
|
3126
|
+
* and authorization failures may instead return a non-200 response.
|
|
3127
|
+
*/
|
|
3128
|
+
type SubmitEpisodeResultsResponse = {
|
|
3129
|
+
results: Array<EpisodeResultSubmission>;
|
|
3130
|
+
/**
|
|
3131
|
+
* Per-status count summary — quick health check for callers batching hundreds at a time.
|
|
3132
|
+
*/
|
|
3133
|
+
counts: {
|
|
3134
|
+
[key: string]: (number);
|
|
3135
|
+
};
|
|
3136
|
+
};
|
|
2907
3137
|
type SuiteNotFoundError = {
|
|
2908
3138
|
/**
|
|
2909
3139
|
* Error message describing what went wrong
|
|
@@ -4168,6 +4398,8 @@ type ClearMinerCooldownData = {
|
|
|
4168
4398
|
};
|
|
4169
4399
|
type ClearMinerCooldownResponse = (ClearCooldownResponse);
|
|
4170
4400
|
type ClearMinerCooldownError = (HTTPValidationError);
|
|
4401
|
+
type ClearAllMinerCooldownsResponse = (ClearAllCooldownsResponse);
|
|
4402
|
+
type ClearAllMinerCooldownsError = unknown;
|
|
4171
4403
|
type ListMinersData = {
|
|
4172
4404
|
query?: {
|
|
4173
4405
|
/**
|
|
@@ -4443,6 +4675,36 @@ type PostValidatorResumeData = {
|
|
|
4443
4675
|
};
|
|
4444
4676
|
type PostValidatorResumeResponse = (ValidatorPauseStatus);
|
|
4445
4677
|
type PostValidatorResumeError = (HTTPValidationError);
|
|
4678
|
+
type GetPackData = {
|
|
4679
|
+
path: {
|
|
4680
|
+
/**
|
|
4681
|
+
* Content hash of the sealed pack.
|
|
4682
|
+
*/
|
|
4683
|
+
pack_sha256: string;
|
|
4684
|
+
};
|
|
4685
|
+
};
|
|
4686
|
+
type GetPackResponse = (PackFetchResponse);
|
|
4687
|
+
type GetPackError = (EnvPackErrorResponse | HTTPValidationError);
|
|
4688
|
+
type GetRacePackData = {
|
|
4689
|
+
path: {
|
|
4690
|
+
/**
|
|
4691
|
+
* Identifier of the evaluation group containing the assigned work.
|
|
4692
|
+
*/
|
|
4693
|
+
race_id: string;
|
|
4694
|
+
};
|
|
4695
|
+
};
|
|
4696
|
+
type GetRacePackResponse = (RacePackFetchResponse);
|
|
4697
|
+
type GetRacePackError = (EnvPackErrorResponse | HTTPValidationError);
|
|
4698
|
+
type PresignEpisodeArtifactData = {
|
|
4699
|
+
body: EpisodeArtifactPresignRequest;
|
|
4700
|
+
};
|
|
4701
|
+
type PresignEpisodeArtifactResponse = (EpisodeArtifactPresignResponse);
|
|
4702
|
+
type PresignEpisodeArtifactError = (EnvPackErrorResponse | HTTPValidationError);
|
|
4703
|
+
type SubmitEpisodeResultsData = {
|
|
4704
|
+
body: SubmitEpisodeResultsRequest;
|
|
4705
|
+
};
|
|
4706
|
+
type SubmitEpisodeResultsResponse2 = (SubmitEpisodeResultsResponse);
|
|
4707
|
+
type SubmitEpisodeResultsError = (EnvPackErrorResponse | HTTPValidationError);
|
|
4446
4708
|
type ApiProblemsData = {
|
|
4447
4709
|
headers?: {
|
|
4448
4710
|
'X-Demo-Auth'?: (string | null);
|
|
@@ -4911,6 +5173,11 @@ declare const getReaperStats: <ThrowOnError extends boolean = false>(options?: O
|
|
|
4911
5173
|
* Clear the submission cooldown for a miner.
|
|
4912
5174
|
*/
|
|
4913
5175
|
declare const clearMinerCooldown: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<ClearMinerCooldownData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ClearCooldownResponse, HTTPValidationError, ThrowOnError>;
|
|
5176
|
+
/**
|
|
5177
|
+
* Clear all miner cooldowns
|
|
5178
|
+
* Delete every active miner submission cooldown in one call. Returns the number of cooldowns cleared. Idempotent.
|
|
5179
|
+
*/
|
|
5180
|
+
declare const clearAllMinerCooldowns: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ClearAllCooldownsResponse, unknown, ThrowOnError>;
|
|
4914
5181
|
/**
|
|
4915
5182
|
* List miners with ban status and agent count
|
|
4916
5183
|
* List all miners with their ban status, agent count, and last submission time.
|
|
@@ -5006,6 +5273,26 @@ declare const postValidatorPause: <ThrowOnError extends boolean = false>(options
|
|
|
5006
5273
|
* Resume validator claims (release the andon cord)
|
|
5007
5274
|
*/
|
|
5008
5275
|
declare const postValidatorResume: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<PostValidatorResumeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ValidatorPauseStatus, HTTPValidationError, ThrowOnError>;
|
|
5276
|
+
/**
|
|
5277
|
+
* Get an authorized environment pack download
|
|
5278
|
+
* Return a time-limited download URL and version metadata. Verify the delivered bytes against download_url_sha256; pack_sha256 identifies the parent pack.
|
|
5279
|
+
*/
|
|
5280
|
+
declare const getPack: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetPackData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PackFetchResponse, GetPackError, ThrowOnError>;
|
|
5281
|
+
/**
|
|
5282
|
+
* Get an environment download for assigned work
|
|
5283
|
+
* Return a time-limited download for the selected tasks. Requires active assigned work. Verify the delivered bytes against download_url_sha256.
|
|
5284
|
+
*/
|
|
5285
|
+
declare const getRacePack: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetRacePackData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RacePackFetchResponse, GetRacePackError, ThrowOnError>;
|
|
5286
|
+
/**
|
|
5287
|
+
* Get an upload URL for an environment episode artifact
|
|
5288
|
+
* Return a content-addressed upload target for an evaluation owned by the caller.
|
|
5289
|
+
*/
|
|
5290
|
+
declare const presignEpisodeArtifact: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<PresignEpisodeArtifactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EpisodeArtifactPresignResponse, PresignEpisodeArtifactError, ThrowOnError>;
|
|
5291
|
+
/**
|
|
5292
|
+
* Submit environment episode results
|
|
5293
|
+
* Submit up to 500 episode results for evaluations owned by the caller. HTTP 200 is a batch acknowledgement: inspect each item's status for acceptance (201), an already-recorded task (409), or rejection (404/422).
|
|
5294
|
+
*/
|
|
5295
|
+
declare const submitEpisodeResults: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<SubmitEpisodeResultsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SubmitEpisodeResultsResponse, SubmitEpisodeResultsError, ThrowOnError>;
|
|
5009
5296
|
/**
|
|
5010
5297
|
* Api Problems
|
|
5011
5298
|
*/
|
|
@@ -5366,4 +5653,4 @@ declare class SessionAuthManager {
|
|
|
5366
5653
|
*/
|
|
5367
5654
|
declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
|
|
5368
5655
|
|
|
5369
|
-
export { type ActivateSuiteData, type ActivateSuiteError, type ActivateSuiteResponse, type ActivateSuiteResponse2, type AdminAgentCodeResponse, type AdminAgentVersionEntry, type AdminAgentVersionsResponse, type AdminEvaluationRunEntry, type AdminEvaluationRunsResponse, type AdminMinerEntry, type AdminMinersResponse, type AdminValidatorEntry, type AdminValidatorsResponse, type AdmissionReason, type AdmissionStatus, type AgentLatestVersion, type AgentNotFoundError, type AgentPublic, type AgentVersionHistoryEntry, type AgentVersionNotFoundError, type AgentVersionProblemsResponse, type AgentVersionPublic, type AgentVersionScoreEntry, type AgentVersionState, type AgentVersionStatus, type AgentVersionVariance, type AgentVersionVarianceResponse, type AlreadyInvalidatedError, type ApiProblemsData, type ApiProblemsError, type ApiProblemsResponse, type ApiRunData, type ApiRunError, type ApiRunResponse, type ArtifactDownloadRequest, type ArtifactDownloadResponse, type ArtifactNotFoundError, type ArtifactNotReleasedError, type ArtifactReleaseState, type ArtifactType, type AtCapacityError, type AuditEventEntry, type AuditEventsResponse, type BanMinerData, type BanMinerError, type BanMinerResponse, type BanRequest, type BanResponse, type BanValidatorData, type BanValidatorError, type BanValidatorResponse, type BittensorAuthConfig, type Body_submit_agent, type CachedSession, type CancelAgentVersionData, type CancelAgentVersionError, type CancelAgentVersionResponse, type CancelRequest, type CancelResponse, type ChallengeRequest, type ChallengeResponse, type CheckSummary, type ChutesAuthStatusResponse, type ClaimWorkData, type ClaimWorkError, type ClaimWorkResponse, type ClaimWorkResponse2, type ClearCooldownResponse, type ClearMinerCooldownData, type ClearMinerCooldownError, type ClearMinerCooldownResponse, type ClearRaceSelectionError, type ClearRaceSelectionResponse, type CloseQualifyingError, type CloseQualifyingResponse, type CloseQualifyingResponse2, type CodeAnalysisError, type CompleteRunData, type CompleteRunError, type CompleteRunRequest, type CompleteRunResponse, type CompleteRunResponse2, type CooldownActiveError, type CreateSessionEndpointData, type CreateSessionEndpointError, type CreateSessionEndpointResponse, type CreateSuiteData, type CreateSuiteError, type CreateSuiteRequest, type CreateSuiteResponse, type CreateSuiteResponse2, type CurrentRacesResponse, type DeepHealthCheckError, type DeepHealthCheckResponse, type DeleteInferenceCredentialData, type DeleteInferenceCredentialError, type DeleteInferenceCredentialResponse, type DiscardAgentVersionData, type DiscardAgentVersionError, type DiscardAgentVersionResponse, type DiscardRequest, type DiscardResponse, type EliminateAgentVersionData, type EliminateAgentVersionError, type EliminateAgentVersionResponse, type EliminateRequest, type EliminateResponse, type EpochStandings, type ErrorCategory, type EvalRunNotFoundError, type EvaluationExecutionRead, type EvaluationItemRead, type EvaluationItemsRead, type EvaluationPhase, type EvaluationRunDetail, type EvaluationRunPublic, type EvaluationRunStatus, type EvaluationRunStatusPublic, type ExchangeChutesCodeData, type ExchangeChutesCodeError, type ExchangeChutesCodeRequest, type ExchangeChutesCodeResponse, type ExchangeChutesCodeResponse2, type FileTooLargeError, type GeneratedEvaluationResultRead, type GetAgentVersionCodeData, type GetAgentVersionCodeError, type GetAgentVersionCodeResponse, type GetAgentVersionData, type GetAgentVersionError, type GetAgentVersionProblemsData, type GetAgentVersionProblemsError, type GetAgentVersionProblemsResponse, type GetAgentVersionResponse, type GetAgentVersionRunsData, type GetAgentVersionRunsError, type GetAgentVersionRunsResponse, type GetAgentVersionStatusData, type GetAgentVersionStatusError, type GetAgentVersionStatusResponse, type GetAgentVersionVarianceData, type GetAgentVersionVarianceError, type GetAgentVersionVarianceResponse, type GetArtifactDownloadUrlData, type GetArtifactDownloadUrlError, type GetArtifactDownloadUrlResponse, type GetAuditEventsData, type GetAuditEventsError, type GetAuditEventsResponse, type GetChutesAuthStatusError, type GetChutesAuthStatusResponse, type GetCurrentRaceError, type GetCurrentRaceResponse, type GetCurrentRacesError, type GetCurrentRacesResponse, type GetCurrentSuiteError, type GetCurrentSuiteResponse, type GetEvaluationRunData, type GetEvaluationRunError, type GetEvaluationRunResponse, type GetInferenceAuthStatusOneData, type GetInferenceAuthStatusOneError, type GetInferenceAuthStatusOneResponse, type GetInferenceModelsData, type GetInferenceModelsError, type GetInferenceModelsResponse, type GetLeaderboardData, type GetLeaderboardError, type GetLeaderboardResponse, type GetOwnedAgentVersionStatusData, type GetOwnedAgentVersionStatusError, type GetOwnedAgentVersionStatusResponse, type GetPendingEvaluationsData, type GetPendingEvaluationsError, type GetPendingEvaluationsResponse, type GetRaceDetailData, type GetRaceDetailError, type GetRaceDetailResponse, type GetRaceDiagnosticsData, type GetRaceDiagnosticsError, type GetRaceDiagnosticsResponse, type GetRaceHistoryData, type GetRaceHistoryError, type GetRaceHistoryResponse, type GetRaceValidatorVarianceData, type GetRaceValidatorVarianceError, type GetRaceValidatorVarianceResponse, type GetReaperStatsError, type GetReaperStatsResponse, type GetRunProblemsData, type GetRunProblemsError, type GetRunProblemsResponse, type GetRunningEvaluationsError, type GetRunningEvaluationsResponse, type GetSubmissionPauseError, type GetSubmissionPauseResponse, type GetSuiteProblemsData, type GetSuiteProblemsError, type GetSuiteProblemsResponse, type GetTopAgentError, type GetTopAgentResponse, type GetTopHistoryData, type GetTopHistoryError, type GetTopHistoryResponse, type GetTopMinerPayoutError, type GetTopMinerPayoutResponse, type GetTrajectoryHistoryError, type GetTrajectoryHistoryResponse, type GetValidatorFailuresData, type GetValidatorFailuresError, type GetValidatorFailuresResponse, type GetValidatorPauseError, type GetValidatorPauseResponse, type GetValidatorResourceSamplesData, type GetValidatorResourceSamplesError, type GetValidatorResourceSamplesResponse, type GetValidatorScoresData, type GetValidatorScoresError, type GetValidatorScoresResponse, type GetValidatorsError, type GetValidatorsResponse, type GetWeightSaltError, type GetWeightSaltResponse, type HTTPValidationError, type HealthCheckError, type HealthCheckResponse, type HeartbeatData, type HeartbeatError, type HeartbeatRequest, type HeartbeatResponse, type HeartbeatResponse2, type InferenceAuthListResponse, type InferenceAuthStatusResponse, type InferenceModelsResponse, type InferenceTokenGrant, type InvalidAgentNameError, type InvalidArtifactTypeError, type InvalidFileError, type InvalidProblemIdError, type InvalidateEvaluationRunData, type InvalidateEvaluationRunError, type InvalidateEvaluationRunResponse, type InvalidateRunRequest, type JoinWaitlistData, type JoinWaitlistError, type JoinWaitlistResponse, type LeaderboardEntry, type LeaderboardResponse, type LeaseExpiredError, type ListAgentVersions1Data, type ListAgentVersions1Error, type ListAgentVersions1Response, type ListAgentVersionsData, type ListAgentVersionsError, type ListAgentVersionsResponse, type ListEvaluationRunsData, type ListEvaluationRunsError, type ListEvaluationRunsResponse, type ListInferenceAuthError, type ListInferenceAuthResponse, type ListMinerAgentsError, type ListMinerAgentsResponse, type ListMinersData, type ListMinersError, type ListMinersResponse, type ListSuitesError, type ListSuitesResponse, type ListValidatorsData, type ListValidatorsError, type ListValidatorsResponse, type LogoutData, type LogoutError, type LogoutResponse, type LogoutResponse2, type MinerAgentsResponse, type MinerNotFoundError, type MinerRaceSelectionRequest, type MissingParameterError, type MissingScoreError, type NoActiveSuiteError, type NoSelectionError, type NotRunOwnerError, type NotVersionOwnerError, type OroErrorCode, type PendingEvaluation, type PendingEvaluationSummary, type PendingEvaluationsResponse, type PinnedFinisher, type PooledWindowRace, type PostSubmissionPauseData, type PostSubmissionPauseError, type PostSubmissionPauseResponse, type PostSubmissionResumeData, type PostSubmissionResumeError, type PostSubmissionResumeResponse, type PostValidatorPauseData, type PostValidatorPauseError, type PostValidatorPauseResponse, type PostValidatorResumeData, type PostValidatorResumeError, type PostValidatorResumeResponse, type PresignUploadData, type PresignUploadError, type PresignUploadRequest, type PresignUploadResponse, type PresignUploadResponse2, type ProblemNotFoundError, type ProblemProgressEntry, type ProblemProgressUpdate, type ProblemPublic, type ProblemStatus, type ProgressUpdateRequest, type ProgressUpdateResponse, type QualifyingTaskRead, type RaceCurrentResponse, type RaceDetailResponse, type RaceDiagnosticsResponse, type RaceHistoryResponse, type RaceInFlightError, type RaceLockedError, type RaceNotFoundError, type RacePublic, type RaceQualifierEntry, type RaceQualifierPublic, type RaceSummary, type RaceValidatorVarianceResponse, type RaceWorkItemEntry, type RankedInferenceModel, type RankedInferenceModelsResponse, type RateLimitExceededError, type ReaperStatsResponse, type ReevaluateAgentVersionData, type ReevaluateAgentVersionError, type ReevaluateAgentVersionResponse, type ReevaluateRequest, type ReevaluateResponse, type ReinstateAgentVersionData, type ReinstateAgentVersionError, type ReinstateAgentVersionResponse, type ReinstateEliminationData, type ReinstateEliminationError, type ReinstateEliminationRequest, type ReinstateEliminationResponse, type ReinstateEliminationResponse2, type ReinstateRequest, type RequestChallengeData, type RequestChallengeError, type RequestChallengeResponse, type RetryConfig, type RetryContext, type RewardSummary, type RunAlreadyCompleteError, type RunProblemsResponse, type RunningEvaluation, type SafeEnvironmentMetadata, type ScoreBelowThresholdError, type SessionAuthConfig, SessionAuthManager, type SessionInfo, type SessionRequest, type SessionResponse, type SetDefaultInferenceProviderData, type SetDefaultInferenceProviderError, type SetDefaultInferenceProviderResponse, type SetDefaultProviderRequest, type SetRaceSelectionData, type SetRaceSelectionError, type SetRaceSelectionResponse, type SetTopAgentData, type SetTopAgentError, type SetTopAgentResponse, type SetTopRequest, type SetTopResponse, type SimilarityCheckUnavailableError, type SpreadBucket, type StoreChutesTokenData, type StoreChutesTokenError, type StoreChutesTokenRequest, type StoreChutesTokenResponse, type StoreInferenceCredentialData, type StoreInferenceCredentialError, type StoreInferenceCredentialRequest, type StoreInferenceCredentialResponse, type SubmissionPauseRequest, type SubmissionPauseStatus, type SubmissionsPausedError, type SubmitAgentData, type SubmitAgentError, type SubmitAgentResponse, type SubmitAgentResponse2, type SuiteNotFoundError, type SuitePublic, type SuiteWithProblemsResponse, type TerminalStatus, type TopAgentResponse, type TopHistoryEntry, type TopHistoryResponse, type TopMinerPayoutResponse, type TrajectoryDay, type TrajectoryHistoryResponse, type UnbanMinerData, type UnbanMinerError, type UnbanMinerResponse, type UnbanValidatorData, type UnbanValidatorError, type UnbanValidatorResponse, type UpdateProgressData, type UpdateProgressError, type UpdateProgressResponse, type UpdateQualifyingDeadlineData, type UpdateQualifyingDeadlineError, type UpdateQualifyingDeadlineRequest, type UpdateQualifyingDeadlineResponse, type UpdateQualifyingDeadlineResponse2, type UpdateValidatorData, type UpdateValidatorError, type UpdateValidatorRequest, type UpdateValidatorResponse, type ValidationError, type ValidationErrorError, type ValidatorCurrentAgent, type ValidatorFailureEntry, type ValidatorFailuresResponse, type ValidatorNotFoundError, type ValidatorPauseRequest, type ValidatorPauseStatus, type ValidatorProblemResult, type ValidatorPublic, type ValidatorResourceSampleEntry, type ValidatorResourceSamplesResponse, type ValidatorResumeRequest, type ValidatorScoreSummary, type ValidatorScoresResponse, type ValidatorStatus, type ValidatorVarianceEntry, type WaitlistSignupRequest, type WaitlistSignupResponse, type WeightSaltResponse, type WorkItemStatus, activateSuite, apiProblems, apiRun, banMiner, banValidator, cancelAgentVersion, claimWork, classifyError, classifyStatus, clearMinerCooldown, clearRaceSelection, client, closeQualifying, completeRun, computeDelay, configureBittensorAuth, configurePublicClient, configureSessionAuth, createRetryFetch, createSessionEndpoint, createSuite, deepHealthCheck, deleteInferenceCredential, discardAgentVersion, eliminateAgentVersion, exchangeChutesCode, type execution_kind, generateAuthHeaders, getAgentVersion, getAgentVersionCode, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentRace, getCurrentRaces, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getInferenceAuthStatusOne, getInferenceModels, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getRaceDetail, getRaceDiagnostics, getRaceHistory, getRaceValidatorVariance, getReaperStats, getRunProblems, getRunningEvaluations, getSubmissionPause, getSuiteProblems, getTopAgent, getTopHistory, getTopMinerPayout, getTrajectoryHistory, getValidatorFailures, getValidatorPause, getValidatorResourceSamples, getValidatorScores, getValidators, getWeightSalt, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, type item_kind, joinWaitlist, listAgentVersions, listAgentVersions1, listEvaluationRuns, listInferenceAuth, listMinerAgents, listMiners, listSuites, listValidators, logout, parseRetryAfter, postSubmissionPause, postSubmissionResume, postValidatorPause, postValidatorResume, presignUpload, type provider, reevaluateAgentVersion, reinstateAgentVersion, reinstateElimination, requestChallenge, setDefaultInferenceProvider, setRaceSelection, setTopAgent, storeChutesToken, storeInferenceCredential, submitAgent, unbanMiner, unbanValidator, updateProgress, updateQualifyingDeadline, updateValidator };
|
|
5656
|
+
export { type ActivateSuiteData, type ActivateSuiteError, type ActivateSuiteResponse, type ActivateSuiteResponse2, type AdminAgentCodeResponse, type AdminAgentVersionEntry, type AdminAgentVersionsResponse, type AdminEvaluationRunEntry, type AdminEvaluationRunsResponse, type AdminMinerEntry, type AdminMinersResponse, type AdminValidatorEntry, type AdminValidatorsResponse, type AdmissionReason, type AdmissionStatus, type AgentLatestVersion, type AgentNotFoundError, type AgentPublic, type AgentVersionHistoryEntry, type AgentVersionNotFoundError, type AgentVersionProblemsResponse, type AgentVersionPublic, type AgentVersionScoreEntry, type AgentVersionState, type AgentVersionStatus, type AgentVersionVariance, type AgentVersionVarianceResponse, type AlreadyInvalidatedError, type ApiProblemsData, type ApiProblemsError, type ApiProblemsResponse, type ApiRunData, type ApiRunError, type ApiRunResponse, type ArtifactDownloadRequest, type ArtifactDownloadResponse, type ArtifactNotFoundError, type ArtifactNotReleasedError, type ArtifactReleaseState, type ArtifactType, type AtCapacityError, type AuditEventEntry, type AuditEventsResponse, type BanMinerData, type BanMinerError, type BanMinerResponse, type BanRequest, type BanResponse, type BanValidatorData, type BanValidatorError, type BanValidatorResponse, type BittensorAuthConfig, type Body_submit_agent, type CachedSession, type CancelAgentVersionData, type CancelAgentVersionError, type CancelAgentVersionResponse, type CancelRequest, type CancelResponse, type ChallengeRequest, type ChallengeResponse, type CheckSummary, type ChutesAuthStatusResponse, type ClaimWorkData, type ClaimWorkError, type ClaimWorkResponse, type ClaimWorkResponse2, type ClearAllCooldownsResponse, type ClearAllMinerCooldownsError, type ClearAllMinerCooldownsResponse, type ClearCooldownResponse, type ClearMinerCooldownData, type ClearMinerCooldownError, type ClearMinerCooldownResponse, type ClearRaceSelectionError, type ClearRaceSelectionResponse, type CloseQualifyingError, type CloseQualifyingResponse, type CloseQualifyingResponse2, type CodeAnalysisError, type CompleteRunData, type CompleteRunError, type CompleteRunRequest, type CompleteRunResponse, type CompleteRunResponse2, type CooldownActiveError, type CreateSessionEndpointData, type CreateSessionEndpointError, type CreateSessionEndpointResponse, type CreateSuiteData, type CreateSuiteError, type CreateSuiteRequest, type CreateSuiteResponse, type CreateSuiteResponse2, type CurrentRacesResponse, type DeepHealthCheckError, type DeepHealthCheckResponse, type DeleteInferenceCredentialData, type DeleteInferenceCredentialError, type DeleteInferenceCredentialResponse, type DiscardAgentVersionData, type DiscardAgentVersionError, type DiscardAgentVersionResponse, type DiscardRequest, type DiscardResponse, type EliminateAgentVersionData, type EliminateAgentVersionError, type EliminateAgentVersionResponse, type EliminateRequest, type EliminateResponse, type EnvPackErrorResponse, type EpisodeArtifactPresignRequest, type EpisodeArtifactPresignResponse, type EpisodeResultEntry, type EpisodeResultSubmission, type EpochStandings, type ErrorCategory, type EvalRunNotFoundError, type EvaluationExecutionRead, type EvaluationItemRead, type EvaluationItemsRead, type EvaluationPhase, type EvaluationRunDetail, type EvaluationRunPublic, type EvaluationRunStatus, type EvaluationRunStatusPublic, type ExchangeChutesCodeData, type ExchangeChutesCodeError, type ExchangeChutesCodeRequest, type ExchangeChutesCodeResponse, type ExchangeChutesCodeResponse2, type FileTooLargeError, type GeneratedEvaluationResultRead, type GetAgentVersionCodeData, type GetAgentVersionCodeError, type GetAgentVersionCodeResponse, type GetAgentVersionData, type GetAgentVersionError, type GetAgentVersionProblemsData, type GetAgentVersionProblemsError, type GetAgentVersionProblemsResponse, type GetAgentVersionResponse, type GetAgentVersionRunsData, type GetAgentVersionRunsError, type GetAgentVersionRunsResponse, type GetAgentVersionStatusData, type GetAgentVersionStatusError, type GetAgentVersionStatusResponse, type GetAgentVersionVarianceData, type GetAgentVersionVarianceError, type GetAgentVersionVarianceResponse, type GetArtifactDownloadUrlData, type GetArtifactDownloadUrlError, type GetArtifactDownloadUrlResponse, type GetAuditEventsData, type GetAuditEventsError, type GetAuditEventsResponse, type GetChutesAuthStatusError, type GetChutesAuthStatusResponse, type GetCurrentRaceError, type GetCurrentRaceResponse, type GetCurrentRacesError, type GetCurrentRacesResponse, type GetCurrentSuiteError, type GetCurrentSuiteResponse, type GetEvaluationRunData, type GetEvaluationRunError, type GetEvaluationRunResponse, type GetInferenceAuthStatusOneData, type GetInferenceAuthStatusOneError, type GetInferenceAuthStatusOneResponse, type GetInferenceModelsData, type GetInferenceModelsError, type GetInferenceModelsResponse, type GetLeaderboardData, type GetLeaderboardError, type GetLeaderboardResponse, type GetOwnedAgentVersionStatusData, type GetOwnedAgentVersionStatusError, type GetOwnedAgentVersionStatusResponse, type GetPackData, type GetPackError, type GetPackResponse, type GetPendingEvaluationsData, type GetPendingEvaluationsError, type GetPendingEvaluationsResponse, type GetRaceDetailData, type GetRaceDetailError, type GetRaceDetailResponse, type GetRaceDiagnosticsData, type GetRaceDiagnosticsError, type GetRaceDiagnosticsResponse, type GetRaceHistoryData, type GetRaceHistoryError, type GetRaceHistoryResponse, type GetRacePackData, type GetRacePackError, type GetRacePackResponse, type GetRaceValidatorVarianceData, type GetRaceValidatorVarianceError, type GetRaceValidatorVarianceResponse, type GetReaperStatsError, type GetReaperStatsResponse, type GetRunProblemsData, type GetRunProblemsError, type GetRunProblemsResponse, type GetRunningEvaluationsError, type GetRunningEvaluationsResponse, type GetSubmissionPauseError, type GetSubmissionPauseResponse, type GetSuiteProblemsData, type GetSuiteProblemsError, type GetSuiteProblemsResponse, type GetTopAgentError, type GetTopAgentResponse, type GetTopHistoryData, type GetTopHistoryError, type GetTopHistoryResponse, type GetTopMinerPayoutError, type GetTopMinerPayoutResponse, type GetTrajectoryHistoryError, type GetTrajectoryHistoryResponse, type GetValidatorFailuresData, type GetValidatorFailuresError, type GetValidatorFailuresResponse, type GetValidatorPauseError, type GetValidatorPauseResponse, type GetValidatorResourceSamplesData, type GetValidatorResourceSamplesError, type GetValidatorResourceSamplesResponse, type GetValidatorScoresData, type GetValidatorScoresError, type GetValidatorScoresResponse, type GetValidatorsError, type GetValidatorsResponse, type GetWeightSaltError, type GetWeightSaltResponse, type HTTPValidationError, type HealthCheckError, type HealthCheckResponse, type HeartbeatData, type HeartbeatError, type HeartbeatRequest, type HeartbeatResponse, type HeartbeatResponse2, type InferenceAuthListResponse, type InferenceAuthStatusResponse, type InferenceModelsResponse, type InferenceTokenGrant, type InvalidAgentNameError, type InvalidArtifactTypeError, type InvalidFileError, type InvalidProblemIdError, type InvalidateEvaluationRunData, type InvalidateEvaluationRunError, type InvalidateEvaluationRunResponse, type InvalidateRunRequest, type JoinWaitlistData, type JoinWaitlistError, type JoinWaitlistResponse, type LeaderboardEntry, type LeaderboardResponse, type LeaseExpiredError, type ListAgentVersions1Data, type ListAgentVersions1Error, type ListAgentVersions1Response, type ListAgentVersionsData, type ListAgentVersionsError, type ListAgentVersionsResponse, type ListEvaluationRunsData, type ListEvaluationRunsError, type ListEvaluationRunsResponse, type ListInferenceAuthError, type ListInferenceAuthResponse, type ListMinerAgentsError, type ListMinerAgentsResponse, type ListMinersData, type ListMinersError, type ListMinersResponse, type ListSuitesError, type ListSuitesResponse, type ListValidatorsData, type ListValidatorsError, type ListValidatorsResponse, type LogoutData, type LogoutError, type LogoutResponse, type LogoutResponse2, type MinerAgentsResponse, type MinerNotFoundError, type MinerRaceSelectionRequest, type MissingParameterError, type MissingScoreError, type NoActiveSuiteError, type NoSelectionError, type NotRunOwnerError, type NotVersionOwnerError, type OroErrorCode, type PackFetchResponse, type PendingEvaluation, type PendingEvaluationSummary, type PendingEvaluationsResponse, type PinnedFinisher, type PooledWindowRace, type PostSubmissionPauseData, type PostSubmissionPauseError, type PostSubmissionPauseResponse, type PostSubmissionResumeData, type PostSubmissionResumeError, type PostSubmissionResumeResponse, type PostValidatorPauseData, type PostValidatorPauseError, type PostValidatorPauseResponse, type PostValidatorResumeData, type PostValidatorResumeError, type PostValidatorResumeResponse, type PresignEpisodeArtifactData, type PresignEpisodeArtifactError, type PresignEpisodeArtifactResponse, type PresignUploadData, type PresignUploadError, type PresignUploadRequest, type PresignUploadResponse, type PresignUploadResponse2, type ProblemNotFoundError, type ProblemProgressEntry, type ProblemProgressUpdate, type ProblemPublic, type ProblemStatus, type ProgressUpdateRequest, type ProgressUpdateResponse, type QualifyingTaskRead, type RaceCurrentResponse, type RaceDetailResponse, type RaceDiagnosticsResponse, type RaceHistoryResponse, type RaceInFlightError, type RaceLockedError, type RaceNotFoundError, type RacePackFetchResponse, type RacePublic, type RaceQualifierEntry, type RaceQualifierPublic, type RaceSummary, type RaceValidatorVarianceResponse, type RaceWorkItemEntry, type RankedInferenceModel, type RankedInferenceModelsResponse, type RateLimitExceededError, type ReaperStatsResponse, type ReevaluateAgentVersionData, type ReevaluateAgentVersionError, type ReevaluateAgentVersionResponse, type ReevaluateRequest, type ReevaluateResponse, type ReinstateAgentVersionData, type ReinstateAgentVersionError, type ReinstateAgentVersionResponse, type ReinstateEliminationData, type ReinstateEliminationError, type ReinstateEliminationRequest, type ReinstateEliminationResponse, type ReinstateEliminationResponse2, type ReinstateRequest, type RequestChallengeData, type RequestChallengeError, type RequestChallengeResponse, type RetryConfig, type RetryContext, type RewardSummary, type RunAlreadyCompleteError, type RunProblemsResponse, type RunningEvaluation, type SafeEnvironmentMetadata, type ScoreBelowThresholdError, type SessionAuthConfig, SessionAuthManager, type SessionInfo, type SessionRequest, type SessionResponse, type SetDefaultInferenceProviderData, type SetDefaultInferenceProviderError, type SetDefaultInferenceProviderResponse, type SetDefaultProviderRequest, type SetRaceSelectionData, type SetRaceSelectionError, type SetRaceSelectionResponse, type SetTopAgentData, type SetTopAgentError, type SetTopAgentResponse, type SetTopRequest, type SetTopResponse, type SimilarityCheckUnavailableError, type SpreadBucket, type StoreChutesTokenData, type StoreChutesTokenError, type StoreChutesTokenRequest, type StoreChutesTokenResponse, type StoreInferenceCredentialData, type StoreInferenceCredentialError, type StoreInferenceCredentialRequest, type StoreInferenceCredentialResponse, type SubmissionPauseRequest, type SubmissionPauseStatus, type SubmissionsPausedError, type SubmitAgentData, type SubmitAgentError, type SubmitAgentResponse, type SubmitAgentResponse2, type SubmitEpisodeResultsData, type SubmitEpisodeResultsError, type SubmitEpisodeResultsRequest, type SubmitEpisodeResultsResponse, type SubmitEpisodeResultsResponse2, type SuiteNotFoundError, type SuitePublic, type SuiteWithProblemsResponse, type TerminalStatus, type TopAgentResponse, type TopHistoryEntry, type TopHistoryResponse, type TopMinerPayoutResponse, type TrajectoryDay, type TrajectoryHistoryResponse, type UnbanMinerData, type UnbanMinerError, type UnbanMinerResponse, type UnbanValidatorData, type UnbanValidatorError, type UnbanValidatorResponse, type UpdateProgressData, type UpdateProgressError, type UpdateProgressResponse, type UpdateQualifyingDeadlineData, type UpdateQualifyingDeadlineError, type UpdateQualifyingDeadlineRequest, type UpdateQualifyingDeadlineResponse, type UpdateQualifyingDeadlineResponse2, type UpdateValidatorData, type UpdateValidatorError, type UpdateValidatorRequest, type UpdateValidatorResponse, type ValidationError, type ValidationErrorError, type ValidatorCurrentAgent, type ValidatorFailureEntry, type ValidatorFailuresResponse, type ValidatorNotFoundError, type ValidatorPauseRequest, type ValidatorPauseStatus, type ValidatorProblemResult, type ValidatorPublic, type ValidatorResourceSampleEntry, type ValidatorResourceSamplesResponse, type ValidatorResumeRequest, type ValidatorScoreSummary, type ValidatorScoresResponse, type ValidatorStatus, type ValidatorVarianceEntry, type WaitlistSignupRequest, type WaitlistSignupResponse, type WeightSaltResponse, type WorkItemStatus, activateSuite, apiProblems, apiRun, banMiner, banValidator, cancelAgentVersion, claimWork, classifyError, classifyStatus, clearAllMinerCooldowns, clearMinerCooldown, clearRaceSelection, client, closeQualifying, completeRun, computeDelay, configureBittensorAuth, configurePublicClient, configureSessionAuth, createRetryFetch, createSessionEndpoint, createSuite, deepHealthCheck, deleteInferenceCredential, discardAgentVersion, eliminateAgentVersion, exchangeChutesCode, type execution_kind, generateAuthHeaders, getAgentVersion, getAgentVersionCode, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentRace, getCurrentRaces, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getInferenceAuthStatusOne, getInferenceModels, getLeaderboard, getOwnedAgentVersionStatus, getPack, getPendingEvaluations, getRaceDetail, getRaceDiagnostics, getRaceHistory, getRacePack, getRaceValidatorVariance, getReaperStats, getRunProblems, getRunningEvaluations, getSubmissionPause, getSuiteProblems, getTopAgent, getTopHistory, getTopMinerPayout, getTrajectoryHistory, getValidatorFailures, getValidatorPause, getValidatorResourceSamples, getValidatorScores, getValidators, getWeightSalt, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, type item_kind, joinWaitlist, listAgentVersions, listAgentVersions1, listEvaluationRuns, listInferenceAuth, listMinerAgents, listMiners, listSuites, listValidators, logout, type outcome, parseRetryAfter, postSubmissionPause, postSubmissionResume, postValidatorPause, postValidatorResume, presignEpisodeArtifact, presignUpload, type provider, reevaluateAgentVersion, reinstateAgentVersion, reinstateElimination, requestChallenge, setDefaultInferenceProvider, setRaceSelection, setTopAgent, type status, storeChutesToken, storeInferenceCredential, submitAgent, submitEpisodeResults, unbanMiner, unbanValidator, updateProgress, updateQualifyingDeadline, updateValidator };
|