@evalops/sdk-ts 0.1.105 → 0.1.107
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/agentruntime/v1/runtime_pb.d.ts +280 -0
- package/dist/agentruntime/v1/runtime_pb.js +161 -136
- package/dist/agents/v1/agents_pb.d.ts +597 -0
- package/dist/agents/v1/agents_pb.js +146 -59
- package/dist/codex/v1/codex_pb.d.ts +125 -2
- package/dist/codex/v1/codex_pb.js +71 -6
- package/package.json +1 -1
|
@@ -665,12 +665,209 @@ export type RuntimeContext = Message<"agentruntime.v1.RuntimeContext"> & {
|
|
|
665
665
|
* @generated from field: repeated agentruntime.v1.RuntimeVirtualFile virtual_files = 3;
|
|
666
666
|
*/
|
|
667
667
|
virtualFiles: RuntimeVirtualFile[];
|
|
668
|
+
/**
|
|
669
|
+
* Typed profile for persistent teammate runtime capabilities. Workers and
|
|
670
|
+
* channel renderers should use this field as the source of truth; any VFS
|
|
671
|
+
* JSON projection is only a compatibility/read surface.
|
|
672
|
+
*
|
|
673
|
+
* @generated from field: agentruntime.v1.TeammateCapabilityProfile teammate_capability_profile = 4;
|
|
674
|
+
*/
|
|
675
|
+
teammateCapabilityProfile?: TeammateCapabilityProfile | undefined;
|
|
668
676
|
};
|
|
669
677
|
/**
|
|
670
678
|
* Describes the message agentruntime.v1.RuntimeContext.
|
|
671
679
|
* Use `create(RuntimeContextSchema)` to create a new message.
|
|
672
680
|
*/
|
|
673
681
|
export declare const RuntimeContextSchema: GenMessage<RuntimeContext>;
|
|
682
|
+
/**
|
|
683
|
+
* TeammateCapabilityProfile describes the runtime capability and isolation
|
|
684
|
+
* contract Platform grants to a persistent teammate run.
|
|
685
|
+
*
|
|
686
|
+
* @generated from message agentruntime.v1.TeammateCapabilityProfile
|
|
687
|
+
*/
|
|
688
|
+
export type TeammateCapabilityProfile = Message<"agentruntime.v1.TeammateCapabilityProfile"> & {
|
|
689
|
+
/**
|
|
690
|
+
* @generated from field: string schema_version = 1;
|
|
691
|
+
*/
|
|
692
|
+
schemaVersion: string;
|
|
693
|
+
/**
|
|
694
|
+
* @generated from field: string run_id = 2;
|
|
695
|
+
*/
|
|
696
|
+
runId: string;
|
|
697
|
+
/**
|
|
698
|
+
* @generated from field: string workspace_id = 3;
|
|
699
|
+
*/
|
|
700
|
+
workspaceId: string;
|
|
701
|
+
/**
|
|
702
|
+
* @generated from field: string agent_id = 4;
|
|
703
|
+
*/
|
|
704
|
+
agentId: string;
|
|
705
|
+
/**
|
|
706
|
+
* @generated from field: string work_envelope_id = 5;
|
|
707
|
+
*/
|
|
708
|
+
workEnvelopeId: string;
|
|
709
|
+
/**
|
|
710
|
+
* @generated from field: string work_envelope_kind = 6;
|
|
711
|
+
*/
|
|
712
|
+
workEnvelopeKind: string;
|
|
713
|
+
/**
|
|
714
|
+
* @generated from field: string surface = 7;
|
|
715
|
+
*/
|
|
716
|
+
surface: string;
|
|
717
|
+
/**
|
|
718
|
+
* @generated from field: string channel_kind = 8;
|
|
719
|
+
*/
|
|
720
|
+
channelKind: string;
|
|
721
|
+
/**
|
|
722
|
+
* @generated from field: string execution_owner = 9;
|
|
723
|
+
*/
|
|
724
|
+
executionOwner: string;
|
|
725
|
+
/**
|
|
726
|
+
* @generated from field: string channel_ingress_owner = 10;
|
|
727
|
+
*/
|
|
728
|
+
channelIngressOwner: string;
|
|
729
|
+
/**
|
|
730
|
+
* @generated from field: string channel_renderer = 11;
|
|
731
|
+
*/
|
|
732
|
+
channelRenderer: string;
|
|
733
|
+
/**
|
|
734
|
+
* @generated from field: string scheduler_owner = 12;
|
|
735
|
+
*/
|
|
736
|
+
schedulerOwner: string;
|
|
737
|
+
/**
|
|
738
|
+
* @generated from field: string memory_owner = 13;
|
|
739
|
+
*/
|
|
740
|
+
memoryOwner: string;
|
|
741
|
+
/**
|
|
742
|
+
* @generated from field: string evidence_owner = 14;
|
|
743
|
+
*/
|
|
744
|
+
evidenceOwner: string;
|
|
745
|
+
/**
|
|
746
|
+
* @generated from field: string privilege_model = 15;
|
|
747
|
+
*/
|
|
748
|
+
privilegeModel: string;
|
|
749
|
+
/**
|
|
750
|
+
* @generated from field: bool always_on = 16;
|
|
751
|
+
*/
|
|
752
|
+
alwaysOn: boolean;
|
|
753
|
+
/**
|
|
754
|
+
* @generated from field: bool ambient = 17;
|
|
755
|
+
*/
|
|
756
|
+
ambient: boolean;
|
|
757
|
+
/**
|
|
758
|
+
* @generated from field: repeated agentruntime.v1.TeammateCapability capabilities = 18;
|
|
759
|
+
*/
|
|
760
|
+
capabilities: TeammateCapability[];
|
|
761
|
+
/**
|
|
762
|
+
* @generated from field: repeated agentruntime.v1.TeammateExecutionStep execution_path = 19;
|
|
763
|
+
*/
|
|
764
|
+
executionPath: TeammateExecutionStep[];
|
|
765
|
+
/**
|
|
766
|
+
* @generated from field: repeated string isolation_boundaries = 20;
|
|
767
|
+
*/
|
|
768
|
+
isolationBoundaries: string[];
|
|
769
|
+
/**
|
|
770
|
+
* @generated from field: repeated string context_paths = 21;
|
|
771
|
+
*/
|
|
772
|
+
contextPaths: string[];
|
|
773
|
+
/**
|
|
774
|
+
* @generated from field: repeated string guardrails = 22;
|
|
775
|
+
*/
|
|
776
|
+
guardrails: string[];
|
|
777
|
+
};
|
|
778
|
+
/**
|
|
779
|
+
* Describes the message agentruntime.v1.TeammateCapabilityProfile.
|
|
780
|
+
* Use `create(TeammateCapabilityProfileSchema)` to create a new message.
|
|
781
|
+
*/
|
|
782
|
+
export declare const TeammateCapabilityProfileSchema: GenMessage<TeammateCapabilityProfile>;
|
|
783
|
+
/**
|
|
784
|
+
* TeammateCapability is one Platform-owned capability made available to a run.
|
|
785
|
+
*
|
|
786
|
+
* @generated from message agentruntime.v1.TeammateCapability
|
|
787
|
+
*/
|
|
788
|
+
export type TeammateCapability = Message<"agentruntime.v1.TeammateCapability"> & {
|
|
789
|
+
/**
|
|
790
|
+
* @generated from field: string id = 1;
|
|
791
|
+
*/
|
|
792
|
+
id: string;
|
|
793
|
+
/**
|
|
794
|
+
* @generated from field: string owner = 2;
|
|
795
|
+
*/
|
|
796
|
+
owner: string;
|
|
797
|
+
/**
|
|
798
|
+
* @generated from field: repeated string contract_paths = 3;
|
|
799
|
+
*/
|
|
800
|
+
contractPaths: string[];
|
|
801
|
+
/**
|
|
802
|
+
* @generated from field: repeated string rpcs = 4;
|
|
803
|
+
*/
|
|
804
|
+
rpcs: string[];
|
|
805
|
+
/**
|
|
806
|
+
* @generated from field: string isolation = 5;
|
|
807
|
+
*/
|
|
808
|
+
isolation: string;
|
|
809
|
+
/**
|
|
810
|
+
* @generated from field: bool slack_visible = 6;
|
|
811
|
+
*/
|
|
812
|
+
slackVisible: boolean;
|
|
813
|
+
/**
|
|
814
|
+
* @generated from field: bool requires_lease = 7;
|
|
815
|
+
*/
|
|
816
|
+
requiresLease: boolean;
|
|
817
|
+
/**
|
|
818
|
+
* @generated from field: bool proposal_only = 8;
|
|
819
|
+
*/
|
|
820
|
+
proposalOnly: boolean;
|
|
821
|
+
/**
|
|
822
|
+
* @generated from field: bool evidence_backed = 9;
|
|
823
|
+
*/
|
|
824
|
+
evidenceBacked: boolean;
|
|
825
|
+
};
|
|
826
|
+
/**
|
|
827
|
+
* Describes the message agentruntime.v1.TeammateCapability.
|
|
828
|
+
* Use `create(TeammateCapabilitySchema)` to create a new message.
|
|
829
|
+
*/
|
|
830
|
+
export declare const TeammateCapabilitySchema: GenMessage<TeammateCapability>;
|
|
831
|
+
/**
|
|
832
|
+
* TeammateExecutionStep is the concise ownership path for capability use.
|
|
833
|
+
*
|
|
834
|
+
* @generated from message agentruntime.v1.TeammateExecutionStep
|
|
835
|
+
*/
|
|
836
|
+
export type TeammateExecutionStep = Message<"agentruntime.v1.TeammateExecutionStep"> & {
|
|
837
|
+
/**
|
|
838
|
+
* @generated from field: string id = 1;
|
|
839
|
+
*/
|
|
840
|
+
id: string;
|
|
841
|
+
/**
|
|
842
|
+
* @generated from field: string owner = 2;
|
|
843
|
+
*/
|
|
844
|
+
owner: string;
|
|
845
|
+
/**
|
|
846
|
+
* @generated from field: repeated string reads = 3;
|
|
847
|
+
*/
|
|
848
|
+
reads: string[];
|
|
849
|
+
/**
|
|
850
|
+
* @generated from field: repeated string writes = 4;
|
|
851
|
+
*/
|
|
852
|
+
writes: string[];
|
|
853
|
+
/**
|
|
854
|
+
* @generated from field: repeated string rpcs = 5;
|
|
855
|
+
*/
|
|
856
|
+
rpcs: string[];
|
|
857
|
+
/**
|
|
858
|
+
* @generated from field: string isolation = 6;
|
|
859
|
+
*/
|
|
860
|
+
isolation: string;
|
|
861
|
+
/**
|
|
862
|
+
* @generated from field: string slack_behavior = 7;
|
|
863
|
+
*/
|
|
864
|
+
slackBehavior: string;
|
|
865
|
+
};
|
|
866
|
+
/**
|
|
867
|
+
* Describes the message agentruntime.v1.TeammateExecutionStep.
|
|
868
|
+
* Use `create(TeammateExecutionStepSchema)` to create a new message.
|
|
869
|
+
*/
|
|
870
|
+
export declare const TeammateExecutionStepSchema: GenMessage<TeammateExecutionStep>;
|
|
674
871
|
/**
|
|
675
872
|
* RuntimeVirtualFile is a read-only file projected into an agent run from
|
|
676
873
|
* platform services. It lets workers consume rich context through a stable VFS
|
|
@@ -3745,6 +3942,78 @@ export type GetChannelThreadAdoptionResponse = Message<"agentruntime.v1.GetChann
|
|
|
3745
3942
|
* Use `create(GetChannelThreadAdoptionResponseSchema)` to create a new message.
|
|
3746
3943
|
*/
|
|
3747
3944
|
export declare const GetChannelThreadAdoptionResponseSchema: GenMessage<GetChannelThreadAdoptionResponse>;
|
|
3945
|
+
/**
|
|
3946
|
+
* @generated from message agentruntime.v1.RecordChannelThreadAdoptionRequest
|
|
3947
|
+
*/
|
|
3948
|
+
export type RecordChannelThreadAdoptionRequest = Message<"agentruntime.v1.RecordChannelThreadAdoptionRequest"> & {
|
|
3949
|
+
/**
|
|
3950
|
+
* @generated from field: string workspace_id = 1;
|
|
3951
|
+
*/
|
|
3952
|
+
workspaceId: string;
|
|
3953
|
+
/**
|
|
3954
|
+
* @generated from field: string agent_id = 2;
|
|
3955
|
+
*/
|
|
3956
|
+
agentId: string;
|
|
3957
|
+
/**
|
|
3958
|
+
* @generated from field: agentruntime.v1.RuntimeChannelKind channel_kind = 3;
|
|
3959
|
+
*/
|
|
3960
|
+
channelKind: RuntimeChannelKind;
|
|
3961
|
+
/**
|
|
3962
|
+
* @generated from field: string provider_workspace_id = 4;
|
|
3963
|
+
*/
|
|
3964
|
+
providerWorkspaceId: string;
|
|
3965
|
+
/**
|
|
3966
|
+
* @generated from field: string channel_id = 5;
|
|
3967
|
+
*/
|
|
3968
|
+
channelId: string;
|
|
3969
|
+
/**
|
|
3970
|
+
* @generated from field: string thread_id = 6;
|
|
3971
|
+
*/
|
|
3972
|
+
threadId: string;
|
|
3973
|
+
/**
|
|
3974
|
+
* @generated from field: string message_id = 7;
|
|
3975
|
+
*/
|
|
3976
|
+
messageId: string;
|
|
3977
|
+
/**
|
|
3978
|
+
* @generated from field: string source_event_id = 8;
|
|
3979
|
+
*/
|
|
3980
|
+
sourceEventId: string;
|
|
3981
|
+
/**
|
|
3982
|
+
* @generated from field: string adoption_reason = 9;
|
|
3983
|
+
*/
|
|
3984
|
+
adoptionReason: string;
|
|
3985
|
+
/**
|
|
3986
|
+
* @generated from field: google.protobuf.Timestamp expires_at = 10;
|
|
3987
|
+
*/
|
|
3988
|
+
expiresAt?: Timestamp | undefined;
|
|
3989
|
+
/**
|
|
3990
|
+
* @generated from field: string work_envelope_id = 11;
|
|
3991
|
+
*/
|
|
3992
|
+
workEnvelopeId: string;
|
|
3993
|
+
/**
|
|
3994
|
+
* @generated from field: google.protobuf.Struct metadata = 12;
|
|
3995
|
+
*/
|
|
3996
|
+
metadata?: JsonObject | undefined;
|
|
3997
|
+
};
|
|
3998
|
+
/**
|
|
3999
|
+
* Describes the message agentruntime.v1.RecordChannelThreadAdoptionRequest.
|
|
4000
|
+
* Use `create(RecordChannelThreadAdoptionRequestSchema)` to create a new message.
|
|
4001
|
+
*/
|
|
4002
|
+
export declare const RecordChannelThreadAdoptionRequestSchema: GenMessage<RecordChannelThreadAdoptionRequest>;
|
|
4003
|
+
/**
|
|
4004
|
+
* @generated from message agentruntime.v1.RecordChannelThreadAdoptionResponse
|
|
4005
|
+
*/
|
|
4006
|
+
export type RecordChannelThreadAdoptionResponse = Message<"agentruntime.v1.RecordChannelThreadAdoptionResponse"> & {
|
|
4007
|
+
/**
|
|
4008
|
+
* @generated from field: agentruntime.v1.ChannelThreadAdoption adoption = 1;
|
|
4009
|
+
*/
|
|
4010
|
+
adoption?: ChannelThreadAdoption | undefined;
|
|
4011
|
+
};
|
|
4012
|
+
/**
|
|
4013
|
+
* Describes the message agentruntime.v1.RecordChannelThreadAdoptionResponse.
|
|
4014
|
+
* Use `create(RecordChannelThreadAdoptionResponseSchema)` to create a new message.
|
|
4015
|
+
*/
|
|
4016
|
+
export declare const RecordChannelThreadAdoptionResponseSchema: GenMessage<RecordChannelThreadAdoptionResponse>;
|
|
3748
4017
|
/**
|
|
3749
4018
|
* @generated from message agentruntime.v1.ListChannelThreadAdoptionsRequest
|
|
3750
4019
|
*/
|
|
@@ -7608,6 +7877,17 @@ export declare const AgentRuntimeService: GenService<{
|
|
|
7608
7877
|
input: typeof GetChannelThreadAdoptionRequestSchema;
|
|
7609
7878
|
output: typeof GetChannelThreadAdoptionResponseSchema;
|
|
7610
7879
|
};
|
|
7880
|
+
/**
|
|
7881
|
+
* RecordChannelThreadAdoption durably records an adapter-observed channel
|
|
7882
|
+
* thread adoption without requiring the adapter to create a new AgentRun.
|
|
7883
|
+
*
|
|
7884
|
+
* @generated from rpc agentruntime.v1.AgentRuntimeService.RecordChannelThreadAdoption
|
|
7885
|
+
*/
|
|
7886
|
+
recordChannelThreadAdoption: {
|
|
7887
|
+
methodKind: "unary";
|
|
7888
|
+
input: typeof RecordChannelThreadAdoptionRequestSchema;
|
|
7889
|
+
output: typeof RecordChannelThreadAdoptionResponseSchema;
|
|
7890
|
+
};
|
|
7611
7891
|
/**
|
|
7612
7892
|
* ListChannelThreadAdoptions returns the durable adoption projection for
|
|
7613
7893
|
* operator/debug surfaces and channel-adapter reconciliation.
|