@oro-ai/sdk 1.0.101 → 1.0.103
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 +69 -115
- package/dist/index.d.ts +69 -115
- package/dist/index.js +20 -36
- package/dist/index.mjs +17 -31
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +28 -47
- package/src/generated/types.gen.ts +66 -113
package/dist/index.d.mts
CHANGED
|
@@ -520,6 +520,14 @@ type AgentVersionProblemsResponse = {
|
|
|
520
520
|
* Problem progress list
|
|
521
521
|
*/
|
|
522
522
|
problems: Array<ProblemProgressEntry>;
|
|
523
|
+
/**
|
|
524
|
+
* Generated task results, using the same phase visibility as legacy problems
|
|
525
|
+
*/
|
|
526
|
+
generated_results?: Array<GeneratedEvaluationResultRead>;
|
|
527
|
+
/**
|
|
528
|
+
* Safe task labels for generated qualifying evaluations
|
|
529
|
+
*/
|
|
530
|
+
qualifying_tasks?: Array<QualifyingTaskRead>;
|
|
523
531
|
};
|
|
524
532
|
type AgentVersionPublic = {
|
|
525
533
|
/**
|
|
@@ -926,15 +934,6 @@ type ChallengeResponse = {
|
|
|
926
934
|
*/
|
|
927
935
|
expires_at: number;
|
|
928
936
|
};
|
|
929
|
-
/**
|
|
930
|
-
* One named verifier check with its pass/fail result. Names come from
|
|
931
|
-
* `EpisodeResult.verdict_checks` and are safe to expose (they identify
|
|
932
|
-
* which constraint fired, not the constraint's private threshold).
|
|
933
|
-
*/
|
|
934
|
-
type CheckDetail = {
|
|
935
|
-
name: string;
|
|
936
|
-
passed: (boolean | null);
|
|
937
|
-
};
|
|
938
937
|
type CheckSummary = {
|
|
939
938
|
passed?: number;
|
|
940
939
|
failed?: number;
|
|
@@ -1244,6 +1243,7 @@ type EvaluationExecutionRead = {
|
|
|
1244
1243
|
execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
1245
1244
|
execution_contract_id?: (string | null);
|
|
1246
1245
|
environment?: (SafeEnvironmentMetadata | null);
|
|
1246
|
+
detail_released?: boolean;
|
|
1247
1247
|
};
|
|
1248
1248
|
type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
1249
1249
|
type EvaluationItemRead = {
|
|
@@ -1338,6 +1338,9 @@ type EvaluationRunDetail = {
|
|
|
1338
1338
|
score_components_summary?: ({
|
|
1339
1339
|
[key: string]: unknown;
|
|
1340
1340
|
} | null);
|
|
1341
|
+
execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
1342
|
+
execution_contract_id?: (string | null);
|
|
1343
|
+
environment?: (SafeEnvironmentMetadata | null);
|
|
1341
1344
|
};
|
|
1342
1345
|
type EvaluationRunPublic = {
|
|
1343
1346
|
/**
|
|
@@ -1552,6 +1555,13 @@ type FileTooLargeError = {
|
|
|
1552
1555
|
*/
|
|
1553
1556
|
error_code?: "FILE_TOO_LARGE";
|
|
1554
1557
|
};
|
|
1558
|
+
/**
|
|
1559
|
+
* Generated run identity and task results returned by existing agent reads.
|
|
1560
|
+
*/
|
|
1561
|
+
type GeneratedEvaluationResultRead = {
|
|
1562
|
+
identity: EvaluationExecutionRead;
|
|
1563
|
+
items: EvaluationItemsRead;
|
|
1564
|
+
};
|
|
1555
1565
|
type HeartbeatRequest = {
|
|
1556
1566
|
/**
|
|
1557
1567
|
* Docker image digests for validator stack services
|
|
@@ -2624,16 +2634,6 @@ type ReinstateRequest = {
|
|
|
2624
2634
|
*/
|
|
2625
2635
|
reason?: (string | null);
|
|
2626
2636
|
};
|
|
2627
|
-
/**
|
|
2628
|
-
* One named contribution to the paid reward. Value is the same
|
|
2629
|
-
* numeric slice the miner already earned; the name identifies the
|
|
2630
|
-
* reward source (e.g. `family_metric`, `constraint_satisfaction`). No
|
|
2631
|
-
* private weighting factors surface here.
|
|
2632
|
-
*/
|
|
2633
|
-
type RewardComponent = {
|
|
2634
|
-
name: string;
|
|
2635
|
-
value: number;
|
|
2636
|
-
};
|
|
2637
2637
|
type RewardSummary = {
|
|
2638
2638
|
component_count?: number;
|
|
2639
2639
|
};
|
|
@@ -2716,28 +2716,6 @@ type SafeEnvironmentMetadata = {
|
|
|
2716
2716
|
verifier_version: string;
|
|
2717
2717
|
result_schema_version: string;
|
|
2718
2718
|
};
|
|
2719
|
-
type SanitizedEpisodeArtifact = {
|
|
2720
|
-
episode_result_id: string;
|
|
2721
|
-
eval_run_id: string;
|
|
2722
|
-
task_id: string;
|
|
2723
|
-
family: string;
|
|
2724
|
-
outcome: string;
|
|
2725
|
-
step_count: number;
|
|
2726
|
-
trace: Array<SanitizedTraceEntry>;
|
|
2727
|
-
paid_reward?: (number | null);
|
|
2728
|
-
check_details?: Array<CheckDetail>;
|
|
2729
|
-
reward_components?: Array<RewardComponent>;
|
|
2730
|
-
};
|
|
2731
|
-
type SanitizedTraceEntry = {
|
|
2732
|
-
seq: number;
|
|
2733
|
-
turn: number;
|
|
2734
|
-
kind: 'model_action' | 'model_message' | 'observation' | 'user_message' | 'termination';
|
|
2735
|
-
actor: string;
|
|
2736
|
-
payload: {
|
|
2737
|
-
[key: string]: unknown;
|
|
2738
|
-
};
|
|
2739
|
-
};
|
|
2740
|
-
type kind = 'model_action' | 'model_message' | 'observation' | 'user_message' | 'termination';
|
|
2741
2719
|
/**
|
|
2742
2720
|
* 400 - Candidate score does not exceed the challenge threshold.
|
|
2743
2721
|
*/
|
|
@@ -2868,6 +2846,28 @@ type StoreInferenceCredentialRequest = {
|
|
|
2868
2846
|
*/
|
|
2869
2847
|
credential: string;
|
|
2870
2848
|
};
|
|
2849
|
+
type SubmissionPauseRequest = {
|
|
2850
|
+
/**
|
|
2851
|
+
* Reason for changing the submission pause
|
|
2852
|
+
*/
|
|
2853
|
+
reason: string;
|
|
2854
|
+
};
|
|
2855
|
+
type SubmissionPauseStatus = {
|
|
2856
|
+
/**
|
|
2857
|
+
* True when new miner submissions are paused
|
|
2858
|
+
*/
|
|
2859
|
+
active: boolean;
|
|
2860
|
+
};
|
|
2861
|
+
type SubmissionsPausedError = {
|
|
2862
|
+
/**
|
|
2863
|
+
* Error message describing what went wrong
|
|
2864
|
+
*/
|
|
2865
|
+
detail: string;
|
|
2866
|
+
/**
|
|
2867
|
+
* Error code for programmatic handling
|
|
2868
|
+
*/
|
|
2869
|
+
error_code?: "SUBMISSIONS_PAUSED";
|
|
2870
|
+
};
|
|
2871
2871
|
type SubmitAgentResponse = {
|
|
2872
2872
|
/**
|
|
2873
2873
|
* Unique identifier for the created agent
|
|
@@ -2898,15 +2898,6 @@ type SubmitAgentResponse = {
|
|
|
2898
2898
|
*/
|
|
2899
2899
|
message?: string;
|
|
2900
2900
|
};
|
|
2901
|
-
type SuiteExecutionRead = {
|
|
2902
|
-
suite_id: number;
|
|
2903
|
-
is_active: boolean;
|
|
2904
|
-
is_archived: boolean;
|
|
2905
|
-
execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
|
|
2906
|
-
execution_contract_id?: (string | null);
|
|
2907
|
-
environment?: (SafeEnvironmentMetadata | null);
|
|
2908
|
-
qualifying_tasks?: (Array<QualifyingTaskRead> | null);
|
|
2909
|
-
};
|
|
2910
2901
|
type SuiteNotFoundError = {
|
|
2911
2902
|
/**
|
|
2912
2903
|
* Error message describing what went wrong
|
|
@@ -3785,7 +3776,7 @@ type SubmitAgentData = {
|
|
|
3785
3776
|
body: Body_submit_agent;
|
|
3786
3777
|
};
|
|
3787
3778
|
type SubmitAgentResponse2 = (SubmitAgentResponse);
|
|
3788
|
-
type SubmitAgentError = ((InvalidAgentNameError | InvalidFileError) | FileTooLargeError | CodeAnalysisError | (CooldownActiveError | RateLimitExceededError) | (NoActiveSuiteError | SimilarityCheckUnavailableError));
|
|
3779
|
+
type SubmitAgentError = ((InvalidAgentNameError | InvalidFileError) | FileTooLargeError | CodeAnalysisError | (CooldownActiveError | RateLimitExceededError) | (NoActiveSuiteError | SimilarityCheckUnavailableError | SubmissionsPausedError));
|
|
3789
3780
|
type StoreInferenceCredentialData = {
|
|
3790
3781
|
body: StoreInferenceCredentialRequest;
|
|
3791
3782
|
path: {
|
|
@@ -4371,6 +4362,18 @@ type GetValidatorFailuresData = {
|
|
|
4371
4362
|
};
|
|
4372
4363
|
type GetValidatorFailuresResponse = (ValidatorFailuresResponse);
|
|
4373
4364
|
type GetValidatorFailuresError = (HTTPValidationError);
|
|
4365
|
+
type GetSubmissionPauseResponse = (SubmissionPauseStatus);
|
|
4366
|
+
type GetSubmissionPauseError = unknown;
|
|
4367
|
+
type PostSubmissionPauseData = {
|
|
4368
|
+
body: SubmissionPauseRequest;
|
|
4369
|
+
};
|
|
4370
|
+
type PostSubmissionPauseResponse = (SubmissionPauseStatus);
|
|
4371
|
+
type PostSubmissionPauseError = (HTTPValidationError);
|
|
4372
|
+
type PostSubmissionResumeData = {
|
|
4373
|
+
body: SubmissionPauseRequest;
|
|
4374
|
+
};
|
|
4375
|
+
type PostSubmissionResumeResponse = (SubmissionPauseStatus);
|
|
4376
|
+
type PostSubmissionResumeError = (HTTPValidationError);
|
|
4374
4377
|
type GetValidatorPauseResponse = (ValidatorPauseStatus);
|
|
4375
4378
|
type GetValidatorPauseError = unknown;
|
|
4376
4379
|
type PostValidatorPauseData = {
|
|
@@ -4383,48 +4386,6 @@ type PostValidatorResumeData = {
|
|
|
4383
4386
|
};
|
|
4384
4387
|
type PostValidatorResumeResponse = (ValidatorPauseStatus);
|
|
4385
4388
|
type PostValidatorResumeError = (HTTPValidationError);
|
|
4386
|
-
type GetCurrentSuiteV2Response = (SuiteExecutionRead);
|
|
4387
|
-
type GetCurrentSuiteV2Error = unknown;
|
|
4388
|
-
type GetSuiteV2Data = {
|
|
4389
|
-
path: {
|
|
4390
|
-
/**
|
|
4391
|
-
* Suite identifier
|
|
4392
|
-
*/
|
|
4393
|
-
suite_id: number;
|
|
4394
|
-
};
|
|
4395
|
-
};
|
|
4396
|
-
type GetSuiteV2Response = (SuiteExecutionRead);
|
|
4397
|
-
type GetSuiteV2Error = (HTTPValidationError);
|
|
4398
|
-
type GetEvaluationRunV2Data = {
|
|
4399
|
-
path: {
|
|
4400
|
-
/**
|
|
4401
|
-
* Evaluation run identifier
|
|
4402
|
-
*/
|
|
4403
|
-
run_id: string;
|
|
4404
|
-
};
|
|
4405
|
-
};
|
|
4406
|
-
type GetEvaluationRunV2Response = (EvaluationExecutionRead);
|
|
4407
|
-
type GetEvaluationRunV2Error = (HTTPValidationError);
|
|
4408
|
-
type GetEvaluationItemsV2Data = {
|
|
4409
|
-
path: {
|
|
4410
|
-
/**
|
|
4411
|
-
* Evaluation run identifier
|
|
4412
|
-
*/
|
|
4413
|
-
run_id: string;
|
|
4414
|
-
};
|
|
4415
|
-
};
|
|
4416
|
-
type GetEvaluationItemsV2Response = (EvaluationItemsRead);
|
|
4417
|
-
type GetEvaluationItemsV2Error = (HTTPValidationError);
|
|
4418
|
-
type GetEpisodeArtifactV2Data = {
|
|
4419
|
-
path: {
|
|
4420
|
-
/**
|
|
4421
|
-
* Episode result identifier
|
|
4422
|
-
*/
|
|
4423
|
-
episode_result_id: string;
|
|
4424
|
-
};
|
|
4425
|
-
};
|
|
4426
|
-
type GetEpisodeArtifactV2Response = (SanitizedEpisodeArtifact);
|
|
4427
|
-
type GetEpisodeArtifactV2Error = (HTTPValidationError);
|
|
4428
4389
|
type ApiProblemsData = {
|
|
4429
4390
|
headers?: {
|
|
4430
4391
|
'X-Demo-Auth'?: (string | null);
|
|
@@ -4956,6 +4917,19 @@ declare const getValidatorResourceSamples: <ThrowOnError extends boolean = false
|
|
|
4956
4917
|
* Returns the most recent FAILED and TIMED_OUT evaluation runs for the given validator, ordered by completed_at DESC. Powers the expandable failure-history view on the admin analytics dashboard (ORO-676).
|
|
4957
4918
|
*/
|
|
4958
4919
|
declare const getValidatorFailures: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetValidatorFailuresData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ValidatorFailuresResponse, HTTPValidationError, ThrowOnError>;
|
|
4920
|
+
/**
|
|
4921
|
+
* Get miner-submission pause state
|
|
4922
|
+
*/
|
|
4923
|
+
declare const getSubmissionPause: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SubmissionPauseStatus, unknown, ThrowOnError>;
|
|
4924
|
+
/**
|
|
4925
|
+
* Pause new miner submissions
|
|
4926
|
+
* Block new agent submissions while validators continue draining existing work. Idempotent — calling twice leaves submissions paused.
|
|
4927
|
+
*/
|
|
4928
|
+
declare const postSubmissionPause: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<PostSubmissionPauseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SubmissionPauseStatus, HTTPValidationError, ThrowOnError>;
|
|
4929
|
+
/**
|
|
4930
|
+
* Resume miner submissions
|
|
4931
|
+
*/
|
|
4932
|
+
declare const postSubmissionResume: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<PostSubmissionResumeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SubmissionPauseStatus, HTTPValidationError, ThrowOnError>;
|
|
4959
4933
|
/**
|
|
4960
4934
|
* Get validator-pause (andon-cord) state
|
|
4961
4935
|
* Returns whether new validator claims are currently paused, plus metadata on who pulled the cord and when it auto-releases.
|
|
@@ -4970,26 +4944,6 @@ declare const postValidatorPause: <ThrowOnError extends boolean = false>(options
|
|
|
4970
4944
|
* Resume validator claims (release the andon cord)
|
|
4971
4945
|
*/
|
|
4972
4946
|
declare const postValidatorResume: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<PostValidatorResumeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ValidatorPauseStatus, HTTPValidationError, ThrowOnError>;
|
|
4973
|
-
/**
|
|
4974
|
-
* Get Current Suite V2
|
|
4975
|
-
*/
|
|
4976
|
-
declare const getCurrentSuiteV2: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SuiteExecutionRead, unknown, ThrowOnError>;
|
|
4977
|
-
/**
|
|
4978
|
-
* Get Suite V2
|
|
4979
|
-
*/
|
|
4980
|
-
declare const getSuiteV2: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetSuiteV2Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SuiteExecutionRead, HTTPValidationError, ThrowOnError>;
|
|
4981
|
-
/**
|
|
4982
|
-
* Get Evaluation Run V2
|
|
4983
|
-
*/
|
|
4984
|
-
declare const getEvaluationRunV2: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetEvaluationRunV2Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EvaluationExecutionRead, HTTPValidationError, ThrowOnError>;
|
|
4985
|
-
/**
|
|
4986
|
-
* Get Evaluation Items V2
|
|
4987
|
-
*/
|
|
4988
|
-
declare const getEvaluationItemsV2: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetEvaluationItemsV2Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EvaluationItemsRead, HTTPValidationError, ThrowOnError>;
|
|
4989
|
-
/**
|
|
4990
|
-
* Get Episode Artifact V2
|
|
4991
|
-
*/
|
|
4992
|
-
declare const getEpisodeArtifactV2: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetEpisodeArtifactV2Data, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SanitizedEpisodeArtifact, HTTPValidationError, ThrowOnError>;
|
|
4993
4947
|
/**
|
|
4994
4948
|
* Api Problems
|
|
4995
4949
|
*/
|
|
@@ -5004,7 +4958,7 @@ declare const apiRun: <ThrowOnError extends boolean = false>(options: OptionsLeg
|
|
|
5004
4958
|
*
|
|
5005
4959
|
* DO NOT EDIT — regenerate with: python3 scripts/extract-errors.py
|
|
5006
4960
|
*/
|
|
5007
|
-
type OroErrorCode = 'AGENT_NOT_FOUND' | 'AGENT_VERSION_NOT_FOUND' | 'ALREADY_INVALIDATED' | 'ARTIFACT_NOT_FOUND' | 'ARTIFACT_NOT_RELEASED' | 'AT_CAPACITY' | 'CODE_ANALYSIS_ERROR' | 'COOLDOWN_ACTIVE' | 'EVAL_RUN_NOT_FOUND' | 'FILE_TOO_LARGE' | 'INVALID_AGENT_NAME' | 'INVALID_ARTIFACT_TYPE' | 'INVALID_FILE' | 'INVALID_PROBLEM_ID' | 'LEASE_EXPIRED' | 'MINER_NOT_FOUND' | 'MISSING_PARAMETER' | 'MISSING_SCORE' | 'NO_ACTIVE_SUITE' | 'NO_SELECTION' | 'NOT_RUN_OWNER' | 'NOT_VERSION_OWNER' | 'PROBLEM_NOT_FOUND' | 'RACE_IN_FLIGHT' | 'RACE_LOCKED' | 'RACE_NOT_FOUND' | 'RATE_LIMIT_EXCEEDED' | 'RUN_ALREADY_COMPLETE' | 'SCORE_BELOW_THRESHOLD' | 'SIMILARITY_CHECK_UNAVAILABLE' | 'SUITE_NOT_FOUND' | 'VALIDATION_ERROR' | 'VALIDATOR_NOT_FOUND';
|
|
4961
|
+
type OroErrorCode = 'AGENT_NOT_FOUND' | 'AGENT_VERSION_NOT_FOUND' | 'ALREADY_INVALIDATED' | 'ARTIFACT_NOT_FOUND' | 'ARTIFACT_NOT_RELEASED' | 'AT_CAPACITY' | 'CODE_ANALYSIS_ERROR' | 'COOLDOWN_ACTIVE' | 'EVAL_RUN_NOT_FOUND' | 'FILE_TOO_LARGE' | 'INVALID_AGENT_NAME' | 'INVALID_ARTIFACT_TYPE' | 'INVALID_FILE' | 'INVALID_PROBLEM_ID' | 'LEASE_EXPIRED' | 'MINER_NOT_FOUND' | 'MISSING_PARAMETER' | 'MISSING_SCORE' | 'NO_ACTIVE_SUITE' | 'NO_SELECTION' | 'NOT_RUN_OWNER' | 'NOT_VERSION_OWNER' | 'PROBLEM_NOT_FOUND' | 'RACE_IN_FLIGHT' | 'RACE_LOCKED' | 'RACE_NOT_FOUND' | 'RATE_LIMIT_EXCEEDED' | 'RUN_ALREADY_COMPLETE' | 'SCORE_BELOW_THRESHOLD' | 'SIMILARITY_CHECK_UNAVAILABLE' | 'SUBMISSIONS_PAUSED' | 'SUITE_NOT_FOUND' | 'VALIDATION_ERROR' | 'VALIDATOR_NOT_FOUND';
|
|
5008
4962
|
|
|
5009
4963
|
/**
|
|
5010
4964
|
* Error classification utilities for the ORO SDK.
|
|
@@ -5350,4 +5304,4 @@ declare class SessionAuthManager {
|
|
|
5350
5304
|
*/
|
|
5351
5305
|
declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
|
|
5352
5306
|
|
|
5353
|
-
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 CheckDetail, 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 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 GetCurrentSuiteV2Error, type GetCurrentSuiteV2Response, type GetEpisodeArtifactV2Data, type GetEpisodeArtifactV2Error, type GetEpisodeArtifactV2Response, type GetEvaluationItemsV2Data, type GetEvaluationItemsV2Error, type GetEvaluationItemsV2Response, type GetEvaluationRunData, type GetEvaluationRunError, type GetEvaluationRunResponse, type GetEvaluationRunV2Data, type GetEvaluationRunV2Error, type GetEvaluationRunV2Response, 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 GetSuiteProblemsData, type GetSuiteProblemsError, type GetSuiteProblemsResponse, type GetSuiteV2Data, type GetSuiteV2Error, type GetSuiteV2Response, 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 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 RewardComponent, type RewardSummary, type RunAlreadyCompleteError, type RunProblemsResponse, type RunningEvaluation, type SafeEnvironmentMetadata, type SanitizedEpisodeArtifact, type SanitizedTraceEntry, 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 SubmitAgentData, type SubmitAgentError, type SubmitAgentResponse, type SubmitAgentResponse2, type SuiteExecutionRead, 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 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, getCurrentSuiteV2, getEpisodeArtifactV2, getErrorCode, getErrorDetail, getEvaluationItemsV2, getEvaluationRun, getEvaluationRunV2, getInferenceAuthStatusOne, getInferenceModels, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getRaceDetail, getRaceDiagnostics, getRaceHistory, getRaceValidatorVariance, getReaperStats, getRunProblems, getRunningEvaluations, getSuiteProblems, getSuiteV2, getTopAgent, getTopHistory, getTopMinerPayout, getTrajectoryHistory, getValidatorFailures, getValidatorPause, getValidatorResourceSamples, getValidatorScores, getValidators, getWeightSalt, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, type item_kind, joinWaitlist, type kind, listAgentVersions, listAgentVersions1, listEvaluationRuns, listInferenceAuth, listMinerAgents, listMiners, listSuites, listValidators, logout, parseRetryAfter, postValidatorPause, postValidatorResume, presignUpload, type provider, reevaluateAgentVersion, reinstateAgentVersion, reinstateElimination, requestChallenge, setDefaultInferenceProvider, setRaceSelection, setTopAgent, storeChutesToken, storeInferenceCredential, submitAgent, unbanMiner, unbanValidator, updateProgress, updateValidator };
|
|
5307
|
+
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 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, updateValidator };
|