@oro-ai/sdk 1.0.101 → 1.0.102

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 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
  */
@@ -2898,15 +2876,6 @@ type SubmitAgentResponse = {
2898
2876
  */
2899
2877
  message?: string;
2900
2878
  };
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
2879
  type SuiteNotFoundError = {
2911
2880
  /**
2912
2881
  * Error message describing what went wrong
@@ -4383,48 +4352,6 @@ type PostValidatorResumeData = {
4383
4352
  };
4384
4353
  type PostValidatorResumeResponse = (ValidatorPauseStatus);
4385
4354
  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
4355
  type ApiProblemsData = {
4429
4356
  headers?: {
4430
4357
  'X-Demo-Auth'?: (string | null);
@@ -4970,26 +4897,6 @@ declare const postValidatorPause: <ThrowOnError extends boolean = false>(options
4970
4897
  * Resume validator claims (release the andon cord)
4971
4898
  */
4972
4899
  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
4900
  /**
4994
4901
  * Api Problems
4995
4902
  */
@@ -5350,4 +5257,4 @@ declare class SessionAuthManager {
5350
5257
  */
5351
5258
  declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
5352
5259
 
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 };
5260
+ 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 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 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 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, 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, postValidatorPause, postValidatorResume, presignUpload, type provider, reevaluateAgentVersion, reinstateAgentVersion, reinstateElimination, requestChallenge, setDefaultInferenceProvider, setRaceSelection, setTopAgent, storeChutesToken, storeInferenceCredential, submitAgent, unbanMiner, unbanValidator, updateProgress, updateValidator };
package/dist/index.d.ts 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
  */
@@ -2898,15 +2876,6 @@ type SubmitAgentResponse = {
2898
2876
  */
2899
2877
  message?: string;
2900
2878
  };
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
2879
  type SuiteNotFoundError = {
2911
2880
  /**
2912
2881
  * Error message describing what went wrong
@@ -4383,48 +4352,6 @@ type PostValidatorResumeData = {
4383
4352
  };
4384
4353
  type PostValidatorResumeResponse = (ValidatorPauseStatus);
4385
4354
  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
4355
  type ApiProblemsData = {
4429
4356
  headers?: {
4430
4357
  'X-Demo-Auth'?: (string | null);
@@ -4970,26 +4897,6 @@ declare const postValidatorPause: <ThrowOnError extends boolean = false>(options
4970
4897
  * Resume validator claims (release the andon cord)
4971
4898
  */
4972
4899
  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
4900
  /**
4994
4901
  * Api Problems
4995
4902
  */
@@ -5350,4 +5257,4 @@ declare class SessionAuthManager {
5350
5257
  */
5351
5258
  declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
5352
5259
 
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 };
5260
+ 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 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 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 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, 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, postValidatorPause, postValidatorResume, presignUpload, type provider, reevaluateAgentVersion, reinstateAgentVersion, reinstateElimination, requestChallenge, setDefaultInferenceProvider, setRaceSelection, setTopAgent, storeChutesToken, storeInferenceCredential, submitAgent, unbanMiner, unbanValidator, updateProgress, updateValidator };
package/dist/index.js CHANGED
@@ -70,13 +70,9 @@ __export(index_exports, {
70
70
  getCurrentRace: () => getCurrentRace,
71
71
  getCurrentRaces: () => getCurrentRaces,
72
72
  getCurrentSuite: () => getCurrentSuite,
73
- getCurrentSuiteV2: () => getCurrentSuiteV2,
74
- getEpisodeArtifactV2: () => getEpisodeArtifactV2,
75
73
  getErrorCode: () => getErrorCode,
76
74
  getErrorDetail: () => getErrorDetail,
77
- getEvaluationItemsV2: () => getEvaluationItemsV2,
78
75
  getEvaluationRun: () => getEvaluationRun,
79
- getEvaluationRunV2: () => getEvaluationRunV2,
80
76
  getInferenceAuthStatusOne: () => getInferenceAuthStatusOne,
81
77
  getInferenceModels: () => getInferenceModels,
82
78
  getLeaderboard: () => getLeaderboard,
@@ -90,7 +86,6 @@ __export(index_exports, {
90
86
  getRunProblems: () => getRunProblems,
91
87
  getRunningEvaluations: () => getRunningEvaluations,
92
88
  getSuiteProblems: () => getSuiteProblems,
93
- getSuiteV2: () => getSuiteV2,
94
89
  getTopAgent: () => getTopAgent,
95
90
  getTopHistory: () => getTopHistory,
96
91
  getTopMinerPayout: () => getTopMinerPayout,
@@ -639,36 +634,6 @@ var postValidatorResume = (options) => {
639
634
  url: "/v1/admin/validator-resume"
640
635
  });
641
636
  };
642
- var getCurrentSuiteV2 = (options) => {
643
- return (options?.client ?? client).get({
644
- ...options,
645
- url: "/v2/public/suites/current"
646
- });
647
- };
648
- var getSuiteV2 = (options) => {
649
- return (options?.client ?? client).get({
650
- ...options,
651
- url: "/v2/public/suites/{suite_id}"
652
- });
653
- };
654
- var getEvaluationRunV2 = (options) => {
655
- return (options?.client ?? client).get({
656
- ...options,
657
- url: "/v2/public/evaluation-runs/{run_id}"
658
- });
659
- };
660
- var getEvaluationItemsV2 = (options) => {
661
- return (options?.client ?? client).get({
662
- ...options,
663
- url: "/v2/public/evaluation-runs/{run_id}/items"
664
- });
665
- };
666
- var getEpisodeArtifactV2 = (options) => {
667
- return (options?.client ?? client).get({
668
- ...options,
669
- url: "/v2/public/episode-artifacts/{episode_result_id}"
670
- });
671
- };
672
637
  var apiProblems = (options) => {
673
638
  return (options?.client ?? client).get({
674
639
  ...options,
@@ -1083,13 +1048,9 @@ function configureSessionAuth(baseUrl, config) {
1083
1048
  getCurrentRace,
1084
1049
  getCurrentRaces,
1085
1050
  getCurrentSuite,
1086
- getCurrentSuiteV2,
1087
- getEpisodeArtifactV2,
1088
1051
  getErrorCode,
1089
1052
  getErrorDetail,
1090
- getEvaluationItemsV2,
1091
1053
  getEvaluationRun,
1092
- getEvaluationRunV2,
1093
1054
  getInferenceAuthStatusOne,
1094
1055
  getInferenceModels,
1095
1056
  getLeaderboard,
@@ -1103,7 +1064,6 @@ function configureSessionAuth(baseUrl, config) {
1103
1064
  getRunProblems,
1104
1065
  getRunningEvaluations,
1105
1066
  getSuiteProblems,
1106
- getSuiteV2,
1107
1067
  getTopAgent,
1108
1068
  getTopHistory,
1109
1069
  getTopMinerPayout,
package/dist/index.mjs CHANGED
@@ -498,36 +498,6 @@ var postValidatorResume = (options) => {
498
498
  url: "/v1/admin/validator-resume"
499
499
  });
500
500
  };
501
- var getCurrentSuiteV2 = (options) => {
502
- return (options?.client ?? client).get({
503
- ...options,
504
- url: "/v2/public/suites/current"
505
- });
506
- };
507
- var getSuiteV2 = (options) => {
508
- return (options?.client ?? client).get({
509
- ...options,
510
- url: "/v2/public/suites/{suite_id}"
511
- });
512
- };
513
- var getEvaluationRunV2 = (options) => {
514
- return (options?.client ?? client).get({
515
- ...options,
516
- url: "/v2/public/evaluation-runs/{run_id}"
517
- });
518
- };
519
- var getEvaluationItemsV2 = (options) => {
520
- return (options?.client ?? client).get({
521
- ...options,
522
- url: "/v2/public/evaluation-runs/{run_id}/items"
523
- });
524
- };
525
- var getEpisodeArtifactV2 = (options) => {
526
- return (options?.client ?? client).get({
527
- ...options,
528
- url: "/v2/public/episode-artifacts/{episode_result_id}"
529
- });
530
- };
531
501
  var apiProblems = (options) => {
532
502
  return (options?.client ?? client).get({
533
503
  ...options,
@@ -941,13 +911,9 @@ export {
941
911
  getCurrentRace,
942
912
  getCurrentRaces,
943
913
  getCurrentSuite,
944
- getCurrentSuiteV2,
945
- getEpisodeArtifactV2,
946
914
  getErrorCode,
947
915
  getErrorDetail,
948
- getEvaluationItemsV2,
949
916
  getEvaluationRun,
950
- getEvaluationRunV2,
951
917
  getInferenceAuthStatusOne,
952
918
  getInferenceModels,
953
919
  getLeaderboard,
@@ -961,7 +927,6 @@ export {
961
927
  getRunProblems,
962
928
  getRunningEvaluations,
963
929
  getSuiteProblems,
964
- getSuiteV2,
965
930
  getTopAgent,
966
931
  getTopHistory,
967
932
  getTopMinerPayout,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "description": "Official TypeScript SDK for the ORO Bittensor Subnet API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1,7 +1,7 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
 
3
3
  import { createClient, createConfig, type OptionsLegacyParser, formDataBodySerializer } from '@hey-api/client-fetch';
4
- import type { HealthCheckError, HealthCheckResponse, DeepHealthCheckError, DeepHealthCheckResponse, ListSuitesError, ListSuitesResponse, GetCurrentSuiteError, GetCurrentSuiteResponse, GetSuiteProblemsData, GetSuiteProblemsError, GetSuiteProblemsResponse, GetLeaderboardData, GetLeaderboardError, GetLeaderboardResponse, GetTopAgentError, GetTopAgentResponse, GetTrajectoryHistoryError, GetTrajectoryHistoryResponse, GetTopMinerPayoutError, GetTopMinerPayoutResponse, GetTopHistoryData, GetTopHistoryError, GetTopHistoryResponse, GetAgentVersionStatusData, GetAgentVersionStatusError, GetAgentVersionStatusResponse, GetAgentVersionRunsData, GetAgentVersionRunsError, GetAgentVersionRunsResponse, GetAgentVersionProblemsData, GetAgentVersionProblemsError, GetAgentVersionProblemsResponse, GetAgentVersionData, GetAgentVersionError, GetAgentVersionResponse, GetArtifactDownloadUrlData, GetArtifactDownloadUrlError, GetArtifactDownloadUrlResponse, GetEvaluationRunData, GetEvaluationRunError, GetEvaluationRunResponse, GetValidatorsError, GetValidatorsResponse, GetRunningEvaluationsError, GetRunningEvaluationsResponse, GetPendingEvaluationsData, GetPendingEvaluationsError, GetPendingEvaluationsResponse, GetCurrentRaceError, GetCurrentRaceResponse, GetRaceHistoryData, GetRaceHistoryError, GetRaceHistoryResponse, GetRaceDetailData, GetRaceDetailError, GetRaceDetailResponse, GetRaceValidatorVarianceData, GetRaceValidatorVarianceError, GetRaceValidatorVarianceResponse, JoinWaitlistData, JoinWaitlistError, JoinWaitlistResponse, GetInferenceModelsData, GetInferenceModelsError, GetInferenceModelsResponse, RequestChallengeData, RequestChallengeError, RequestChallengeResponse, CreateSessionEndpointData, CreateSessionEndpointError, CreateSessionEndpointResponse, LogoutData, LogoutError, LogoutResponse2, SubmitAgentData, SubmitAgentError, SubmitAgentResponse2, StoreInferenceCredentialData, StoreInferenceCredentialError, StoreInferenceCredentialResponse, GetInferenceAuthStatusOneData, GetInferenceAuthStatusOneError, GetInferenceAuthStatusOneResponse, DeleteInferenceCredentialData, DeleteInferenceCredentialError, DeleteInferenceCredentialResponse, ListInferenceAuthError, ListInferenceAuthResponse, SetDefaultInferenceProviderData, SetDefaultInferenceProviderError, SetDefaultInferenceProviderResponse, StoreChutesTokenData, StoreChutesTokenError, StoreChutesTokenResponse, GetChutesAuthStatusError, GetChutesAuthStatusResponse, ExchangeChutesCodeData, ExchangeChutesCodeError, ExchangeChutesCodeResponse2, ListMinerAgentsError, ListMinerAgentsResponse, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsResponse, GetOwnedAgentVersionStatusData, GetOwnedAgentVersionStatusError, GetOwnedAgentVersionStatusResponse, SetRaceSelectionData, SetRaceSelectionError, SetRaceSelectionResponse, ClearRaceSelectionError, ClearRaceSelectionResponse, ClaimWorkData, ClaimWorkError, ClaimWorkResponse2, HeartbeatData, HeartbeatError, HeartbeatResponse2, UpdateProgressData, UpdateProgressError, UpdateProgressResponse, PresignUploadData, PresignUploadError, PresignUploadResponse2, CompleteRunData, CompleteRunError, CompleteRunResponse2, GetRunProblemsData, GetRunProblemsError, GetRunProblemsResponse, GetWeightSaltError, GetWeightSaltResponse, BanMinerData, BanMinerError, BanMinerResponse, UnbanMinerData, UnbanMinerError, UnbanMinerResponse, BanValidatorData, BanValidatorError, BanValidatorResponse, UnbanValidatorData, UnbanValidatorError, UnbanValidatorResponse, UpdateValidatorData, UpdateValidatorError, UpdateValidatorResponse, DiscardAgentVersionData, DiscardAgentVersionError, DiscardAgentVersionResponse, ReinstateAgentVersionData, ReinstateAgentVersionError, ReinstateAgentVersionResponse, EliminateAgentVersionData, EliminateAgentVersionError, EliminateAgentVersionResponse, ReinstateEliminationData, ReinstateEliminationError, ReinstateEliminationResponse2, SetTopAgentData, SetTopAgentError, SetTopAgentResponse, InvalidateEvaluationRunData, InvalidateEvaluationRunError, InvalidateEvaluationRunResponse, ReevaluateAgentVersionData, ReevaluateAgentVersionError, ReevaluateAgentVersionResponse, CancelAgentVersionData, CancelAgentVersionError, CancelAgentVersionResponse, CreateSuiteData, CreateSuiteError, CreateSuiteResponse2, ActivateSuiteData, ActivateSuiteError, ActivateSuiteResponse2, GetAuditEventsData, GetAuditEventsError, GetAuditEventsResponse, GetReaperStatsError, GetReaperStatsResponse, ClearMinerCooldownData, ClearMinerCooldownError, ClearMinerCooldownResponse, ListMinersData, ListMinersError, ListMinersResponse, ListValidatorsData, ListValidatorsError, ListValidatorsResponse, ListAgentVersions1Data, ListAgentVersions1Error, ListAgentVersions1Response, ListEvaluationRunsData, ListEvaluationRunsError, ListEvaluationRunsResponse, GetValidatorScoresData, GetValidatorScoresError, GetValidatorScoresResponse, GetAgentVersionVarianceData, GetAgentVersionVarianceError, GetAgentVersionVarianceResponse, GetAgentVersionCodeData, GetAgentVersionCodeError, GetAgentVersionCodeResponse, GetCurrentRacesError, GetCurrentRacesResponse, GetRaceDiagnosticsData, GetRaceDiagnosticsError, GetRaceDiagnosticsResponse, CloseQualifyingError, CloseQualifyingResponse2, GetValidatorResourceSamplesData, GetValidatorResourceSamplesError, GetValidatorResourceSamplesResponse, GetValidatorFailuresData, GetValidatorFailuresError, GetValidatorFailuresResponse, GetValidatorPauseError, GetValidatorPauseResponse, PostValidatorPauseData, PostValidatorPauseError, PostValidatorPauseResponse, PostValidatorResumeData, PostValidatorResumeError, PostValidatorResumeResponse, GetCurrentSuiteV2Error, GetCurrentSuiteV2Response, GetSuiteV2Data, GetSuiteV2Error, GetSuiteV2Response, GetEvaluationRunV2Data, GetEvaluationRunV2Error, GetEvaluationRunV2Response, GetEvaluationItemsV2Data, GetEvaluationItemsV2Error, GetEvaluationItemsV2Response, GetEpisodeArtifactV2Data, GetEpisodeArtifactV2Error, GetEpisodeArtifactV2Response, ApiProblemsData, ApiProblemsError, ApiProblemsResponse, ApiRunData, ApiRunError, ApiRunResponse } from './types.gen';
4
+ import type { HealthCheckError, HealthCheckResponse, DeepHealthCheckError, DeepHealthCheckResponse, ListSuitesError, ListSuitesResponse, GetCurrentSuiteError, GetCurrentSuiteResponse, GetSuiteProblemsData, GetSuiteProblemsError, GetSuiteProblemsResponse, GetLeaderboardData, GetLeaderboardError, GetLeaderboardResponse, GetTopAgentError, GetTopAgentResponse, GetTrajectoryHistoryError, GetTrajectoryHistoryResponse, GetTopMinerPayoutError, GetTopMinerPayoutResponse, GetTopHistoryData, GetTopHistoryError, GetTopHistoryResponse, GetAgentVersionStatusData, GetAgentVersionStatusError, GetAgentVersionStatusResponse, GetAgentVersionRunsData, GetAgentVersionRunsError, GetAgentVersionRunsResponse, GetAgentVersionProblemsData, GetAgentVersionProblemsError, GetAgentVersionProblemsResponse, GetAgentVersionData, GetAgentVersionError, GetAgentVersionResponse, GetArtifactDownloadUrlData, GetArtifactDownloadUrlError, GetArtifactDownloadUrlResponse, GetEvaluationRunData, GetEvaluationRunError, GetEvaluationRunResponse, GetValidatorsError, GetValidatorsResponse, GetRunningEvaluationsError, GetRunningEvaluationsResponse, GetPendingEvaluationsData, GetPendingEvaluationsError, GetPendingEvaluationsResponse, GetCurrentRaceError, GetCurrentRaceResponse, GetRaceHistoryData, GetRaceHistoryError, GetRaceHistoryResponse, GetRaceDetailData, GetRaceDetailError, GetRaceDetailResponse, GetRaceValidatorVarianceData, GetRaceValidatorVarianceError, GetRaceValidatorVarianceResponse, JoinWaitlistData, JoinWaitlistError, JoinWaitlistResponse, GetInferenceModelsData, GetInferenceModelsError, GetInferenceModelsResponse, RequestChallengeData, RequestChallengeError, RequestChallengeResponse, CreateSessionEndpointData, CreateSessionEndpointError, CreateSessionEndpointResponse, LogoutData, LogoutError, LogoutResponse2, SubmitAgentData, SubmitAgentError, SubmitAgentResponse2, StoreInferenceCredentialData, StoreInferenceCredentialError, StoreInferenceCredentialResponse, GetInferenceAuthStatusOneData, GetInferenceAuthStatusOneError, GetInferenceAuthStatusOneResponse, DeleteInferenceCredentialData, DeleteInferenceCredentialError, DeleteInferenceCredentialResponse, ListInferenceAuthError, ListInferenceAuthResponse, SetDefaultInferenceProviderData, SetDefaultInferenceProviderError, SetDefaultInferenceProviderResponse, StoreChutesTokenData, StoreChutesTokenError, StoreChutesTokenResponse, GetChutesAuthStatusError, GetChutesAuthStatusResponse, ExchangeChutesCodeData, ExchangeChutesCodeError, ExchangeChutesCodeResponse2, ListMinerAgentsError, ListMinerAgentsResponse, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsResponse, GetOwnedAgentVersionStatusData, GetOwnedAgentVersionStatusError, GetOwnedAgentVersionStatusResponse, SetRaceSelectionData, SetRaceSelectionError, SetRaceSelectionResponse, ClearRaceSelectionError, ClearRaceSelectionResponse, ClaimWorkData, ClaimWorkError, ClaimWorkResponse2, HeartbeatData, HeartbeatError, HeartbeatResponse2, UpdateProgressData, UpdateProgressError, UpdateProgressResponse, PresignUploadData, PresignUploadError, PresignUploadResponse2, CompleteRunData, CompleteRunError, CompleteRunResponse2, GetRunProblemsData, GetRunProblemsError, GetRunProblemsResponse, GetWeightSaltError, GetWeightSaltResponse, BanMinerData, BanMinerError, BanMinerResponse, UnbanMinerData, UnbanMinerError, UnbanMinerResponse, BanValidatorData, BanValidatorError, BanValidatorResponse, UnbanValidatorData, UnbanValidatorError, UnbanValidatorResponse, UpdateValidatorData, UpdateValidatorError, UpdateValidatorResponse, DiscardAgentVersionData, DiscardAgentVersionError, DiscardAgentVersionResponse, ReinstateAgentVersionData, ReinstateAgentVersionError, ReinstateAgentVersionResponse, EliminateAgentVersionData, EliminateAgentVersionError, EliminateAgentVersionResponse, ReinstateEliminationData, ReinstateEliminationError, ReinstateEliminationResponse2, SetTopAgentData, SetTopAgentError, SetTopAgentResponse, InvalidateEvaluationRunData, InvalidateEvaluationRunError, InvalidateEvaluationRunResponse, ReevaluateAgentVersionData, ReevaluateAgentVersionError, ReevaluateAgentVersionResponse, CancelAgentVersionData, CancelAgentVersionError, CancelAgentVersionResponse, CreateSuiteData, CreateSuiteError, CreateSuiteResponse2, ActivateSuiteData, ActivateSuiteError, ActivateSuiteResponse2, GetAuditEventsData, GetAuditEventsError, GetAuditEventsResponse, GetReaperStatsError, GetReaperStatsResponse, ClearMinerCooldownData, ClearMinerCooldownError, ClearMinerCooldownResponse, ListMinersData, ListMinersError, ListMinersResponse, ListValidatorsData, ListValidatorsError, ListValidatorsResponse, ListAgentVersions1Data, ListAgentVersions1Error, ListAgentVersions1Response, ListEvaluationRunsData, ListEvaluationRunsError, ListEvaluationRunsResponse, GetValidatorScoresData, GetValidatorScoresError, GetValidatorScoresResponse, GetAgentVersionVarianceData, GetAgentVersionVarianceError, GetAgentVersionVarianceResponse, GetAgentVersionCodeData, GetAgentVersionCodeError, GetAgentVersionCodeResponse, GetCurrentRacesError, GetCurrentRacesResponse, GetRaceDiagnosticsData, GetRaceDiagnosticsError, GetRaceDiagnosticsResponse, CloseQualifyingError, CloseQualifyingResponse2, GetValidatorResourceSamplesData, GetValidatorResourceSamplesError, GetValidatorResourceSamplesResponse, GetValidatorFailuresData, GetValidatorFailuresError, GetValidatorFailuresResponse, GetValidatorPauseError, GetValidatorPauseResponse, PostValidatorPauseData, PostValidatorPauseError, PostValidatorPauseResponse, PostValidatorResumeData, PostValidatorResumeError, PostValidatorResumeResponse, ApiProblemsData, ApiProblemsError, ApiProblemsResponse, ApiRunData, ApiRunError, ApiRunResponse } from './types.gen';
5
5
 
6
6
  export const client = createClient(createConfig());
7
7
 
@@ -1020,56 +1020,6 @@ export const postValidatorResume = <ThrowOnError extends boolean = false>(option
1020
1020
  });
1021
1021
  };
1022
1022
 
1023
- /**
1024
- * Get Current Suite V2
1025
- */
1026
- export const getCurrentSuiteV2 = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => {
1027
- return (options?.client ?? client).get<GetCurrentSuiteV2Response, GetCurrentSuiteV2Error, ThrowOnError>({
1028
- ...options,
1029
- url: '/v2/public/suites/current'
1030
- });
1031
- };
1032
-
1033
- /**
1034
- * Get Suite V2
1035
- */
1036
- export const getSuiteV2 = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetSuiteV2Data, ThrowOnError>) => {
1037
- return (options?.client ?? client).get<GetSuiteV2Response, GetSuiteV2Error, ThrowOnError>({
1038
- ...options,
1039
- url: '/v2/public/suites/{suite_id}'
1040
- });
1041
- };
1042
-
1043
- /**
1044
- * Get Evaluation Run V2
1045
- */
1046
- export const getEvaluationRunV2 = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetEvaluationRunV2Data, ThrowOnError>) => {
1047
- return (options?.client ?? client).get<GetEvaluationRunV2Response, GetEvaluationRunV2Error, ThrowOnError>({
1048
- ...options,
1049
- url: '/v2/public/evaluation-runs/{run_id}'
1050
- });
1051
- };
1052
-
1053
- /**
1054
- * Get Evaluation Items V2
1055
- */
1056
- export const getEvaluationItemsV2 = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetEvaluationItemsV2Data, ThrowOnError>) => {
1057
- return (options?.client ?? client).get<GetEvaluationItemsV2Response, GetEvaluationItemsV2Error, ThrowOnError>({
1058
- ...options,
1059
- url: '/v2/public/evaluation-runs/{run_id}/items'
1060
- });
1061
- };
1062
-
1063
- /**
1064
- * Get Episode Artifact V2
1065
- */
1066
- export const getEpisodeArtifactV2 = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<GetEpisodeArtifactV2Data, ThrowOnError>) => {
1067
- return (options?.client ?? client).get<GetEpisodeArtifactV2Response, GetEpisodeArtifactV2Error, ThrowOnError>({
1068
- ...options,
1069
- url: '/v2/public/episode-artifacts/{episode_result_id}'
1070
- });
1071
- };
1072
-
1073
1023
  /**
1074
1024
  * Api Problems
1075
1025
  */
@@ -536,6 +536,14 @@ export type AgentVersionProblemsResponse = {
536
536
  * Problem progress list
537
537
  */
538
538
  problems: Array<ProblemProgressEntry>;
539
+ /**
540
+ * Generated task results, using the same phase visibility as legacy problems
541
+ */
542
+ generated_results?: Array<GeneratedEvaluationResultRead>;
543
+ /**
544
+ * Safe task labels for generated qualifying evaluations
545
+ */
546
+ qualifying_tasks?: Array<QualifyingTaskRead>;
539
547
  };
540
548
 
541
549
  export type AgentVersionPublic = {
@@ -966,16 +974,6 @@ export type ChallengeResponse = {
966
974
  expires_at: number;
967
975
  };
968
976
 
969
- /**
970
- * One named verifier check with its pass/fail result. Names come from
971
- * `EpisodeResult.verdict_checks` and are safe to expose (they identify
972
- * which constraint fired, not the constraint's private threshold).
973
- */
974
- export type CheckDetail = {
975
- name: string;
976
- passed: (boolean | null);
977
- };
978
-
979
977
  export type CheckSummary = {
980
978
  passed?: number;
981
979
  failed?: number;
@@ -1303,6 +1301,7 @@ export type EvaluationExecutionRead = {
1303
1301
  execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1304
1302
  execution_contract_id?: (string | null);
1305
1303
  environment?: (SafeEnvironmentMetadata | null);
1304
+ detail_released?: boolean;
1306
1305
  };
1307
1306
 
1308
1307
  export type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
@@ -1403,6 +1402,9 @@ export type EvaluationRunDetail = {
1403
1402
  score_components_summary?: ({
1404
1403
  [key: string]: unknown;
1405
1404
  } | null);
1405
+ execution_kind?: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1406
+ execution_contract_id?: (string | null);
1407
+ environment?: (SafeEnvironmentMetadata | null);
1406
1408
  };
1407
1409
 
1408
1410
  export type EvaluationRunPublic = {
@@ -1624,6 +1626,14 @@ export type FileTooLargeError = {
1624
1626
  error_code?: "FILE_TOO_LARGE";
1625
1627
  };
1626
1628
 
1629
+ /**
1630
+ * Generated run identity and task results returned by existing agent reads.
1631
+ */
1632
+ export type GeneratedEvaluationResultRead = {
1633
+ identity: EvaluationExecutionRead;
1634
+ items: EvaluationItemsRead;
1635
+ };
1636
+
1627
1637
  export type HeartbeatRequest = {
1628
1638
  /**
1629
1639
  * Docker image digests for validator stack services
@@ -2759,17 +2769,6 @@ export type ReinstateRequest = {
2759
2769
  reason?: (string | null);
2760
2770
  };
2761
2771
 
2762
- /**
2763
- * One named contribution to the paid reward. Value is the same
2764
- * numeric slice the miner already earned; the name identifies the
2765
- * reward source (e.g. `family_metric`, `constraint_satisfaction`). No
2766
- * private weighting factors surface here.
2767
- */
2768
- export type RewardComponent = {
2769
- name: string;
2770
- value: number;
2771
- };
2772
-
2773
2772
  export type RewardSummary = {
2774
2773
  component_count?: number;
2775
2774
  };
@@ -2857,31 +2856,6 @@ export type SafeEnvironmentMetadata = {
2857
2856
  result_schema_version: string;
2858
2857
  };
2859
2858
 
2860
- export type SanitizedEpisodeArtifact = {
2861
- episode_result_id: string;
2862
- eval_run_id: string;
2863
- task_id: string;
2864
- family: string;
2865
- outcome: string;
2866
- step_count: number;
2867
- trace: Array<SanitizedTraceEntry>;
2868
- paid_reward?: (number | null);
2869
- check_details?: Array<CheckDetail>;
2870
- reward_components?: Array<RewardComponent>;
2871
- };
2872
-
2873
- export type SanitizedTraceEntry = {
2874
- seq: number;
2875
- turn: number;
2876
- kind: 'model_action' | 'model_message' | 'observation' | 'user_message' | 'termination';
2877
- actor: string;
2878
- payload: {
2879
- [key: string]: unknown;
2880
- };
2881
- };
2882
-
2883
- export type kind = 'model_action' | 'model_message' | 'observation' | 'user_message' | 'termination';
2884
-
2885
2859
  /**
2886
2860
  * 400 - Candidate score does not exceed the challenge threshold.
2887
2861
  */
@@ -3053,16 +3027,6 @@ export type SubmitAgentResponse = {
3053
3027
  message?: string;
3054
3028
  };
3055
3029
 
3056
- export type SuiteExecutionRead = {
3057
- suite_id: number;
3058
- is_active: boolean;
3059
- is_archived: boolean;
3060
- execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
3061
- execution_contract_id?: (string | null);
3062
- environment?: (SafeEnvironmentMetadata | null);
3063
- qualifying_tasks?: (Array<QualifyingTaskRead> | null);
3064
- };
3065
-
3066
3030
  export type SuiteNotFoundError = {
3067
3031
  /**
3068
3032
  * Error message describing what went wrong
@@ -4798,62 +4762,6 @@ export type PostValidatorResumeResponse = (ValidatorPauseStatus);
4798
4762
 
4799
4763
  export type PostValidatorResumeError = (HTTPValidationError);
4800
4764
 
4801
- export type GetCurrentSuiteV2Response = (SuiteExecutionRead);
4802
-
4803
- export type GetCurrentSuiteV2Error = unknown;
4804
-
4805
- export type GetSuiteV2Data = {
4806
- path: {
4807
- /**
4808
- * Suite identifier
4809
- */
4810
- suite_id: number;
4811
- };
4812
- };
4813
-
4814
- export type GetSuiteV2Response = (SuiteExecutionRead);
4815
-
4816
- export type GetSuiteV2Error = (HTTPValidationError);
4817
-
4818
- export type GetEvaluationRunV2Data = {
4819
- path: {
4820
- /**
4821
- * Evaluation run identifier
4822
- */
4823
- run_id: string;
4824
- };
4825
- };
4826
-
4827
- export type GetEvaluationRunV2Response = (EvaluationExecutionRead);
4828
-
4829
- export type GetEvaluationRunV2Error = (HTTPValidationError);
4830
-
4831
- export type GetEvaluationItemsV2Data = {
4832
- path: {
4833
- /**
4834
- * Evaluation run identifier
4835
- */
4836
- run_id: string;
4837
- };
4838
- };
4839
-
4840
- export type GetEvaluationItemsV2Response = (EvaluationItemsRead);
4841
-
4842
- export type GetEvaluationItemsV2Error = (HTTPValidationError);
4843
-
4844
- export type GetEpisodeArtifactV2Data = {
4845
- path: {
4846
- /**
4847
- * Episode result identifier
4848
- */
4849
- episode_result_id: string;
4850
- };
4851
- };
4852
-
4853
- export type GetEpisodeArtifactV2Response = (SanitizedEpisodeArtifact);
4854
-
4855
- export type GetEpisodeArtifactV2Error = (HTTPValidationError);
4856
-
4857
4765
  export type ApiProblemsData = {
4858
4766
  headers?: {
4859
4767
  'X-Demo-Auth'?: (string | null);