@oro-ai/sdk 1.0.13 → 1.0.15
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 +98 -1
- package/dist/index.d.ts +98 -1
- package/dist/index.js +8 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +15 -1
- package/src/generated/types.gen.ts +95 -0
package/dist/index.d.mts
CHANGED
|
@@ -349,6 +349,31 @@ type AdmissionReason = 'COOLDOWN' | 'INVALID_FILE' | 'NOT_REGISTERED_ONCHAIN' |
|
|
|
349
349
|
* Status of agent submission admission.
|
|
350
350
|
*/
|
|
351
351
|
type AdmissionStatus = 'ACCEPTED' | 'REJECTED';
|
|
352
|
+
/**
|
|
353
|
+
* Latest version summary, inlined in agent list responses.
|
|
354
|
+
*/
|
|
355
|
+
type AgentLatestVersion = {
|
|
356
|
+
/**
|
|
357
|
+
* Version ID
|
|
358
|
+
*/
|
|
359
|
+
agent_version_id: string;
|
|
360
|
+
/**
|
|
361
|
+
* Version number (v1, v2, etc.)
|
|
362
|
+
*/
|
|
363
|
+
version_number: number;
|
|
364
|
+
/**
|
|
365
|
+
* Submission timestamp
|
|
366
|
+
*/
|
|
367
|
+
submitted_at: string;
|
|
368
|
+
/**
|
|
369
|
+
* Current state
|
|
370
|
+
*/
|
|
371
|
+
state: AgentVersionState;
|
|
372
|
+
/**
|
|
373
|
+
* Final score if eligible
|
|
374
|
+
*/
|
|
375
|
+
final_score?: (number | null);
|
|
376
|
+
};
|
|
352
377
|
/**
|
|
353
378
|
* 404 - Agent not found.
|
|
354
379
|
*/
|
|
@@ -382,6 +407,10 @@ type AgentPublic = {
|
|
|
382
407
|
* When the agent was created
|
|
383
408
|
*/
|
|
384
409
|
created_at: string;
|
|
410
|
+
/**
|
|
411
|
+
* Latest version with state and score
|
|
412
|
+
*/
|
|
413
|
+
latest_version?: (AgentLatestVersion | null);
|
|
385
414
|
};
|
|
386
415
|
/**
|
|
387
416
|
* Entry in agent version history list.
|
|
@@ -2163,6 +2192,56 @@ type TopAgentResponse = {
|
|
|
2163
2192
|
*/
|
|
2164
2193
|
margin?: (number | null);
|
|
2165
2194
|
};
|
|
2195
|
+
/**
|
|
2196
|
+
* A single entry in the top agent history.
|
|
2197
|
+
*/
|
|
2198
|
+
type TopHistoryEntry = {
|
|
2199
|
+
/**
|
|
2200
|
+
* Agent version ID
|
|
2201
|
+
*/
|
|
2202
|
+
agent_version_id: string;
|
|
2203
|
+
/**
|
|
2204
|
+
* Agent name
|
|
2205
|
+
*/
|
|
2206
|
+
agent_name: string;
|
|
2207
|
+
/**
|
|
2208
|
+
* Miner hotkey
|
|
2209
|
+
*/
|
|
2210
|
+
miner_hotkey: string;
|
|
2211
|
+
/**
|
|
2212
|
+
* Version number
|
|
2213
|
+
*/
|
|
2214
|
+
version_number: number;
|
|
2215
|
+
/**
|
|
2216
|
+
* Final score
|
|
2217
|
+
*/
|
|
2218
|
+
final_score: number;
|
|
2219
|
+
/**
|
|
2220
|
+
* When this agent became top
|
|
2221
|
+
*/
|
|
2222
|
+
top_at: string;
|
|
2223
|
+
/**
|
|
2224
|
+
* Currently the top agent
|
|
2225
|
+
*/
|
|
2226
|
+
is_current_top: boolean;
|
|
2227
|
+
/**
|
|
2228
|
+
* Previously held top agent status
|
|
2229
|
+
*/
|
|
2230
|
+
was_top: boolean;
|
|
2231
|
+
};
|
|
2232
|
+
/**
|
|
2233
|
+
* Response for top agent history endpoint.
|
|
2234
|
+
*/
|
|
2235
|
+
type TopHistoryResponse = {
|
|
2236
|
+
/**
|
|
2237
|
+
* Suite ID
|
|
2238
|
+
*/
|
|
2239
|
+
suite_id: number;
|
|
2240
|
+
/**
|
|
2241
|
+
* Top agent history entries
|
|
2242
|
+
*/
|
|
2243
|
+
entries: Array<TopHistoryEntry>;
|
|
2244
|
+
};
|
|
2166
2245
|
type ValidationError = {
|
|
2167
2246
|
loc: Array<(string | number)>;
|
|
2168
2247
|
msg: string;
|
|
@@ -2487,6 +2566,16 @@ type GetLeaderboardResponse = (LeaderboardResponse);
|
|
|
2487
2566
|
type GetLeaderboardError = (HTTPValidationError);
|
|
2488
2567
|
type GetTopAgentResponse = (TopAgentResponse);
|
|
2489
2568
|
type GetTopAgentError = unknown;
|
|
2569
|
+
type GetTopHistoryData = {
|
|
2570
|
+
query?: {
|
|
2571
|
+
/**
|
|
2572
|
+
* Suite ID (defaults to current)
|
|
2573
|
+
*/
|
|
2574
|
+
suite_id?: (number | null);
|
|
2575
|
+
};
|
|
2576
|
+
};
|
|
2577
|
+
type GetTopHistoryResponse = (TopHistoryResponse);
|
|
2578
|
+
type GetTopHistoryError = (HTTPValidationError);
|
|
2490
2579
|
type GetAgentVersionStatusData = {
|
|
2491
2580
|
path: {
|
|
2492
2581
|
/**
|
|
@@ -3037,6 +3126,11 @@ declare const getLeaderboard: <ThrowOnError extends boolean = false>(options?: O
|
|
|
3037
3126
|
* Get the canonical top miner for emissions calculation.
|
|
3038
3127
|
*/
|
|
3039
3128
|
declare const getTopAgent: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TopAgentResponse, unknown, ThrowOnError>;
|
|
3129
|
+
/**
|
|
3130
|
+
* Get top agent history
|
|
3131
|
+
* Get all agents that have held top agent status for a suite.
|
|
3132
|
+
*/
|
|
3133
|
+
declare const getTopHistory: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetTopHistoryData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TopHistoryResponse, HTTPValidationError, ThrowOnError>;
|
|
3040
3134
|
/**
|
|
3041
3135
|
* Get agent version status
|
|
3042
3136
|
* Get live status and counters for an agent version.
|
|
@@ -3130,6 +3224,9 @@ declare const getChutesAuthStatus: <ThrowOnError extends boolean = false>(option
|
|
|
3130
3224
|
/**
|
|
3131
3225
|
* List miner's agents
|
|
3132
3226
|
* List all agents owned by the authenticated miner, with cooldown status.
|
|
3227
|
+
*
|
|
3228
|
+
* Includes the latest version per agent with its state and score so the
|
|
3229
|
+
* frontend doesn't need to make N additional requests.
|
|
3133
3230
|
*/
|
|
3134
3231
|
declare const listMinerAgents: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<MinerAgentsResponse, unknown, ThrowOnError>;
|
|
3135
3232
|
/**
|
|
@@ -3654,4 +3751,4 @@ declare class SessionAuthManager {
|
|
|
3654
3751
|
*/
|
|
3655
3752
|
declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
|
|
3656
3753
|
|
|
3657
|
-
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 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 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 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, getAgentVersionCode, 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 };
|
|
3754
|
+
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 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 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 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 GetTopHistoryData, type GetTopHistoryError, type GetTopHistoryResponse, 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 TopHistoryEntry, type TopHistoryResponse, 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, getAgentVersionCode, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getReaperStats, getRunningEvaluations, getSuiteProblems, getTopAgent, getTopHistory, 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
|
@@ -349,6 +349,31 @@ type AdmissionReason = 'COOLDOWN' | 'INVALID_FILE' | 'NOT_REGISTERED_ONCHAIN' |
|
|
|
349
349
|
* Status of agent submission admission.
|
|
350
350
|
*/
|
|
351
351
|
type AdmissionStatus = 'ACCEPTED' | 'REJECTED';
|
|
352
|
+
/**
|
|
353
|
+
* Latest version summary, inlined in agent list responses.
|
|
354
|
+
*/
|
|
355
|
+
type AgentLatestVersion = {
|
|
356
|
+
/**
|
|
357
|
+
* Version ID
|
|
358
|
+
*/
|
|
359
|
+
agent_version_id: string;
|
|
360
|
+
/**
|
|
361
|
+
* Version number (v1, v2, etc.)
|
|
362
|
+
*/
|
|
363
|
+
version_number: number;
|
|
364
|
+
/**
|
|
365
|
+
* Submission timestamp
|
|
366
|
+
*/
|
|
367
|
+
submitted_at: string;
|
|
368
|
+
/**
|
|
369
|
+
* Current state
|
|
370
|
+
*/
|
|
371
|
+
state: AgentVersionState;
|
|
372
|
+
/**
|
|
373
|
+
* Final score if eligible
|
|
374
|
+
*/
|
|
375
|
+
final_score?: (number | null);
|
|
376
|
+
};
|
|
352
377
|
/**
|
|
353
378
|
* 404 - Agent not found.
|
|
354
379
|
*/
|
|
@@ -382,6 +407,10 @@ type AgentPublic = {
|
|
|
382
407
|
* When the agent was created
|
|
383
408
|
*/
|
|
384
409
|
created_at: string;
|
|
410
|
+
/**
|
|
411
|
+
* Latest version with state and score
|
|
412
|
+
*/
|
|
413
|
+
latest_version?: (AgentLatestVersion | null);
|
|
385
414
|
};
|
|
386
415
|
/**
|
|
387
416
|
* Entry in agent version history list.
|
|
@@ -2163,6 +2192,56 @@ type TopAgentResponse = {
|
|
|
2163
2192
|
*/
|
|
2164
2193
|
margin?: (number | null);
|
|
2165
2194
|
};
|
|
2195
|
+
/**
|
|
2196
|
+
* A single entry in the top agent history.
|
|
2197
|
+
*/
|
|
2198
|
+
type TopHistoryEntry = {
|
|
2199
|
+
/**
|
|
2200
|
+
* Agent version ID
|
|
2201
|
+
*/
|
|
2202
|
+
agent_version_id: string;
|
|
2203
|
+
/**
|
|
2204
|
+
* Agent name
|
|
2205
|
+
*/
|
|
2206
|
+
agent_name: string;
|
|
2207
|
+
/**
|
|
2208
|
+
* Miner hotkey
|
|
2209
|
+
*/
|
|
2210
|
+
miner_hotkey: string;
|
|
2211
|
+
/**
|
|
2212
|
+
* Version number
|
|
2213
|
+
*/
|
|
2214
|
+
version_number: number;
|
|
2215
|
+
/**
|
|
2216
|
+
* Final score
|
|
2217
|
+
*/
|
|
2218
|
+
final_score: number;
|
|
2219
|
+
/**
|
|
2220
|
+
* When this agent became top
|
|
2221
|
+
*/
|
|
2222
|
+
top_at: string;
|
|
2223
|
+
/**
|
|
2224
|
+
* Currently the top agent
|
|
2225
|
+
*/
|
|
2226
|
+
is_current_top: boolean;
|
|
2227
|
+
/**
|
|
2228
|
+
* Previously held top agent status
|
|
2229
|
+
*/
|
|
2230
|
+
was_top: boolean;
|
|
2231
|
+
};
|
|
2232
|
+
/**
|
|
2233
|
+
* Response for top agent history endpoint.
|
|
2234
|
+
*/
|
|
2235
|
+
type TopHistoryResponse = {
|
|
2236
|
+
/**
|
|
2237
|
+
* Suite ID
|
|
2238
|
+
*/
|
|
2239
|
+
suite_id: number;
|
|
2240
|
+
/**
|
|
2241
|
+
* Top agent history entries
|
|
2242
|
+
*/
|
|
2243
|
+
entries: Array<TopHistoryEntry>;
|
|
2244
|
+
};
|
|
2166
2245
|
type ValidationError = {
|
|
2167
2246
|
loc: Array<(string | number)>;
|
|
2168
2247
|
msg: string;
|
|
@@ -2487,6 +2566,16 @@ type GetLeaderboardResponse = (LeaderboardResponse);
|
|
|
2487
2566
|
type GetLeaderboardError = (HTTPValidationError);
|
|
2488
2567
|
type GetTopAgentResponse = (TopAgentResponse);
|
|
2489
2568
|
type GetTopAgentError = unknown;
|
|
2569
|
+
type GetTopHistoryData = {
|
|
2570
|
+
query?: {
|
|
2571
|
+
/**
|
|
2572
|
+
* Suite ID (defaults to current)
|
|
2573
|
+
*/
|
|
2574
|
+
suite_id?: (number | null);
|
|
2575
|
+
};
|
|
2576
|
+
};
|
|
2577
|
+
type GetTopHistoryResponse = (TopHistoryResponse);
|
|
2578
|
+
type GetTopHistoryError = (HTTPValidationError);
|
|
2490
2579
|
type GetAgentVersionStatusData = {
|
|
2491
2580
|
path: {
|
|
2492
2581
|
/**
|
|
@@ -3037,6 +3126,11 @@ declare const getLeaderboard: <ThrowOnError extends boolean = false>(options?: O
|
|
|
3037
3126
|
* Get the canonical top miner for emissions calculation.
|
|
3038
3127
|
*/
|
|
3039
3128
|
declare const getTopAgent: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TopAgentResponse, unknown, ThrowOnError>;
|
|
3129
|
+
/**
|
|
3130
|
+
* Get top agent history
|
|
3131
|
+
* Get all agents that have held top agent status for a suite.
|
|
3132
|
+
*/
|
|
3133
|
+
declare const getTopHistory: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetTopHistoryData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TopHistoryResponse, HTTPValidationError, ThrowOnError>;
|
|
3040
3134
|
/**
|
|
3041
3135
|
* Get agent version status
|
|
3042
3136
|
* Get live status and counters for an agent version.
|
|
@@ -3130,6 +3224,9 @@ declare const getChutesAuthStatus: <ThrowOnError extends boolean = false>(option
|
|
|
3130
3224
|
/**
|
|
3131
3225
|
* List miner's agents
|
|
3132
3226
|
* List all agents owned by the authenticated miner, with cooldown status.
|
|
3227
|
+
*
|
|
3228
|
+
* Includes the latest version per agent with its state and score so the
|
|
3229
|
+
* frontend doesn't need to make N additional requests.
|
|
3133
3230
|
*/
|
|
3134
3231
|
declare const listMinerAgents: <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<MinerAgentsResponse, unknown, ThrowOnError>;
|
|
3135
3232
|
/**
|
|
@@ -3654,4 +3751,4 @@ declare class SessionAuthManager {
|
|
|
3654
3751
|
*/
|
|
3655
3752
|
declare function configureSessionAuth(baseUrl: string, config: SessionAuthConfig): SessionAuthManager;
|
|
3656
3753
|
|
|
3657
|
-
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 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 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 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, getAgentVersionCode, 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 };
|
|
3754
|
+
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 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 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 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 GetTopHistoryData, type GetTopHistoryError, type GetTopHistoryResponse, 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 TopHistoryEntry, type TopHistoryResponse, 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, getAgentVersionCode, getAgentVersionProblems, getAgentVersionRuns, getAgentVersionStatus, getAgentVersionVariance, getArtifactDownloadUrl, getAuditEvents, getChutesAuthStatus, getCurrentSuite, getErrorCode, getErrorDetail, getEvaluationRun, getLeaderboard, getOwnedAgentVersionStatus, getPendingEvaluations, getReaperStats, getRunningEvaluations, getSuiteProblems, getTopAgent, getTopHistory, 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
|
@@ -70,6 +70,7 @@ __export(index_exports, {
|
|
|
70
70
|
getRunningEvaluations: () => getRunningEvaluations,
|
|
71
71
|
getSuiteProblems: () => getSuiteProblems,
|
|
72
72
|
getTopAgent: () => getTopAgent,
|
|
73
|
+
getTopHistory: () => getTopHistory,
|
|
73
74
|
getValidatorScores: () => getValidatorScores,
|
|
74
75
|
getValidators: () => getValidators,
|
|
75
76
|
hasDetail: () => hasDetail,
|
|
@@ -134,6 +135,12 @@ var getTopAgent = (options) => {
|
|
|
134
135
|
url: "/v1/public/top"
|
|
135
136
|
});
|
|
136
137
|
};
|
|
138
|
+
var getTopHistory = (options) => {
|
|
139
|
+
return (options?.client ?? client).get({
|
|
140
|
+
...options,
|
|
141
|
+
url: "/v1/public/top/history"
|
|
142
|
+
});
|
|
143
|
+
};
|
|
137
144
|
var getAgentVersionStatus = (options) => {
|
|
138
145
|
return (options?.client ?? client).get({
|
|
139
146
|
...options,
|
|
@@ -817,6 +824,7 @@ function configureSessionAuth(baseUrl, config) {
|
|
|
817
824
|
getRunningEvaluations,
|
|
818
825
|
getSuiteProblems,
|
|
819
826
|
getTopAgent,
|
|
827
|
+
getTopHistory,
|
|
820
828
|
getValidatorScores,
|
|
821
829
|
getValidators,
|
|
822
830
|
hasDetail,
|
package/dist/index.mjs
CHANGED
|
@@ -31,6 +31,12 @@ var getTopAgent = (options) => {
|
|
|
31
31
|
url: "/v1/public/top"
|
|
32
32
|
});
|
|
33
33
|
};
|
|
34
|
+
var getTopHistory = (options) => {
|
|
35
|
+
return (options?.client ?? client).get({
|
|
36
|
+
...options,
|
|
37
|
+
url: "/v1/public/top/history"
|
|
38
|
+
});
|
|
39
|
+
};
|
|
34
40
|
var getAgentVersionStatus = (options) => {
|
|
35
41
|
return (options?.client ?? client).get({
|
|
36
42
|
...options,
|
|
@@ -713,6 +719,7 @@ export {
|
|
|
713
719
|
getRunningEvaluations,
|
|
714
720
|
getSuiteProblems,
|
|
715
721
|
getTopAgent,
|
|
722
|
+
getTopHistory,
|
|
716
723
|
getValidatorScores,
|
|
717
724
|
getValidators,
|
|
718
725
|
hasDetail,
|
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, ListValidatorsData, ListValidatorsError, ListValidatorsResponse, ListAgentVersions1Data, ListAgentVersions1Error, ListAgentVersions1Response, ListEvaluationRunsData, ListEvaluationRunsError, ListEvaluationRunsResponse, GetValidatorScoresData, GetValidatorScoresError, GetValidatorScoresResponse, GetAgentVersionVarianceData, GetAgentVersionVarianceError, GetAgentVersionVarianceResponse, GetAgentVersionCodeData, GetAgentVersionCodeError, GetAgentVersionCodeResponse } from './types.gen';
|
|
4
|
+
import type { HealthCheckError, HealthCheckResponse, GetCurrentSuiteError, GetCurrentSuiteResponse, GetSuiteProblemsData, GetSuiteProblemsError, GetSuiteProblemsResponse, GetLeaderboardData, GetLeaderboardError, GetLeaderboardResponse, GetTopAgentError, GetTopAgentResponse, 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, 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, GetAgentVersionCodeData, GetAgentVersionCodeError, GetAgentVersionCodeResponse } from './types.gen';
|
|
5
5
|
|
|
6
6
|
export const client = createClient(createConfig());
|
|
7
7
|
|
|
@@ -60,6 +60,17 @@ export const getTopAgent = <ThrowOnError extends boolean = false>(options?: Opti
|
|
|
60
60
|
});
|
|
61
61
|
};
|
|
62
62
|
|
|
63
|
+
/**
|
|
64
|
+
* Get top agent history
|
|
65
|
+
* Get all agents that have held top agent status for a suite.
|
|
66
|
+
*/
|
|
67
|
+
export const getTopHistory = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<GetTopHistoryData, ThrowOnError>) => {
|
|
68
|
+
return (options?.client ?? client).get<GetTopHistoryResponse, GetTopHistoryError, ThrowOnError>({
|
|
69
|
+
...options,
|
|
70
|
+
url: '/v1/public/top/history'
|
|
71
|
+
});
|
|
72
|
+
};
|
|
73
|
+
|
|
63
74
|
/**
|
|
64
75
|
* Get agent version status
|
|
65
76
|
* Get live status and counters for an agent version.
|
|
@@ -254,6 +265,9 @@ export const getChutesAuthStatus = <ThrowOnError extends boolean = false>(option
|
|
|
254
265
|
/**
|
|
255
266
|
* List miner's agents
|
|
256
267
|
* List all agents owned by the authenticated miner, with cooldown status.
|
|
268
|
+
*
|
|
269
|
+
* Includes the latest version per agent with its state and score so the
|
|
270
|
+
* frontend doesn't need to make N additional requests.
|
|
257
271
|
*/
|
|
258
272
|
export const listMinerAgents = <ThrowOnError extends boolean = false>(options?: OptionsLegacyParser<unknown, ThrowOnError>) => {
|
|
259
273
|
return (options?.client ?? client).get<ListMinerAgentsResponse, ListMinerAgentsError, ThrowOnError>({
|
|
@@ -360,6 +360,32 @@ export type AdmissionReason = 'COOLDOWN' | 'INVALID_FILE' | 'NOT_REGISTERED_ONCH
|
|
|
360
360
|
*/
|
|
361
361
|
export type AdmissionStatus = 'ACCEPTED' | 'REJECTED';
|
|
362
362
|
|
|
363
|
+
/**
|
|
364
|
+
* Latest version summary, inlined in agent list responses.
|
|
365
|
+
*/
|
|
366
|
+
export type AgentLatestVersion = {
|
|
367
|
+
/**
|
|
368
|
+
* Version ID
|
|
369
|
+
*/
|
|
370
|
+
agent_version_id: string;
|
|
371
|
+
/**
|
|
372
|
+
* Version number (v1, v2, etc.)
|
|
373
|
+
*/
|
|
374
|
+
version_number: number;
|
|
375
|
+
/**
|
|
376
|
+
* Submission timestamp
|
|
377
|
+
*/
|
|
378
|
+
submitted_at: string;
|
|
379
|
+
/**
|
|
380
|
+
* Current state
|
|
381
|
+
*/
|
|
382
|
+
state: AgentVersionState;
|
|
383
|
+
/**
|
|
384
|
+
* Final score if eligible
|
|
385
|
+
*/
|
|
386
|
+
final_score?: (number | null);
|
|
387
|
+
};
|
|
388
|
+
|
|
363
389
|
/**
|
|
364
390
|
* 404 - Agent not found.
|
|
365
391
|
*/
|
|
@@ -394,6 +420,10 @@ export type AgentPublic = {
|
|
|
394
420
|
* When the agent was created
|
|
395
421
|
*/
|
|
396
422
|
created_at: string;
|
|
423
|
+
/**
|
|
424
|
+
* Latest version with state and score
|
|
425
|
+
*/
|
|
426
|
+
latest_version?: (AgentLatestVersion | null);
|
|
397
427
|
};
|
|
398
428
|
|
|
399
429
|
/**
|
|
@@ -2267,6 +2297,58 @@ export type TopAgentResponse = {
|
|
|
2267
2297
|
margin?: (number | null);
|
|
2268
2298
|
};
|
|
2269
2299
|
|
|
2300
|
+
/**
|
|
2301
|
+
* A single entry in the top agent history.
|
|
2302
|
+
*/
|
|
2303
|
+
export type TopHistoryEntry = {
|
|
2304
|
+
/**
|
|
2305
|
+
* Agent version ID
|
|
2306
|
+
*/
|
|
2307
|
+
agent_version_id: string;
|
|
2308
|
+
/**
|
|
2309
|
+
* Agent name
|
|
2310
|
+
*/
|
|
2311
|
+
agent_name: string;
|
|
2312
|
+
/**
|
|
2313
|
+
* Miner hotkey
|
|
2314
|
+
*/
|
|
2315
|
+
miner_hotkey: string;
|
|
2316
|
+
/**
|
|
2317
|
+
* Version number
|
|
2318
|
+
*/
|
|
2319
|
+
version_number: number;
|
|
2320
|
+
/**
|
|
2321
|
+
* Final score
|
|
2322
|
+
*/
|
|
2323
|
+
final_score: number;
|
|
2324
|
+
/**
|
|
2325
|
+
* When this agent became top
|
|
2326
|
+
*/
|
|
2327
|
+
top_at: string;
|
|
2328
|
+
/**
|
|
2329
|
+
* Currently the top agent
|
|
2330
|
+
*/
|
|
2331
|
+
is_current_top: boolean;
|
|
2332
|
+
/**
|
|
2333
|
+
* Previously held top agent status
|
|
2334
|
+
*/
|
|
2335
|
+
was_top: boolean;
|
|
2336
|
+
};
|
|
2337
|
+
|
|
2338
|
+
/**
|
|
2339
|
+
* Response for top agent history endpoint.
|
|
2340
|
+
*/
|
|
2341
|
+
export type TopHistoryResponse = {
|
|
2342
|
+
/**
|
|
2343
|
+
* Suite ID
|
|
2344
|
+
*/
|
|
2345
|
+
suite_id: number;
|
|
2346
|
+
/**
|
|
2347
|
+
* Top agent history entries
|
|
2348
|
+
*/
|
|
2349
|
+
entries: Array<TopHistoryEntry>;
|
|
2350
|
+
};
|
|
2351
|
+
|
|
2270
2352
|
export type ValidationError = {
|
|
2271
2353
|
loc: Array<(string | number)>;
|
|
2272
2354
|
msg: string;
|
|
@@ -2614,6 +2696,19 @@ export type GetTopAgentResponse = (TopAgentResponse);
|
|
|
2614
2696
|
|
|
2615
2697
|
export type GetTopAgentError = unknown;
|
|
2616
2698
|
|
|
2699
|
+
export type GetTopHistoryData = {
|
|
2700
|
+
query?: {
|
|
2701
|
+
/**
|
|
2702
|
+
* Suite ID (defaults to current)
|
|
2703
|
+
*/
|
|
2704
|
+
suite_id?: (number | null);
|
|
2705
|
+
};
|
|
2706
|
+
};
|
|
2707
|
+
|
|
2708
|
+
export type GetTopHistoryResponse = (TopHistoryResponse);
|
|
2709
|
+
|
|
2710
|
+
export type GetTopHistoryError = (HTTPValidationError);
|
|
2711
|
+
|
|
2617
2712
|
export type GetAgentVersionStatusData = {
|
|
2618
2713
|
path: {
|
|
2619
2714
|
/**
|