@oro-ai/sdk 1.0.99 → 1.0.101

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
@@ -926,6 +926,20 @@ type ChallengeResponse = {
926
926
  */
927
927
  expires_at: number;
928
928
  };
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
+ type CheckSummary = {
939
+ passed?: number;
940
+ failed?: number;
941
+ unknown?: number;
942
+ };
929
943
  type ChutesAuthStatusResponse = {
930
944
  /**
931
945
  * Whether the miner has a valid Chutes token stored
@@ -1219,6 +1233,42 @@ type EvalRunNotFoundError = {
1219
1233
  */
1220
1234
  error_code?: "EVAL_RUN_NOT_FOUND";
1221
1235
  };
1236
+ type EvaluationExecutionRead = {
1237
+ eval_run_id: string;
1238
+ agent_version_id: string;
1239
+ suite_id: number;
1240
+ validator_hotkey: string;
1241
+ status: string;
1242
+ completed_at: (string | null);
1243
+ score: (number | null);
1244
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1245
+ execution_contract_id?: (string | null);
1246
+ environment?: (SafeEnvironmentMetadata | null);
1247
+ };
1248
+ type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1249
+ type EvaluationItemRead = {
1250
+ item_id: string;
1251
+ item_kind: 'legacy_problem' | 'envpack_episode';
1252
+ family?: (string | null);
1253
+ status: string;
1254
+ score?: (number | null);
1255
+ verdict_status?: ('passed' | 'failed' | null);
1256
+ paid_reward?: (number | null);
1257
+ check_summary?: (CheckSummary | null);
1258
+ reward_summary?: (RewardSummary | null);
1259
+ step_count?: (number | null);
1260
+ eval_run_id: string;
1261
+ validator_hotkey: string;
1262
+ };
1263
+ type item_kind = 'legacy_problem' | 'envpack_episode';
1264
+ type EvaluationItemsRead = {
1265
+ eval_run_id: string;
1266
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1267
+ detail_released: boolean;
1268
+ expected_item_count?: (number | null);
1269
+ persisted_item_count: number;
1270
+ items: Array<EvaluationItemRead>;
1271
+ };
1222
1272
  /**
1223
1273
  * Which phase of the qualifying+race cycle an evaluation belongs to.
1224
1274
  */
@@ -2108,6 +2158,11 @@ type ProgressUpdateResponse = {
2108
2158
  */
2109
2159
  accepted?: boolean;
2110
2160
  };
2161
+ type QualifyingTaskRead = {
2162
+ task_id: string;
2163
+ family: string;
2164
+ goal_text: string;
2165
+ };
2111
2166
  type RaceCurrentResponse = {
2112
2167
  /**
2113
2168
  * Current race, if any
@@ -2569,6 +2624,19 @@ type ReinstateRequest = {
2569
2624
  */
2570
2625
  reason?: (string | null);
2571
2626
  };
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
+ type RewardSummary = {
2638
+ component_count?: number;
2639
+ };
2572
2640
  type RunAlreadyCompleteError = {
2573
2641
  /**
2574
2642
  * Error message describing what went wrong
@@ -2631,6 +2699,45 @@ type RunProblemsResponse = {
2631
2699
  */
2632
2700
  problems: Array<ProblemPublic>;
2633
2701
  };
2702
+ type SafeEnvironmentMetadata = {
2703
+ display_name: string;
2704
+ /**
2705
+ * Short audit revision; never a storage key
2706
+ */
2707
+ environment_revision: string;
2708
+ catalog_epoch: string;
2709
+ task_count: number;
2710
+ family_counts: {
2711
+ [key: string]: (number);
2712
+ };
2713
+ contract_version: string;
2714
+ runtime_version: string;
2715
+ tool_contract_version: string;
2716
+ verifier_version: string;
2717
+ result_schema_version: string;
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';
2634
2741
  /**
2635
2742
  * 400 - Candidate score does not exceed the challenge threshold.
2636
2743
  */
@@ -2791,6 +2898,15 @@ type SubmitAgentResponse = {
2791
2898
  */
2792
2899
  message?: string;
2793
2900
  };
2901
+ type SuiteExecutionRead = {
2902
+ suite_id: number;
2903
+ is_active: boolean;
2904
+ is_archived: boolean;
2905
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
2906
+ execution_contract_id?: (string | null);
2907
+ environment?: (SafeEnvironmentMetadata | null);
2908
+ qualifying_tasks?: (Array<QualifyingTaskRead> | null);
2909
+ };
2794
2910
  type SuiteNotFoundError = {
2795
2911
  /**
2796
2912
  * Error message describing what went wrong
@@ -2936,6 +3052,42 @@ type TopMinerPayoutResponse = {
2936
3052
  */
2937
3053
  as_of: string;
2938
3054
  };
3055
+ type TrajectoryDay = {
3056
+ /**
3057
+ * ISO date of the day (UTC)
3058
+ */
3059
+ date: string;
3060
+ /**
3061
+ * Distinct (agent_version, problem) pairs judged this day
3062
+ */
3063
+ distinct: number;
3064
+ /**
3065
+ * Running total of distinct pairs up to this day
3066
+ */
3067
+ cumulative: number;
3068
+ };
3069
+ type TrajectoryHistoryResponse = {
3070
+ /**
3071
+ * Daily distinct-trajectory counts
3072
+ */
3073
+ series?: Array<TrajectoryDay>;
3074
+ /**
3075
+ * Total distinct pairs; None while the cache is cold
3076
+ */
3077
+ total?: (number | null);
3078
+ /**
3079
+ * Distinct pairs judged on the last finished day
3080
+ */
3081
+ daily_rate?: (number | null);
3082
+ /**
3083
+ * Distinct pairs judged over the last seven finished days
3084
+ */
3085
+ weekly_rate?: (number | null);
3086
+ /**
3087
+ * When the counts were last refreshed
3088
+ */
3089
+ updated_at?: (string | null);
3090
+ };
2939
3091
  type UpdateValidatorRequest = {
2940
3092
  /**
2941
3093
  * Maximum concurrent evaluation runs (must be >= 1)
@@ -3458,6 +3610,8 @@ type GetLeaderboardResponse = (LeaderboardResponse);
3458
3610
  type GetLeaderboardError = (HTTPValidationError);
3459
3611
  type GetTopAgentResponse = (TopAgentResponse);
3460
3612
  type GetTopAgentError = unknown;
3613
+ type GetTrajectoryHistoryResponse = (TrajectoryHistoryResponse);
3614
+ type GetTrajectoryHistoryError = unknown;
3461
3615
  type GetTopMinerPayoutResponse = (TopMinerPayoutResponse);
3462
3616
  type GetTopMinerPayoutError = unknown;
3463
3617
  type GetTopHistoryData = {
@@ -4229,6 +4383,48 @@ type PostValidatorResumeData = {
4229
4383
  };
4230
4384
  type PostValidatorResumeResponse = (ValidatorPauseStatus);
4231
4385
  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);
4232
4428
  type ApiProblemsData = {
4233
4429
  headers?: {
4234
4430
  'X-Demo-Auth'?: (string | null);
@@ -4307,6 +4503,11 @@ declare const getLeaderboard: <ThrowOnError extends boolean = false>(options?: O
4307
4503
  * Get the canonical top miner for emissions calculation.
4308
4504
  */
4309
4505
  declare const getTopAgent: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TopAgentResponse, unknown, ThrowOnError>;
4506
+ /**
4507
+ * Get distinct trajectory history
4508
+ * Daily counts of distinct (agent_version, problem) pairs judged, with a running total and daily/weekly velocity. Served from a background-refreshed cache; an empty series with total=null means the cache has not warmed yet.
4509
+ */
4510
+ declare const getTrajectoryHistory: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TrajectoryHistoryResponse, unknown, ThrowOnError>;
4310
4511
  /**
4311
4512
  * Get top miner payout rate
4312
4513
  * Get the current top miner's estimated emission payout rate in TAO/day and USD/day. Uses the cached metagraph and a periodically refreshed TAO/USD price.
@@ -4769,6 +4970,26 @@ declare const postValidatorPause: <ThrowOnError extends boolean = false>(options
4769
4970
  * Resume validator claims (release the andon cord)
4770
4971
  */
4771
4972
  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>;
4772
4993
  /**
4773
4994
  * Api Problems
4774
4995
  */
@@ -5129,4 +5350,4 @@ declare class SessionAuthManager {
5129
5350
  */
5130
5351
  declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
5131
5352
 
5132
- 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 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 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 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 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 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 RunAlreadyCompleteError, type RunProblemsResponse, type RunningEvaluation, 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 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, 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, getValidatorFailures, getValidatorPause, getValidatorResourceSamples, getValidatorScores, getValidators, getWeightSalt, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, 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 };
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 };
package/dist/index.d.ts CHANGED
@@ -926,6 +926,20 @@ type ChallengeResponse = {
926
926
  */
927
927
  expires_at: number;
928
928
  };
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
+ type CheckSummary = {
939
+ passed?: number;
940
+ failed?: number;
941
+ unknown?: number;
942
+ };
929
943
  type ChutesAuthStatusResponse = {
930
944
  /**
931
945
  * Whether the miner has a valid Chutes token stored
@@ -1219,6 +1233,42 @@ type EvalRunNotFoundError = {
1219
1233
  */
1220
1234
  error_code?: "EVAL_RUN_NOT_FOUND";
1221
1235
  };
1236
+ type EvaluationExecutionRead = {
1237
+ eval_run_id: string;
1238
+ agent_version_id: string;
1239
+ suite_id: number;
1240
+ validator_hotkey: string;
1241
+ status: string;
1242
+ completed_at: (string | null);
1243
+ score: (number | null);
1244
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1245
+ execution_contract_id?: (string | null);
1246
+ environment?: (SafeEnvironmentMetadata | null);
1247
+ };
1248
+ type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1249
+ type EvaluationItemRead = {
1250
+ item_id: string;
1251
+ item_kind: 'legacy_problem' | 'envpack_episode';
1252
+ family?: (string | null);
1253
+ status: string;
1254
+ score?: (number | null);
1255
+ verdict_status?: ('passed' | 'failed' | null);
1256
+ paid_reward?: (number | null);
1257
+ check_summary?: (CheckSummary | null);
1258
+ reward_summary?: (RewardSummary | null);
1259
+ step_count?: (number | null);
1260
+ eval_run_id: string;
1261
+ validator_hotkey: string;
1262
+ };
1263
+ type item_kind = 'legacy_problem' | 'envpack_episode';
1264
+ type EvaluationItemsRead = {
1265
+ eval_run_id: string;
1266
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1267
+ detail_released: boolean;
1268
+ expected_item_count?: (number | null);
1269
+ persisted_item_count: number;
1270
+ items: Array<EvaluationItemRead>;
1271
+ };
1222
1272
  /**
1223
1273
  * Which phase of the qualifying+race cycle an evaluation belongs to.
1224
1274
  */
@@ -2108,6 +2158,11 @@ type ProgressUpdateResponse = {
2108
2158
  */
2109
2159
  accepted?: boolean;
2110
2160
  };
2161
+ type QualifyingTaskRead = {
2162
+ task_id: string;
2163
+ family: string;
2164
+ goal_text: string;
2165
+ };
2111
2166
  type RaceCurrentResponse = {
2112
2167
  /**
2113
2168
  * Current race, if any
@@ -2569,6 +2624,19 @@ type ReinstateRequest = {
2569
2624
  */
2570
2625
  reason?: (string | null);
2571
2626
  };
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
+ type RewardSummary = {
2638
+ component_count?: number;
2639
+ };
2572
2640
  type RunAlreadyCompleteError = {
2573
2641
  /**
2574
2642
  * Error message describing what went wrong
@@ -2631,6 +2699,45 @@ type RunProblemsResponse = {
2631
2699
  */
2632
2700
  problems: Array<ProblemPublic>;
2633
2701
  };
2702
+ type SafeEnvironmentMetadata = {
2703
+ display_name: string;
2704
+ /**
2705
+ * Short audit revision; never a storage key
2706
+ */
2707
+ environment_revision: string;
2708
+ catalog_epoch: string;
2709
+ task_count: number;
2710
+ family_counts: {
2711
+ [key: string]: (number);
2712
+ };
2713
+ contract_version: string;
2714
+ runtime_version: string;
2715
+ tool_contract_version: string;
2716
+ verifier_version: string;
2717
+ result_schema_version: string;
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';
2634
2741
  /**
2635
2742
  * 400 - Candidate score does not exceed the challenge threshold.
2636
2743
  */
@@ -2791,6 +2898,15 @@ type SubmitAgentResponse = {
2791
2898
  */
2792
2899
  message?: string;
2793
2900
  };
2901
+ type SuiteExecutionRead = {
2902
+ suite_id: number;
2903
+ is_active: boolean;
2904
+ is_archived: boolean;
2905
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
2906
+ execution_contract_id?: (string | null);
2907
+ environment?: (SafeEnvironmentMetadata | null);
2908
+ qualifying_tasks?: (Array<QualifyingTaskRead> | null);
2909
+ };
2794
2910
  type SuiteNotFoundError = {
2795
2911
  /**
2796
2912
  * Error message describing what went wrong
@@ -2936,6 +3052,42 @@ type TopMinerPayoutResponse = {
2936
3052
  */
2937
3053
  as_of: string;
2938
3054
  };
3055
+ type TrajectoryDay = {
3056
+ /**
3057
+ * ISO date of the day (UTC)
3058
+ */
3059
+ date: string;
3060
+ /**
3061
+ * Distinct (agent_version, problem) pairs judged this day
3062
+ */
3063
+ distinct: number;
3064
+ /**
3065
+ * Running total of distinct pairs up to this day
3066
+ */
3067
+ cumulative: number;
3068
+ };
3069
+ type TrajectoryHistoryResponse = {
3070
+ /**
3071
+ * Daily distinct-trajectory counts
3072
+ */
3073
+ series?: Array<TrajectoryDay>;
3074
+ /**
3075
+ * Total distinct pairs; None while the cache is cold
3076
+ */
3077
+ total?: (number | null);
3078
+ /**
3079
+ * Distinct pairs judged on the last finished day
3080
+ */
3081
+ daily_rate?: (number | null);
3082
+ /**
3083
+ * Distinct pairs judged over the last seven finished days
3084
+ */
3085
+ weekly_rate?: (number | null);
3086
+ /**
3087
+ * When the counts were last refreshed
3088
+ */
3089
+ updated_at?: (string | null);
3090
+ };
2939
3091
  type UpdateValidatorRequest = {
2940
3092
  /**
2941
3093
  * Maximum concurrent evaluation runs (must be >= 1)
@@ -3458,6 +3610,8 @@ type GetLeaderboardResponse = (LeaderboardResponse);
3458
3610
  type GetLeaderboardError = (HTTPValidationError);
3459
3611
  type GetTopAgentResponse = (TopAgentResponse);
3460
3612
  type GetTopAgentError = unknown;
3613
+ type GetTrajectoryHistoryResponse = (TrajectoryHistoryResponse);
3614
+ type GetTrajectoryHistoryError = unknown;
3461
3615
  type GetTopMinerPayoutResponse = (TopMinerPayoutResponse);
3462
3616
  type GetTopMinerPayoutError = unknown;
3463
3617
  type GetTopHistoryData = {
@@ -4229,6 +4383,48 @@ type PostValidatorResumeData = {
4229
4383
  };
4230
4384
  type PostValidatorResumeResponse = (ValidatorPauseStatus);
4231
4385
  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);
4232
4428
  type ApiProblemsData = {
4233
4429
  headers?: {
4234
4430
  'X-Demo-Auth'?: (string | null);
@@ -4307,6 +4503,11 @@ declare const getLeaderboard: <ThrowOnError extends boolean = false>(options?: O
4307
4503
  * Get the canonical top miner for emissions calculation.
4308
4504
  */
4309
4505
  declare const getTopAgent: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TopAgentResponse, unknown, ThrowOnError>;
4506
+ /**
4507
+ * Get distinct trajectory history
4508
+ * Daily counts of distinct (agent_version, problem) pairs judged, with a running total and daily/weekly velocity. Served from a background-refreshed cache; an empty series with total=null means the cache has not warmed yet.
4509
+ */
4510
+ declare const getTrajectoryHistory: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TrajectoryHistoryResponse, unknown, ThrowOnError>;
4310
4511
  /**
4311
4512
  * Get top miner payout rate
4312
4513
  * Get the current top miner's estimated emission payout rate in TAO/day and USD/day. Uses the cached metagraph and a periodically refreshed TAO/USD price.
@@ -4769,6 +4970,26 @@ declare const postValidatorPause: <ThrowOnError extends boolean = false>(options
4769
4970
  * Resume validator claims (release the andon cord)
4770
4971
  */
4771
4972
  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>;
4772
4993
  /**
4773
4994
  * Api Problems
4774
4995
  */
@@ -5129,4 +5350,4 @@ declare class SessionAuthManager {
5129
5350
  */
5130
5351
  declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
5131
5352
 
5132
- 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 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 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 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 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 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 RunAlreadyCompleteError, type RunProblemsResponse, type RunningEvaluation, 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 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, 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, getValidatorFailures, getValidatorPause, getValidatorResourceSamples, getValidatorScores, getValidators, getWeightSalt, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, 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 };
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 };
package/dist/index.js CHANGED
@@ -70,9 +70,13 @@ __export(index_exports, {
70
70
  getCurrentRace: () => getCurrentRace,
71
71
  getCurrentRaces: () => getCurrentRaces,
72
72
  getCurrentSuite: () => getCurrentSuite,
73
+ getCurrentSuiteV2: () => getCurrentSuiteV2,
74
+ getEpisodeArtifactV2: () => getEpisodeArtifactV2,
73
75
  getErrorCode: () => getErrorCode,
74
76
  getErrorDetail: () => getErrorDetail,
77
+ getEvaluationItemsV2: () => getEvaluationItemsV2,
75
78
  getEvaluationRun: () => getEvaluationRun,
79
+ getEvaluationRunV2: () => getEvaluationRunV2,
76
80
  getInferenceAuthStatusOne: () => getInferenceAuthStatusOne,
77
81
  getInferenceModels: () => getInferenceModels,
78
82
  getLeaderboard: () => getLeaderboard,
@@ -86,9 +90,11 @@ __export(index_exports, {
86
90
  getRunProblems: () => getRunProblems,
87
91
  getRunningEvaluations: () => getRunningEvaluations,
88
92
  getSuiteProblems: () => getSuiteProblems,
93
+ getSuiteV2: () => getSuiteV2,
89
94
  getTopAgent: () => getTopAgent,
90
95
  getTopHistory: () => getTopHistory,
91
96
  getTopMinerPayout: () => getTopMinerPayout,
97
+ getTrajectoryHistory: () => getTrajectoryHistory,
92
98
  getValidatorFailures: () => getValidatorFailures,
93
99
  getValidatorPause: () => getValidatorPause,
94
100
  getValidatorResourceSamples: () => getValidatorResourceSamples,
@@ -178,6 +184,12 @@ var getTopAgent = (options) => {
178
184
  url: "/v1/public/top"
179
185
  });
180
186
  };
187
+ var getTrajectoryHistory = (options) => {
188
+ return (options?.client ?? client).get({
189
+ ...options,
190
+ url: "/v1/public/trajectories/history"
191
+ });
192
+ };
181
193
  var getTopMinerPayout = (options) => {
182
194
  return (options?.client ?? client).get({
183
195
  ...options,
@@ -627,6 +639,36 @@ var postValidatorResume = (options) => {
627
639
  url: "/v1/admin/validator-resume"
628
640
  });
629
641
  };
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
+ };
630
672
  var apiProblems = (options) => {
631
673
  return (options?.client ?? client).get({
632
674
  ...options,
@@ -1041,9 +1083,13 @@ function configureSessionAuth(baseUrl, config) {
1041
1083
  getCurrentRace,
1042
1084
  getCurrentRaces,
1043
1085
  getCurrentSuite,
1086
+ getCurrentSuiteV2,
1087
+ getEpisodeArtifactV2,
1044
1088
  getErrorCode,
1045
1089
  getErrorDetail,
1090
+ getEvaluationItemsV2,
1046
1091
  getEvaluationRun,
1092
+ getEvaluationRunV2,
1047
1093
  getInferenceAuthStatusOne,
1048
1094
  getInferenceModels,
1049
1095
  getLeaderboard,
@@ -1057,9 +1103,11 @@ function configureSessionAuth(baseUrl, config) {
1057
1103
  getRunProblems,
1058
1104
  getRunningEvaluations,
1059
1105
  getSuiteProblems,
1106
+ getSuiteV2,
1060
1107
  getTopAgent,
1061
1108
  getTopHistory,
1062
1109
  getTopMinerPayout,
1110
+ getTrajectoryHistory,
1063
1111
  getValidatorFailures,
1064
1112
  getValidatorPause,
1065
1113
  getValidatorResourceSamples,
package/dist/index.mjs CHANGED
@@ -43,6 +43,12 @@ var getTopAgent = (options) => {
43
43
  url: "/v1/public/top"
44
44
  });
45
45
  };
46
+ var getTrajectoryHistory = (options) => {
47
+ return (options?.client ?? client).get({
48
+ ...options,
49
+ url: "/v1/public/trajectories/history"
50
+ });
51
+ };
46
52
  var getTopMinerPayout = (options) => {
47
53
  return (options?.client ?? client).get({
48
54
  ...options,
@@ -492,6 +498,36 @@ var postValidatorResume = (options) => {
492
498
  url: "/v1/admin/validator-resume"
493
499
  });
494
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
+ };
495
531
  var apiProblems = (options) => {
496
532
  return (options?.client ?? client).get({
497
533
  ...options,
@@ -905,9 +941,13 @@ export {
905
941
  getCurrentRace,
906
942
  getCurrentRaces,
907
943
  getCurrentSuite,
944
+ getCurrentSuiteV2,
945
+ getEpisodeArtifactV2,
908
946
  getErrorCode,
909
947
  getErrorDetail,
948
+ getEvaluationItemsV2,
910
949
  getEvaluationRun,
950
+ getEvaluationRunV2,
911
951
  getInferenceAuthStatusOne,
912
952
  getInferenceModels,
913
953
  getLeaderboard,
@@ -921,9 +961,11 @@ export {
921
961
  getRunProblems,
922
962
  getRunningEvaluations,
923
963
  getSuiteProblems,
964
+ getSuiteV2,
924
965
  getTopAgent,
925
966
  getTopHistory,
926
967
  getTopMinerPayout,
968
+ getTrajectoryHistory,
927
969
  getValidatorFailures,
928
970
  getValidatorPause,
929
971
  getValidatorResourceSamples,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oro-ai/sdk",
3
- "version": "1.0.99",
3
+ "version": "1.0.101",
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, 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';
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';
5
5
 
6
6
  export const client = createClient(createConfig());
7
7
 
@@ -98,6 +98,17 @@ export const getTopAgent = <ThrowOnError extends boolean = false>(options?: Opti
98
98
  });
99
99
  };
100
100
 
101
+ /**
102
+ * Get distinct trajectory history
103
+ * Daily counts of distinct (agent_version, problem) pairs judged, with a running total and daily/weekly velocity. Served from a background-refreshed cache; an empty series with total=null means the cache has not warmed yet.
104
+ */
105
+ export const getTrajectoryHistory = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => {
106
+ return (options?.client ?? client).get<GetTrajectoryHistoryResponse, GetTrajectoryHistoryError, ThrowOnError>({
107
+ ...options,
108
+ url: '/v1/public/trajectories/history'
109
+ });
110
+ };
111
+
101
112
  /**
102
113
  * Get top miner payout rate
103
114
  * Get the current top miner's estimated emission payout rate in TAO/day and USD/day. Uses the cached metagraph and a periodically refreshed TAO/USD price.
@@ -1009,6 +1020,56 @@ export const postValidatorResume = <ThrowOnError extends boolean = false>(option
1009
1020
  });
1010
1021
  };
1011
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
+
1012
1073
  /**
1013
1074
  * Api Problems
1014
1075
  */
@@ -966,6 +966,22 @@ export type ChallengeResponse = {
966
966
  expires_at: number;
967
967
  };
968
968
 
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
+ export type CheckSummary = {
980
+ passed?: number;
981
+ failed?: number;
982
+ unknown?: number;
983
+ };
984
+
969
985
  export type ChutesAuthStatusResponse = {
970
986
  /**
971
987
  * Whether the miner has a valid Chutes token stored
@@ -1276,6 +1292,47 @@ export type EvalRunNotFoundError = {
1276
1292
  error_code?: "EVAL_RUN_NOT_FOUND";
1277
1293
  };
1278
1294
 
1295
+ export type EvaluationExecutionRead = {
1296
+ eval_run_id: string;
1297
+ agent_version_id: string;
1298
+ suite_id: number;
1299
+ validator_hotkey: string;
1300
+ status: string;
1301
+ completed_at: (string | null);
1302
+ score: (number | null);
1303
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1304
+ execution_contract_id?: (string | null);
1305
+ environment?: (SafeEnvironmentMetadata | null);
1306
+ };
1307
+
1308
+ export type execution_kind = 'legacy_shoppingbench' | 'envpack' | 'unknown';
1309
+
1310
+ export type EvaluationItemRead = {
1311
+ item_id: string;
1312
+ item_kind: 'legacy_problem' | 'envpack_episode';
1313
+ family?: (string | null);
1314
+ status: string;
1315
+ score?: (number | null);
1316
+ verdict_status?: ('passed' | 'failed' | null);
1317
+ paid_reward?: (number | null);
1318
+ check_summary?: (CheckSummary | null);
1319
+ reward_summary?: (RewardSummary | null);
1320
+ step_count?: (number | null);
1321
+ eval_run_id: string;
1322
+ validator_hotkey: string;
1323
+ };
1324
+
1325
+ export type item_kind = 'legacy_problem' | 'envpack_episode';
1326
+
1327
+ export type EvaluationItemsRead = {
1328
+ eval_run_id: string;
1329
+ execution_kind: 'legacy_shoppingbench' | 'envpack' | 'unknown';
1330
+ detail_released: boolean;
1331
+ expected_item_count?: (number | null);
1332
+ persisted_item_count: number;
1333
+ items: Array<EvaluationItemRead>;
1334
+ };
1335
+
1279
1336
  /**
1280
1337
  * Which phase of the qualifying+race cycle an evaluation belongs to.
1281
1338
  */
@@ -2213,6 +2270,12 @@ export type ProgressUpdateResponse = {
2213
2270
  accepted?: boolean;
2214
2271
  };
2215
2272
 
2273
+ export type QualifyingTaskRead = {
2274
+ task_id: string;
2275
+ family: string;
2276
+ goal_text: string;
2277
+ };
2278
+
2216
2279
  export type RaceCurrentResponse = {
2217
2280
  /**
2218
2281
  * Current race, if any
@@ -2696,6 +2759,21 @@ export type ReinstateRequest = {
2696
2759
  reason?: (string | null);
2697
2760
  };
2698
2761
 
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
+ export type RewardSummary = {
2774
+ component_count?: number;
2775
+ };
2776
+
2699
2777
  export type RunAlreadyCompleteError = {
2700
2778
  /**
2701
2779
  * Error message describing what went wrong
@@ -2761,6 +2839,49 @@ export type RunProblemsResponse = {
2761
2839
  problems: Array<ProblemPublic>;
2762
2840
  };
2763
2841
 
2842
+ export type SafeEnvironmentMetadata = {
2843
+ display_name: string;
2844
+ /**
2845
+ * Short audit revision; never a storage key
2846
+ */
2847
+ environment_revision: string;
2848
+ catalog_epoch: string;
2849
+ task_count: number;
2850
+ family_counts: {
2851
+ [key: string]: (number);
2852
+ };
2853
+ contract_version: string;
2854
+ runtime_version: string;
2855
+ tool_contract_version: string;
2856
+ verifier_version: string;
2857
+ result_schema_version: string;
2858
+ };
2859
+
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
+
2764
2885
  /**
2765
2886
  * 400 - Candidate score does not exceed the challenge threshold.
2766
2887
  */
@@ -2932,6 +3053,16 @@ export type SubmitAgentResponse = {
2932
3053
  message?: string;
2933
3054
  };
2934
3055
 
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
+
2935
3066
  export type SuiteNotFoundError = {
2936
3067
  /**
2937
3068
  * Error message describing what went wrong
@@ -3085,6 +3216,44 @@ export type TopMinerPayoutResponse = {
3085
3216
  as_of: string;
3086
3217
  };
3087
3218
 
3219
+ export type TrajectoryDay = {
3220
+ /**
3221
+ * ISO date of the day (UTC)
3222
+ */
3223
+ date: string;
3224
+ /**
3225
+ * Distinct (agent_version, problem) pairs judged this day
3226
+ */
3227
+ distinct: number;
3228
+ /**
3229
+ * Running total of distinct pairs up to this day
3230
+ */
3231
+ cumulative: number;
3232
+ };
3233
+
3234
+ export type TrajectoryHistoryResponse = {
3235
+ /**
3236
+ * Daily distinct-trajectory counts
3237
+ */
3238
+ series?: Array<TrajectoryDay>;
3239
+ /**
3240
+ * Total distinct pairs; None while the cache is cold
3241
+ */
3242
+ total?: (number | null);
3243
+ /**
3244
+ * Distinct pairs judged on the last finished day
3245
+ */
3246
+ daily_rate?: (number | null);
3247
+ /**
3248
+ * Distinct pairs judged over the last seven finished days
3249
+ */
3250
+ weekly_rate?: (number | null);
3251
+ /**
3252
+ * When the counts were last refreshed
3253
+ */
3254
+ updated_at?: (string | null);
3255
+ };
3256
+
3088
3257
  export type UpdateValidatorRequest = {
3089
3258
  /**
3090
3259
  * Maximum concurrent evaluation runs (must be >= 1)
@@ -3645,6 +3814,10 @@ export type GetTopAgentResponse = (TopAgentResponse);
3645
3814
 
3646
3815
  export type GetTopAgentError = unknown;
3647
3816
 
3817
+ export type GetTrajectoryHistoryResponse = (TrajectoryHistoryResponse);
3818
+
3819
+ export type GetTrajectoryHistoryError = unknown;
3820
+
3648
3821
  export type GetTopMinerPayoutResponse = (TopMinerPayoutResponse);
3649
3822
 
3650
3823
  export type GetTopMinerPayoutError = unknown;
@@ -4625,6 +4798,62 @@ export type PostValidatorResumeResponse = (ValidatorPauseStatus);
4625
4798
 
4626
4799
  export type PostValidatorResumeError = (HTTPValidationError);
4627
4800
 
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
+
4628
4857
  export type ApiProblemsData = {
4629
4858
  headers?: {
4630
4859
  'X-Demo-Auth'?: (string | null);