@oro-ai/sdk 1.0.5 → 1.0.7
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 +120 -1
- package/dist/index.d.ts +120 -1
- package/dist/index.js +8 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +12 -1
- package/src/generated/types.gen.ts +119 -0
package/dist/index.d.mts
CHANGED
|
@@ -236,6 +236,90 @@ type AdminMinersResponse = {
|
|
|
236
236
|
*/
|
|
237
237
|
offset: number;
|
|
238
238
|
};
|
|
239
|
+
/**
|
|
240
|
+
* Extends ValidatorPublic with admin-only fields (ban status).
|
|
241
|
+
*/
|
|
242
|
+
type AdminValidatorEntry = {
|
|
243
|
+
/**
|
|
244
|
+
* Validator's SS58 address
|
|
245
|
+
*/
|
|
246
|
+
hotkey: string;
|
|
247
|
+
/**
|
|
248
|
+
* On-chain identity name, if set
|
|
249
|
+
*/
|
|
250
|
+
name?: (string | null);
|
|
251
|
+
/**
|
|
252
|
+
* Current validator status
|
|
253
|
+
*/
|
|
254
|
+
status: ValidatorStatus;
|
|
255
|
+
/**
|
|
256
|
+
* When validator was registered
|
|
257
|
+
*/
|
|
258
|
+
registered_at: string;
|
|
259
|
+
/**
|
|
260
|
+
* Last work claim time
|
|
261
|
+
*/
|
|
262
|
+
last_claim_at?: (string | null);
|
|
263
|
+
/**
|
|
264
|
+
* Last time validator was seen
|
|
265
|
+
*/
|
|
266
|
+
last_seen_at?: (string | null);
|
|
267
|
+
/**
|
|
268
|
+
* Agent currently being evaluated, if any
|
|
269
|
+
*/
|
|
270
|
+
current_agent?: (ValidatorCurrentAgent | null);
|
|
271
|
+
/**
|
|
272
|
+
* Docker image digests for validator stack services
|
|
273
|
+
*/
|
|
274
|
+
service_versions?: ({
|
|
275
|
+
[key: string]: (string);
|
|
276
|
+
} | null);
|
|
277
|
+
/**
|
|
278
|
+
* On-chain identity URL
|
|
279
|
+
*/
|
|
280
|
+
identity_url?: (string | null);
|
|
281
|
+
/**
|
|
282
|
+
* On-chain identity image URL
|
|
283
|
+
*/
|
|
284
|
+
identity_image?: (string | null);
|
|
285
|
+
/**
|
|
286
|
+
* On-chain identity description
|
|
287
|
+
*/
|
|
288
|
+
identity_description?: (string | null);
|
|
289
|
+
/**
|
|
290
|
+
* Whether banned
|
|
291
|
+
*/
|
|
292
|
+
is_banned: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Ban reason
|
|
295
|
+
*/
|
|
296
|
+
ban_reason?: (string | null);
|
|
297
|
+
/**
|
|
298
|
+
* When banned
|
|
299
|
+
*/
|
|
300
|
+
banned_at?: (string | null);
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* Response for admin validators listing.
|
|
304
|
+
*/
|
|
305
|
+
type AdminValidatorsResponse = {
|
|
306
|
+
/**
|
|
307
|
+
* List of validators
|
|
308
|
+
*/
|
|
309
|
+
validators: Array<AdminValidatorEntry>;
|
|
310
|
+
/**
|
|
311
|
+
* Total matching filter
|
|
312
|
+
*/
|
|
313
|
+
total: number;
|
|
314
|
+
/**
|
|
315
|
+
* Page size
|
|
316
|
+
*/
|
|
317
|
+
limit: number;
|
|
318
|
+
/**
|
|
319
|
+
* Page offset
|
|
320
|
+
*/
|
|
321
|
+
offset: number;
|
|
322
|
+
};
|
|
239
323
|
/**
|
|
240
324
|
* Reason for rejection of agent submission.
|
|
241
325
|
*/
|
|
@@ -993,6 +1077,18 @@ type EvaluationRunDetail = {
|
|
|
993
1077
|
* Validator-reported failure reason
|
|
994
1078
|
*/
|
|
995
1079
|
failure_reason?: (string | null);
|
|
1080
|
+
/**
|
|
1081
|
+
* Whether run is included in aggregate scoring
|
|
1082
|
+
*/
|
|
1083
|
+
is_included?: boolean;
|
|
1084
|
+
/**
|
|
1085
|
+
* When run was invalidated
|
|
1086
|
+
*/
|
|
1087
|
+
invalidated_at?: (string | null);
|
|
1088
|
+
/**
|
|
1089
|
+
* Reason for invalidation
|
|
1090
|
+
*/
|
|
1091
|
+
invalidation_reason?: (string | null);
|
|
996
1092
|
};
|
|
997
1093
|
/**
|
|
998
1094
|
* Public representation of an evaluation run.
|
|
@@ -2675,6 +2771,24 @@ type ListMinersData = {
|
|
|
2675
2771
|
};
|
|
2676
2772
|
type ListMinersResponse = (AdminMinersResponse);
|
|
2677
2773
|
type ListMinersError = (HTTPValidationError);
|
|
2774
|
+
type ListValidatorsData = {
|
|
2775
|
+
query?: {
|
|
2776
|
+
/**
|
|
2777
|
+
* Filter by ban status
|
|
2778
|
+
*/
|
|
2779
|
+
is_banned?: (boolean | null);
|
|
2780
|
+
/**
|
|
2781
|
+
* Page size
|
|
2782
|
+
*/
|
|
2783
|
+
limit?: number;
|
|
2784
|
+
/**
|
|
2785
|
+
* Offset
|
|
2786
|
+
*/
|
|
2787
|
+
offset?: number;
|
|
2788
|
+
};
|
|
2789
|
+
};
|
|
2790
|
+
type ListValidatorsResponse = (AdminValidatorsResponse);
|
|
2791
|
+
type ListValidatorsError = (HTTPValidationError);
|
|
2678
2792
|
type ListAgentVersions1Data = {
|
|
2679
2793
|
query?: {
|
|
2680
2794
|
/**
|
|
@@ -3053,6 +3167,11 @@ declare const clearMinerCooldown: <ThrowOnError extends boolean = false>(options
|
|
|
3053
3167
|
* List all miners with their ban status, agent count, and last submission time.
|
|
3054
3168
|
*/
|
|
3055
3169
|
declare const listMiners: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<ListMinersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AdminMinersResponse, HTTPValidationError, ThrowOnError>;
|
|
3170
|
+
/**
|
|
3171
|
+
* List validators including banned
|
|
3172
|
+
* List all validators including banned ones.
|
|
3173
|
+
*/
|
|
3174
|
+
declare const listValidators: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<ListValidatorsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AdminValidatorsResponse, HTTPValidationError, ThrowOnError>;
|
|
3056
3175
|
/**
|
|
3057
3176
|
* List agent versions with work item state
|
|
3058
3177
|
* List agent versions with aggregate and work item state for a specific suite.
|
|
@@ -3425,4 +3544,4 @@ declare class SessionAuthManager {
|
|
|
3425
3544
|
*/
|
|
3426
3545
|
declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
|
|
3427
3546
|
|
|
3428
|
-
export { type ActivateSuiteData, type ActivateSuiteError, type ActivateSuiteResponse, type ActivateSuiteResponse2, type AdminAgentVersionEntry, type AdminAgentVersionsResponse, type AdminEvaluationRunEntry, type AdminEvaluationRunsResponse, type AdminMinerEntry, type AdminMinersResponse, type AdmissionReason, type AdmissionStatus, 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 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 ClearMinerCooldownData, type ClearMinerCooldownError, type ClearMinerCooldownResponse, 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 DiscardAgentVersionData, type DiscardAgentVersionError, type DiscardAgentVersionResponse, type DiscardRequest, type DiscardResponse, type ErrorCategory, type EvalRunNotFoundError, type EvaluationRunDetail, type EvaluationRunPublic, type EvaluationRunStatus, type EvaluationRunStatusPublic, type FileTooLargeError, 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 GetCurrentSuiteError, type GetCurrentSuiteResponse, type GetEvaluationRunData, type GetEvaluationRunError, type GetEvaluationRunResponse, type GetLeaderboardData, type GetLeaderboardError, type GetLeaderboardResponse, type GetOwnedAgentVersionStatusData, type GetOwnedAgentVersionStatusError, type GetOwnedAgentVersionStatusResponse, type GetPendingEvaluationsData, type GetPendingEvaluationsError, type GetPendingEvaluationsResponse, type GetReaperStatsError, type GetReaperStatsResponse, type GetRunningEvaluationsError, type GetRunningEvaluationsResponse, type GetSuiteProblemsData, type GetSuiteProblemsError, type GetSuiteProblemsResponse, type GetTopAgentError, type GetTopAgentResponse, type GetValidatorScoresData, type GetValidatorScoresError, type GetValidatorScoresResponse, type GetValidatorsError, type GetValidatorsResponse, type HTTPValidationError, type HealthCheckError, type HealthCheckResponse, type HeartbeatData, type HeartbeatError, type HeartbeatRequest, type HeartbeatResponse, type HeartbeatResponse2, 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 ListMinerAgentsError, type ListMinerAgentsResponse, type ListMinersData, type ListMinersError, type ListMinersResponse, type LogoutData, type LogoutError, type LogoutResponse, type LogoutResponse2, type MinerAgentsResponse, type MinerNotFoundError, type MissingParameterError, type MissingScoreError, type NoActiveSuiteError, type NotRunOwnerError, type OroErrorCode, type PendingEvaluation, type PendingEvaluationSummary, type PendingEvaluationsResponse, 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 RateLimitExceededError, type ReaperStatsResponse, type ReevaluateAgentVersionData, type ReevaluateAgentVersionError, type ReevaluateAgentVersionResponse, type ReevaluateRequest, type ReevaluateResponse, type ReinstateAgentVersionData, type ReinstateAgentVersionError, type ReinstateAgentVersionResponse, type ReinstateRequest, type RequestChallengeData, type RequestChallengeError, type RequestChallengeResponse, type RetryConfig, type RetryContext, type RunAlreadyCompleteError, type RunningEvaluation, type ScoreBelowThresholdError, type SessionAuthConfig, SessionAuthManager, type SessionInfo, type SessionRequest, type SessionResponse, type SetTopAgentData, type SetTopAgentError, type SetTopAgentResponse, type SetTopRequest, type SetTopResponse, type StoreChutesTokenData, type StoreChutesTokenError, type StoreChutesTokenRequest, type StoreChutesTokenResponse, type SubmitAgentData, type SubmitAgentError, type SubmitAgentResponse, type SubmitAgentResponse2, type SuiteNotFoundError, type SuitePublic, type SuiteWithProblemsResponse, type TerminalStatus, type TopAgentResponse, type UnbanMinerData, type UnbanMinerError, type UnbanMinerResponse, type UnbanValidatorData, type UnbanValidatorError, type UnbanValidatorResponse, type UpdateProgressData, type UpdateProgressError, type UpdateProgressResponse, type ValidationError, type ValidatorCurrentAgent, type ValidatorNotFoundError, type ValidatorProblemResult, type ValidatorPublic, type ValidatorScoreSummary, type ValidatorScoresResponse, type ValidatorStatus, type WaitlistSignupRequest, type WaitlistSignupResponse, type WorkItemStatus, activateSuite, banMiner, banValidator, cancelAgentVersion, claimWork, classifyError, classifyStatus, clearMinerCooldown, client, completeRun, computeDelay, configureBittensorAuth, configurePublicClient, configureSessionAuth, createRetryFetch, createSessionEndpoint, createSuite, discardAgentVersion, generateAuthHeaders, getAgentVersion, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getReaperStats, getRunningEvaluations, getSuiteProblems, getTopAgent, getValidatorScores, getValidators, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, joinWaitlist, listAgentVersions, listAgentVersions1, listEvaluationRuns, listMinerAgents, listMiners, logout, parseRetryAfter, presignUpload, reevaluateAgentVersion, reinstateAgentVersion, requestChallenge, setTopAgent, storeChutesToken, submitAgent, unbanMiner, unbanValidator, updateProgress };
|
|
3547
|
+
export { type ActivateSuiteData, type ActivateSuiteError, type ActivateSuiteResponse, type ActivateSuiteResponse2, type AdminAgentVersionEntry, type AdminAgentVersionsResponse, type AdminEvaluationRunEntry, type AdminEvaluationRunsResponse, type AdminMinerEntry, type AdminMinersResponse, type AdminValidatorEntry, type AdminValidatorsResponse, type AdmissionReason, type AdmissionStatus, 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 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 ClearMinerCooldownData, type ClearMinerCooldownError, type ClearMinerCooldownResponse, 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 DiscardAgentVersionData, type DiscardAgentVersionError, type DiscardAgentVersionResponse, type DiscardRequest, type DiscardResponse, type ErrorCategory, type EvalRunNotFoundError, type EvaluationRunDetail, type EvaluationRunPublic, type EvaluationRunStatus, type EvaluationRunStatusPublic, type FileTooLargeError, 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 GetCurrentSuiteError, type GetCurrentSuiteResponse, type GetEvaluationRunData, type GetEvaluationRunError, type GetEvaluationRunResponse, type GetLeaderboardData, type GetLeaderboardError, type GetLeaderboardResponse, type GetOwnedAgentVersionStatusData, type GetOwnedAgentVersionStatusError, type GetOwnedAgentVersionStatusResponse, type GetPendingEvaluationsData, type GetPendingEvaluationsError, type GetPendingEvaluationsResponse, type GetReaperStatsError, type GetReaperStatsResponse, type GetRunningEvaluationsError, type GetRunningEvaluationsResponse, type GetSuiteProblemsData, type GetSuiteProblemsError, type GetSuiteProblemsResponse, type GetTopAgentError, type GetTopAgentResponse, type GetValidatorScoresData, type GetValidatorScoresError, type GetValidatorScoresResponse, type GetValidatorsError, type GetValidatorsResponse, type HTTPValidationError, type HealthCheckError, type HealthCheckResponse, type HeartbeatData, type HeartbeatError, type HeartbeatRequest, type HeartbeatResponse, type HeartbeatResponse2, 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 ListMinerAgentsError, type ListMinerAgentsResponse, type ListMinersData, type ListMinersError, type ListMinersResponse, type ListValidatorsData, type ListValidatorsError, type ListValidatorsResponse, type LogoutData, type LogoutError, type LogoutResponse, type LogoutResponse2, type MinerAgentsResponse, type MinerNotFoundError, type MissingParameterError, type MissingScoreError, type NoActiveSuiteError, type NotRunOwnerError, type OroErrorCode, type PendingEvaluation, type PendingEvaluationSummary, type PendingEvaluationsResponse, 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 RateLimitExceededError, type ReaperStatsResponse, type ReevaluateAgentVersionData, type ReevaluateAgentVersionError, type ReevaluateAgentVersionResponse, type ReevaluateRequest, type ReevaluateResponse, type ReinstateAgentVersionData, type ReinstateAgentVersionError, type ReinstateAgentVersionResponse, type ReinstateRequest, type RequestChallengeData, type RequestChallengeError, type RequestChallengeResponse, type RetryConfig, type RetryContext, type RunAlreadyCompleteError, type RunningEvaluation, type ScoreBelowThresholdError, type SessionAuthConfig, SessionAuthManager, type SessionInfo, type SessionRequest, type SessionResponse, type SetTopAgentData, type SetTopAgentError, type SetTopAgentResponse, type SetTopRequest, type SetTopResponse, type StoreChutesTokenData, type StoreChutesTokenError, type StoreChutesTokenRequest, type StoreChutesTokenResponse, type SubmitAgentData, type SubmitAgentError, type SubmitAgentResponse, type SubmitAgentResponse2, type SuiteNotFoundError, type SuitePublic, type SuiteWithProblemsResponse, type TerminalStatus, type TopAgentResponse, type UnbanMinerData, type UnbanMinerError, type UnbanMinerResponse, type UnbanValidatorData, type UnbanValidatorError, type UnbanValidatorResponse, type UpdateProgressData, type UpdateProgressError, type UpdateProgressResponse, type ValidationError, type ValidatorCurrentAgent, type ValidatorNotFoundError, type ValidatorProblemResult, type ValidatorPublic, type ValidatorScoreSummary, type ValidatorScoresResponse, type ValidatorStatus, type WaitlistSignupRequest, type WaitlistSignupResponse, type WorkItemStatus, activateSuite, banMiner, banValidator, cancelAgentVersion, claimWork, classifyError, classifyStatus, clearMinerCooldown, client, completeRun, computeDelay, configureBittensorAuth, configurePublicClient, configureSessionAuth, createRetryFetch, createSessionEndpoint, createSuite, discardAgentVersion, generateAuthHeaders, getAgentVersion, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getReaperStats, getRunningEvaluations, getSuiteProblems, getTopAgent, getValidatorScores, getValidators, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, joinWaitlist, listAgentVersions, listAgentVersions1, listEvaluationRuns, listMinerAgents, listMiners, listValidators, logout, parseRetryAfter, presignUpload, reevaluateAgentVersion, reinstateAgentVersion, requestChallenge, setTopAgent, storeChutesToken, submitAgent, unbanMiner, unbanValidator, updateProgress };
|
package/dist/index.d.ts
CHANGED
|
@@ -236,6 +236,90 @@ type AdminMinersResponse = {
|
|
|
236
236
|
*/
|
|
237
237
|
offset: number;
|
|
238
238
|
};
|
|
239
|
+
/**
|
|
240
|
+
* Extends ValidatorPublic with admin-only fields (ban status).
|
|
241
|
+
*/
|
|
242
|
+
type AdminValidatorEntry = {
|
|
243
|
+
/**
|
|
244
|
+
* Validator's SS58 address
|
|
245
|
+
*/
|
|
246
|
+
hotkey: string;
|
|
247
|
+
/**
|
|
248
|
+
* On-chain identity name, if set
|
|
249
|
+
*/
|
|
250
|
+
name?: (string | null);
|
|
251
|
+
/**
|
|
252
|
+
* Current validator status
|
|
253
|
+
*/
|
|
254
|
+
status: ValidatorStatus;
|
|
255
|
+
/**
|
|
256
|
+
* When validator was registered
|
|
257
|
+
*/
|
|
258
|
+
registered_at: string;
|
|
259
|
+
/**
|
|
260
|
+
* Last work claim time
|
|
261
|
+
*/
|
|
262
|
+
last_claim_at?: (string | null);
|
|
263
|
+
/**
|
|
264
|
+
* Last time validator was seen
|
|
265
|
+
*/
|
|
266
|
+
last_seen_at?: (string | null);
|
|
267
|
+
/**
|
|
268
|
+
* Agent currently being evaluated, if any
|
|
269
|
+
*/
|
|
270
|
+
current_agent?: (ValidatorCurrentAgent | null);
|
|
271
|
+
/**
|
|
272
|
+
* Docker image digests for validator stack services
|
|
273
|
+
*/
|
|
274
|
+
service_versions?: ({
|
|
275
|
+
[key: string]: (string);
|
|
276
|
+
} | null);
|
|
277
|
+
/**
|
|
278
|
+
* On-chain identity URL
|
|
279
|
+
*/
|
|
280
|
+
identity_url?: (string | null);
|
|
281
|
+
/**
|
|
282
|
+
* On-chain identity image URL
|
|
283
|
+
*/
|
|
284
|
+
identity_image?: (string | null);
|
|
285
|
+
/**
|
|
286
|
+
* On-chain identity description
|
|
287
|
+
*/
|
|
288
|
+
identity_description?: (string | null);
|
|
289
|
+
/**
|
|
290
|
+
* Whether banned
|
|
291
|
+
*/
|
|
292
|
+
is_banned: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Ban reason
|
|
295
|
+
*/
|
|
296
|
+
ban_reason?: (string | null);
|
|
297
|
+
/**
|
|
298
|
+
* When banned
|
|
299
|
+
*/
|
|
300
|
+
banned_at?: (string | null);
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* Response for admin validators listing.
|
|
304
|
+
*/
|
|
305
|
+
type AdminValidatorsResponse = {
|
|
306
|
+
/**
|
|
307
|
+
* List of validators
|
|
308
|
+
*/
|
|
309
|
+
validators: Array<AdminValidatorEntry>;
|
|
310
|
+
/**
|
|
311
|
+
* Total matching filter
|
|
312
|
+
*/
|
|
313
|
+
total: number;
|
|
314
|
+
/**
|
|
315
|
+
* Page size
|
|
316
|
+
*/
|
|
317
|
+
limit: number;
|
|
318
|
+
/**
|
|
319
|
+
* Page offset
|
|
320
|
+
*/
|
|
321
|
+
offset: number;
|
|
322
|
+
};
|
|
239
323
|
/**
|
|
240
324
|
* Reason for rejection of agent submission.
|
|
241
325
|
*/
|
|
@@ -993,6 +1077,18 @@ type EvaluationRunDetail = {
|
|
|
993
1077
|
* Validator-reported failure reason
|
|
994
1078
|
*/
|
|
995
1079
|
failure_reason?: (string | null);
|
|
1080
|
+
/**
|
|
1081
|
+
* Whether run is included in aggregate scoring
|
|
1082
|
+
*/
|
|
1083
|
+
is_included?: boolean;
|
|
1084
|
+
/**
|
|
1085
|
+
* When run was invalidated
|
|
1086
|
+
*/
|
|
1087
|
+
invalidated_at?: (string | null);
|
|
1088
|
+
/**
|
|
1089
|
+
* Reason for invalidation
|
|
1090
|
+
*/
|
|
1091
|
+
invalidation_reason?: (string | null);
|
|
996
1092
|
};
|
|
997
1093
|
/**
|
|
998
1094
|
* Public representation of an evaluation run.
|
|
@@ -2675,6 +2771,24 @@ type ListMinersData = {
|
|
|
2675
2771
|
};
|
|
2676
2772
|
type ListMinersResponse = (AdminMinersResponse);
|
|
2677
2773
|
type ListMinersError = (HTTPValidationError);
|
|
2774
|
+
type ListValidatorsData = {
|
|
2775
|
+
query?: {
|
|
2776
|
+
/**
|
|
2777
|
+
* Filter by ban status
|
|
2778
|
+
*/
|
|
2779
|
+
is_banned?: (boolean | null);
|
|
2780
|
+
/**
|
|
2781
|
+
* Page size
|
|
2782
|
+
*/
|
|
2783
|
+
limit?: number;
|
|
2784
|
+
/**
|
|
2785
|
+
* Offset
|
|
2786
|
+
*/
|
|
2787
|
+
offset?: number;
|
|
2788
|
+
};
|
|
2789
|
+
};
|
|
2790
|
+
type ListValidatorsResponse = (AdminValidatorsResponse);
|
|
2791
|
+
type ListValidatorsError = (HTTPValidationError);
|
|
2678
2792
|
type ListAgentVersions1Data = {
|
|
2679
2793
|
query?: {
|
|
2680
2794
|
/**
|
|
@@ -3053,6 +3167,11 @@ declare const clearMinerCooldown: <ThrowOnError extends boolean = false>(options
|
|
|
3053
3167
|
* List all miners with their ban status, agent count, and last submission time.
|
|
3054
3168
|
*/
|
|
3055
3169
|
declare const listMiners: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<ListMinersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AdminMinersResponse, HTTPValidationError, ThrowOnError>;
|
|
3170
|
+
/**
|
|
3171
|
+
* List validators including banned
|
|
3172
|
+
* List all validators including banned ones.
|
|
3173
|
+
*/
|
|
3174
|
+
declare const listValidators: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<ListValidatorsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AdminValidatorsResponse, HTTPValidationError, ThrowOnError>;
|
|
3056
3175
|
/**
|
|
3057
3176
|
* List agent versions with work item state
|
|
3058
3177
|
* List agent versions with aggregate and work item state for a specific suite.
|
|
@@ -3425,4 +3544,4 @@ declare class SessionAuthManager {
|
|
|
3425
3544
|
*/
|
|
3426
3545
|
declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
|
|
3427
3546
|
|
|
3428
|
-
export { type ActivateSuiteData, type ActivateSuiteError, type ActivateSuiteResponse, type ActivateSuiteResponse2, type AdminAgentVersionEntry, type AdminAgentVersionsResponse, type AdminEvaluationRunEntry, type AdminEvaluationRunsResponse, type AdminMinerEntry, type AdminMinersResponse, type AdmissionReason, type AdmissionStatus, 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 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 ClearMinerCooldownData, type ClearMinerCooldownError, type ClearMinerCooldownResponse, 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 DiscardAgentVersionData, type DiscardAgentVersionError, type DiscardAgentVersionResponse, type DiscardRequest, type DiscardResponse, type ErrorCategory, type EvalRunNotFoundError, type EvaluationRunDetail, type EvaluationRunPublic, type EvaluationRunStatus, type EvaluationRunStatusPublic, type FileTooLargeError, 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 GetCurrentSuiteError, type GetCurrentSuiteResponse, type GetEvaluationRunData, type GetEvaluationRunError, type GetEvaluationRunResponse, type GetLeaderboardData, type GetLeaderboardError, type GetLeaderboardResponse, type GetOwnedAgentVersionStatusData, type GetOwnedAgentVersionStatusError, type GetOwnedAgentVersionStatusResponse, type GetPendingEvaluationsData, type GetPendingEvaluationsError, type GetPendingEvaluationsResponse, type GetReaperStatsError, type GetReaperStatsResponse, type GetRunningEvaluationsError, type GetRunningEvaluationsResponse, type GetSuiteProblemsData, type GetSuiteProblemsError, type GetSuiteProblemsResponse, type GetTopAgentError, type GetTopAgentResponse, type GetValidatorScoresData, type GetValidatorScoresError, type GetValidatorScoresResponse, type GetValidatorsError, type GetValidatorsResponse, type HTTPValidationError, type HealthCheckError, type HealthCheckResponse, type HeartbeatData, type HeartbeatError, type HeartbeatRequest, type HeartbeatResponse, type HeartbeatResponse2, 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 ListMinerAgentsError, type ListMinerAgentsResponse, type ListMinersData, type ListMinersError, type ListMinersResponse, type LogoutData, type LogoutError, type LogoutResponse, type LogoutResponse2, type MinerAgentsResponse, type MinerNotFoundError, type MissingParameterError, type MissingScoreError, type NoActiveSuiteError, type NotRunOwnerError, type OroErrorCode, type PendingEvaluation, type PendingEvaluationSummary, type PendingEvaluationsResponse, 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 RateLimitExceededError, type ReaperStatsResponse, type ReevaluateAgentVersionData, type ReevaluateAgentVersionError, type ReevaluateAgentVersionResponse, type ReevaluateRequest, type ReevaluateResponse, type ReinstateAgentVersionData, type ReinstateAgentVersionError, type ReinstateAgentVersionResponse, type ReinstateRequest, type RequestChallengeData, type RequestChallengeError, type RequestChallengeResponse, type RetryConfig, type RetryContext, type RunAlreadyCompleteError, type RunningEvaluation, type ScoreBelowThresholdError, type SessionAuthConfig, SessionAuthManager, type SessionInfo, type SessionRequest, type SessionResponse, type SetTopAgentData, type SetTopAgentError, type SetTopAgentResponse, type SetTopRequest, type SetTopResponse, type StoreChutesTokenData, type StoreChutesTokenError, type StoreChutesTokenRequest, type StoreChutesTokenResponse, type SubmitAgentData, type SubmitAgentError, type SubmitAgentResponse, type SubmitAgentResponse2, type SuiteNotFoundError, type SuitePublic, type SuiteWithProblemsResponse, type TerminalStatus, type TopAgentResponse, type UnbanMinerData, type UnbanMinerError, type UnbanMinerResponse, type UnbanValidatorData, type UnbanValidatorError, type UnbanValidatorResponse, type UpdateProgressData, type UpdateProgressError, type UpdateProgressResponse, type ValidationError, type ValidatorCurrentAgent, type ValidatorNotFoundError, type ValidatorProblemResult, type ValidatorPublic, type ValidatorScoreSummary, type ValidatorScoresResponse, type ValidatorStatus, type WaitlistSignupRequest, type WaitlistSignupResponse, type WorkItemStatus, activateSuite, banMiner, banValidator, cancelAgentVersion, claimWork, classifyError, classifyStatus, clearMinerCooldown, client, completeRun, computeDelay, configureBittensorAuth, configurePublicClient, configureSessionAuth, createRetryFetch, createSessionEndpoint, createSuite, discardAgentVersion, generateAuthHeaders, getAgentVersion, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getReaperStats, getRunningEvaluations, getSuiteProblems, getTopAgent, getValidatorScores, getValidators, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, joinWaitlist, listAgentVersions, listAgentVersions1, listEvaluationRuns, listMinerAgents, listMiners, logout, parseRetryAfter, presignUpload, reevaluateAgentVersion, reinstateAgentVersion, requestChallenge, setTopAgent, storeChutesToken, submitAgent, unbanMiner, unbanValidator, updateProgress };
|
|
3547
|
+
export { type ActivateSuiteData, type ActivateSuiteError, type ActivateSuiteResponse, type ActivateSuiteResponse2, type AdminAgentVersionEntry, type AdminAgentVersionsResponse, type AdminEvaluationRunEntry, type AdminEvaluationRunsResponse, type AdminMinerEntry, type AdminMinersResponse, type AdminValidatorEntry, type AdminValidatorsResponse, type AdmissionReason, type AdmissionStatus, 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 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 ClearMinerCooldownData, type ClearMinerCooldownError, type ClearMinerCooldownResponse, 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 DiscardAgentVersionData, type DiscardAgentVersionError, type DiscardAgentVersionResponse, type DiscardRequest, type DiscardResponse, type ErrorCategory, type EvalRunNotFoundError, type EvaluationRunDetail, type EvaluationRunPublic, type EvaluationRunStatus, type EvaluationRunStatusPublic, type FileTooLargeError, 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 GetCurrentSuiteError, type GetCurrentSuiteResponse, type GetEvaluationRunData, type GetEvaluationRunError, type GetEvaluationRunResponse, type GetLeaderboardData, type GetLeaderboardError, type GetLeaderboardResponse, type GetOwnedAgentVersionStatusData, type GetOwnedAgentVersionStatusError, type GetOwnedAgentVersionStatusResponse, type GetPendingEvaluationsData, type GetPendingEvaluationsError, type GetPendingEvaluationsResponse, type GetReaperStatsError, type GetReaperStatsResponse, type GetRunningEvaluationsError, type GetRunningEvaluationsResponse, type GetSuiteProblemsData, type GetSuiteProblemsError, type GetSuiteProblemsResponse, type GetTopAgentError, type GetTopAgentResponse, type GetValidatorScoresData, type GetValidatorScoresError, type GetValidatorScoresResponse, type GetValidatorsError, type GetValidatorsResponse, type HTTPValidationError, type HealthCheckError, type HealthCheckResponse, type HeartbeatData, type HeartbeatError, type HeartbeatRequest, type HeartbeatResponse, type HeartbeatResponse2, 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 ListMinerAgentsError, type ListMinerAgentsResponse, type ListMinersData, type ListMinersError, type ListMinersResponse, type ListValidatorsData, type ListValidatorsError, type ListValidatorsResponse, type LogoutData, type LogoutError, type LogoutResponse, type LogoutResponse2, type MinerAgentsResponse, type MinerNotFoundError, type MissingParameterError, type MissingScoreError, type NoActiveSuiteError, type NotRunOwnerError, type OroErrorCode, type PendingEvaluation, type PendingEvaluationSummary, type PendingEvaluationsResponse, 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 RateLimitExceededError, type ReaperStatsResponse, type ReevaluateAgentVersionData, type ReevaluateAgentVersionError, type ReevaluateAgentVersionResponse, type ReevaluateRequest, type ReevaluateResponse, type ReinstateAgentVersionData, type ReinstateAgentVersionError, type ReinstateAgentVersionResponse, type ReinstateRequest, type RequestChallengeData, type RequestChallengeError, type RequestChallengeResponse, type RetryConfig, type RetryContext, type RunAlreadyCompleteError, type RunningEvaluation, type ScoreBelowThresholdError, type SessionAuthConfig, SessionAuthManager, type SessionInfo, type SessionRequest, type SessionResponse, type SetTopAgentData, type SetTopAgentError, type SetTopAgentResponse, type SetTopRequest, type SetTopResponse, type StoreChutesTokenData, type StoreChutesTokenError, type StoreChutesTokenRequest, type StoreChutesTokenResponse, type SubmitAgentData, type SubmitAgentError, type SubmitAgentResponse, type SubmitAgentResponse2, type SuiteNotFoundError, type SuitePublic, type SuiteWithProblemsResponse, type TerminalStatus, type TopAgentResponse, type UnbanMinerData, type UnbanMinerError, type UnbanMinerResponse, type UnbanValidatorData, type UnbanValidatorError, type UnbanValidatorResponse, type UpdateProgressData, type UpdateProgressError, type UpdateProgressResponse, type ValidationError, type ValidatorCurrentAgent, type ValidatorNotFoundError, type ValidatorProblemResult, type ValidatorPublic, type ValidatorScoreSummary, type ValidatorScoresResponse, type ValidatorStatus, type WaitlistSignupRequest, type WaitlistSignupResponse, type WorkItemStatus, activateSuite, banMiner, banValidator, cancelAgentVersion, claimWork, classifyError, classifyStatus, clearMinerCooldown, client, completeRun, computeDelay, configureBittensorAuth, configurePublicClient, configureSessionAuth, createRetryFetch, createSessionEndpoint, createSuite, discardAgentVersion, generateAuthHeaders, getAgentVersion, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getReaperStats, getRunningEvaluations, getSuiteProblems, getTopAgent, getValidatorScores, getValidators, hasDetail, hasErrorCode, healthCheck, heartbeat, invalidateEvaluationRun, isTransient, isTransientError, joinWaitlist, listAgentVersions, listAgentVersions1, listEvaluationRuns, listMinerAgents, listMiners, listValidators, logout, parseRetryAfter, presignUpload, reevaluateAgentVersion, reinstateAgentVersion, requestChallenge, setTopAgent, storeChutesToken, submitAgent, unbanMiner, unbanValidator, updateProgress };
|
package/dist/index.js
CHANGED
|
@@ -84,6 +84,7 @@ __export(index_exports, {
|
|
|
84
84
|
listEvaluationRuns: () => listEvaluationRuns,
|
|
85
85
|
listMinerAgents: () => listMinerAgents,
|
|
86
86
|
listMiners: () => listMiners,
|
|
87
|
+
listValidators: () => listValidators,
|
|
87
88
|
logout: () => logout,
|
|
88
89
|
parseRetryAfter: () => parseRetryAfter,
|
|
89
90
|
presignUpload: () => presignUpload,
|
|
@@ -377,6 +378,12 @@ var listMiners = (options) => {
|
|
|
377
378
|
url: "/v1/admin/miners"
|
|
378
379
|
});
|
|
379
380
|
};
|
|
381
|
+
var listValidators = (options) => {
|
|
382
|
+
return (options?.client ?? client).get({
|
|
383
|
+
...options,
|
|
384
|
+
url: "/v1/admin/validators"
|
|
385
|
+
});
|
|
386
|
+
};
|
|
380
387
|
var listAgentVersions1 = (options) => {
|
|
381
388
|
return (options?.client ?? client).get({
|
|
382
389
|
...options,
|
|
@@ -817,6 +824,7 @@ function configureSessionAuth(baseUrl, config) {
|
|
|
817
824
|
listEvaluationRuns,
|
|
818
825
|
listMinerAgents,
|
|
819
826
|
listMiners,
|
|
827
|
+
listValidators,
|
|
820
828
|
logout,
|
|
821
829
|
parseRetryAfter,
|
|
822
830
|
presignUpload,
|
package/dist/index.mjs
CHANGED
|
@@ -276,6 +276,12 @@ var listMiners = (options) => {
|
|
|
276
276
|
url: "/v1/admin/miners"
|
|
277
277
|
});
|
|
278
278
|
};
|
|
279
|
+
var listValidators = (options) => {
|
|
280
|
+
return (options?.client ?? client).get({
|
|
281
|
+
...options,
|
|
282
|
+
url: "/v1/admin/validators"
|
|
283
|
+
});
|
|
284
|
+
};
|
|
279
285
|
var listAgentVersions1 = (options) => {
|
|
280
286
|
return (options?.client ?? client).get({
|
|
281
287
|
...options,
|
|
@@ -715,6 +721,7 @@ export {
|
|
|
715
721
|
listEvaluationRuns,
|
|
716
722
|
listMinerAgents,
|
|
717
723
|
listMiners,
|
|
724
|
+
listValidators,
|
|
718
725
|
logout,
|
|
719
726
|
parseRetryAfter,
|
|
720
727
|
presignUpload,
|
package/package.json
CHANGED
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -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, GetCurrentSuiteError, GetCurrentSuiteResponse, GetSuiteProblemsData, GetSuiteProblemsError, GetSuiteProblemsResponse, GetLeaderboardData, GetLeaderboardError, GetLeaderboardResponse, GetTopAgentError, GetTopAgentResponse, 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, JoinWaitlistData, JoinWaitlistError, JoinWaitlistResponse, RequestChallengeData, RequestChallengeError, RequestChallengeResponse, CreateSessionEndpointData, CreateSessionEndpointError, CreateSessionEndpointResponse, LogoutData, LogoutError, LogoutResponse2, SubmitAgentData, SubmitAgentError, SubmitAgentResponse2, StoreChutesTokenData, StoreChutesTokenError, StoreChutesTokenResponse, GetChutesAuthStatusError, GetChutesAuthStatusResponse, ListMinerAgentsError, ListMinerAgentsResponse, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsResponse, GetOwnedAgentVersionStatusData, GetOwnedAgentVersionStatusError, GetOwnedAgentVersionStatusResponse, ClaimWorkData, ClaimWorkError, ClaimWorkResponse2, HeartbeatData, HeartbeatError, HeartbeatResponse2, UpdateProgressData, UpdateProgressError, UpdateProgressResponse, PresignUploadData, PresignUploadError, PresignUploadResponse2, CompleteRunData, CompleteRunError, CompleteRunResponse2, BanMinerData, BanMinerError, BanMinerResponse, UnbanMinerData, UnbanMinerError, UnbanMinerResponse, BanValidatorData, BanValidatorError, BanValidatorResponse, UnbanValidatorData, UnbanValidatorError, UnbanValidatorResponse, DiscardAgentVersionData, DiscardAgentVersionError, DiscardAgentVersionResponse, ReinstateAgentVersionData, ReinstateAgentVersionError, ReinstateAgentVersionResponse, 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, ListAgentVersions1Data, ListAgentVersions1Error, ListAgentVersions1Response, ListEvaluationRunsData, ListEvaluationRunsError, ListEvaluationRunsResponse, GetValidatorScoresData, GetValidatorScoresError, GetValidatorScoresResponse, GetAgentVersionVarianceData, GetAgentVersionVarianceError, GetAgentVersionVarianceResponse } from './types.gen';
|
|
4
|
+
import type { HealthCheckError, HealthCheckResponse, GetCurrentSuiteError, GetCurrentSuiteResponse, GetSuiteProblemsData, GetSuiteProblemsError, GetSuiteProblemsResponse, GetLeaderboardData, GetLeaderboardError, GetLeaderboardResponse, GetTopAgentError, GetTopAgentResponse, 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, JoinWaitlistData, JoinWaitlistError, JoinWaitlistResponse, RequestChallengeData, RequestChallengeError, RequestChallengeResponse, CreateSessionEndpointData, CreateSessionEndpointError, CreateSessionEndpointResponse, LogoutData, LogoutError, LogoutResponse2, SubmitAgentData, SubmitAgentError, SubmitAgentResponse2, StoreChutesTokenData, StoreChutesTokenError, StoreChutesTokenResponse, GetChutesAuthStatusError, GetChutesAuthStatusResponse, ListMinerAgentsError, ListMinerAgentsResponse, ListAgentVersionsData, ListAgentVersionsError, ListAgentVersionsResponse, GetOwnedAgentVersionStatusData, GetOwnedAgentVersionStatusError, GetOwnedAgentVersionStatusResponse, ClaimWorkData, ClaimWorkError, ClaimWorkResponse2, HeartbeatData, HeartbeatError, HeartbeatResponse2, UpdateProgressData, UpdateProgressError, UpdateProgressResponse, PresignUploadData, PresignUploadError, PresignUploadResponse2, CompleteRunData, CompleteRunError, CompleteRunResponse2, BanMinerData, BanMinerError, BanMinerResponse, UnbanMinerData, UnbanMinerError, UnbanMinerResponse, BanValidatorData, BanValidatorError, BanValidatorResponse, UnbanValidatorData, UnbanValidatorError, UnbanValidatorResponse, DiscardAgentVersionData, DiscardAgentVersionError, DiscardAgentVersionResponse, ReinstateAgentVersionData, ReinstateAgentVersionError, ReinstateAgentVersionResponse, 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 } from './types.gen';
|
|
5
5
|
|
|
6
6
|
export const client = createClient(createConfig());
|
|
7
7
|
|
|
@@ -540,6 +540,17 @@ export const listMiners = <ThrowOnError extends boolean = false>(options?: Optio
|
|
|
540
540
|
});
|
|
541
541
|
};
|
|
542
542
|
|
|
543
|
+
/**
|
|
544
|
+
* List validators including banned
|
|
545
|
+
* List all validators including banned ones.
|
|
546
|
+
*/
|
|
547
|
+
export const listValidators = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<ListValidatorsData, ThrowOnError>) => {
|
|
548
|
+
return (options?.client ?? client).get<ListValidatorsResponse, ListValidatorsError, ThrowOnError>({
|
|
549
|
+
...options,
|
|
550
|
+
url: '/v1/admin/validators'
|
|
551
|
+
});
|
|
552
|
+
};
|
|
553
|
+
|
|
543
554
|
/**
|
|
544
555
|
* List agent versions with work item state
|
|
545
556
|
* List agent versions with aggregate and work item state for a specific suite.
|
|
@@ -242,6 +242,92 @@ export type AdminMinersResponse = {
|
|
|
242
242
|
offset: number;
|
|
243
243
|
};
|
|
244
244
|
|
|
245
|
+
/**
|
|
246
|
+
* Extends ValidatorPublic with admin-only fields (ban status).
|
|
247
|
+
*/
|
|
248
|
+
export type AdminValidatorEntry = {
|
|
249
|
+
/**
|
|
250
|
+
* Validator's SS58 address
|
|
251
|
+
*/
|
|
252
|
+
hotkey: string;
|
|
253
|
+
/**
|
|
254
|
+
* On-chain identity name, if set
|
|
255
|
+
*/
|
|
256
|
+
name?: (string | null);
|
|
257
|
+
/**
|
|
258
|
+
* Current validator status
|
|
259
|
+
*/
|
|
260
|
+
status: ValidatorStatus;
|
|
261
|
+
/**
|
|
262
|
+
* When validator was registered
|
|
263
|
+
*/
|
|
264
|
+
registered_at: string;
|
|
265
|
+
/**
|
|
266
|
+
* Last work claim time
|
|
267
|
+
*/
|
|
268
|
+
last_claim_at?: (string | null);
|
|
269
|
+
/**
|
|
270
|
+
* Last time validator was seen
|
|
271
|
+
*/
|
|
272
|
+
last_seen_at?: (string | null);
|
|
273
|
+
/**
|
|
274
|
+
* Agent currently being evaluated, if any
|
|
275
|
+
*/
|
|
276
|
+
current_agent?: (ValidatorCurrentAgent | null);
|
|
277
|
+
/**
|
|
278
|
+
* Docker image digests for validator stack services
|
|
279
|
+
*/
|
|
280
|
+
service_versions?: ({
|
|
281
|
+
[key: string]: (string);
|
|
282
|
+
} | null);
|
|
283
|
+
/**
|
|
284
|
+
* On-chain identity URL
|
|
285
|
+
*/
|
|
286
|
+
identity_url?: (string | null);
|
|
287
|
+
/**
|
|
288
|
+
* On-chain identity image URL
|
|
289
|
+
*/
|
|
290
|
+
identity_image?: (string | null);
|
|
291
|
+
/**
|
|
292
|
+
* On-chain identity description
|
|
293
|
+
*/
|
|
294
|
+
identity_description?: (string | null);
|
|
295
|
+
/**
|
|
296
|
+
* Whether banned
|
|
297
|
+
*/
|
|
298
|
+
is_banned: boolean;
|
|
299
|
+
/**
|
|
300
|
+
* Ban reason
|
|
301
|
+
*/
|
|
302
|
+
ban_reason?: (string | null);
|
|
303
|
+
/**
|
|
304
|
+
* When banned
|
|
305
|
+
*/
|
|
306
|
+
banned_at?: (string | null);
|
|
307
|
+
};
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Response for admin validators listing.
|
|
311
|
+
*/
|
|
312
|
+
export type AdminValidatorsResponse = {
|
|
313
|
+
/**
|
|
314
|
+
* List of validators
|
|
315
|
+
*/
|
|
316
|
+
validators: Array<AdminValidatorEntry>;
|
|
317
|
+
/**
|
|
318
|
+
* Total matching filter
|
|
319
|
+
*/
|
|
320
|
+
total: number;
|
|
321
|
+
/**
|
|
322
|
+
* Page size
|
|
323
|
+
*/
|
|
324
|
+
limit: number;
|
|
325
|
+
/**
|
|
326
|
+
* Page offset
|
|
327
|
+
*/
|
|
328
|
+
offset: number;
|
|
329
|
+
};
|
|
330
|
+
|
|
245
331
|
/**
|
|
246
332
|
* Reason for rejection of agent submission.
|
|
247
333
|
*/
|
|
@@ -1040,6 +1126,18 @@ export type EvaluationRunDetail = {
|
|
|
1040
1126
|
* Validator-reported failure reason
|
|
1041
1127
|
*/
|
|
1042
1128
|
failure_reason?: (string | null);
|
|
1129
|
+
/**
|
|
1130
|
+
* Whether run is included in aggregate scoring
|
|
1131
|
+
*/
|
|
1132
|
+
is_included?: boolean;
|
|
1133
|
+
/**
|
|
1134
|
+
* When run was invalidated
|
|
1135
|
+
*/
|
|
1136
|
+
invalidated_at?: (string | null);
|
|
1137
|
+
/**
|
|
1138
|
+
* Reason for invalidation
|
|
1139
|
+
*/
|
|
1140
|
+
invalidation_reason?: (string | null);
|
|
1043
1141
|
};
|
|
1044
1142
|
|
|
1045
1143
|
/**
|
|
@@ -2914,6 +3012,27 @@ export type ListMinersResponse = (AdminMinersResponse);
|
|
|
2914
3012
|
|
|
2915
3013
|
export type ListMinersError = (HTTPValidationError);
|
|
2916
3014
|
|
|
3015
|
+
export type ListValidatorsData = {
|
|
3016
|
+
query?: {
|
|
3017
|
+
/**
|
|
3018
|
+
* Filter by ban status
|
|
3019
|
+
*/
|
|
3020
|
+
is_banned?: (boolean | null);
|
|
3021
|
+
/**
|
|
3022
|
+
* Page size
|
|
3023
|
+
*/
|
|
3024
|
+
limit?: number;
|
|
3025
|
+
/**
|
|
3026
|
+
* Offset
|
|
3027
|
+
*/
|
|
3028
|
+
offset?: number;
|
|
3029
|
+
};
|
|
3030
|
+
};
|
|
3031
|
+
|
|
3032
|
+
export type ListValidatorsResponse = (AdminValidatorsResponse);
|
|
3033
|
+
|
|
3034
|
+
export type ListValidatorsError = (HTTPValidationError);
|
|
3035
|
+
|
|
2917
3036
|
export type ListAgentVersions1Data = {
|
|
2918
3037
|
query?: {
|
|
2919
3038
|
/**
|