├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── A2A.slnx ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── assets └── protos │ ├── a2a.proto │ └── google │ └── api │ ├── annotations.proto │ ├── client.proto │ ├── field_behavior.proto │ ├── http.proto │ └── launch_stage.proto ├── samples └── A2A.Samples.SemanticKernel.Server │ ├── A2A.Samples.SemanticKernel.Server.csproj │ ├── ChatAgent.cs │ ├── Configuration │ ├── ApplicationOptions.cs │ └── OpenAIApiClientOptions.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Usings.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── src ├── A2A.Client.Abstractions │ ├── A2A.Client.Abstractions.csproj │ ├── IA2AClient.cs │ ├── IA2AClientBuilder.cs │ ├── IA2AClientTransport.cs │ └── Usings.cs ├── A2A.Client.Transports.Grpc │ ├── A2A.Client.Transports.Grpc.csproj │ ├── A2AGrpcClientTransport.cs │ ├── A2AGrpcMapper.cs │ ├── Extensions │ │ └── A2AClientBuilderExtensions.cs │ └── Usings.cs ├── A2A.Client.Transports.Http │ ├── A2A.Client.Transports.Http.csproj │ ├── A2AHttpClientTransport.cs │ ├── Extensions │ │ └── A2AClientBuilderExtensions.cs │ └── Usings.cs ├── A2A.Client.Transports.JsonRpc │ ├── A2A.Client.Transports.JsonRpc.csproj │ ├── A2AJsonRpcClientTransport.cs │ ├── Extensions │ │ └── A2AClientBuilderExtensions.cs │ └── Usings.cs ├── A2A.Client │ ├── A2A.Client.csproj │ ├── A2AClient.cs │ ├── A2AClientBuilder.cs │ ├── A2ADiscoveryDocument.cs │ ├── A2ADiscoveryDocumentRequest.cs │ ├── Extensions │ │ ├── A2AClientServiceCollectionExtensions.cs │ │ └── HttpClientExtensions.cs │ └── Usings.cs ├── A2A.Core.JsonRpc │ ├── A2A.Core.JsonRpc.csproj │ ├── A2AJsonRpcMethod.cs │ ├── JsonRpcErrorCode.cs │ ├── JsonRpcVersion.cs │ ├── Models │ │ ├── CancelTaskMethodParameters.cs │ │ ├── DeletePushNotificationConfigMethodParameters.cs │ │ ├── GetPushNotificationConfigMethodParameters.cs │ │ ├── GetTaskMethodParameters.cs │ │ ├── JsonRpcError.cs │ │ ├── JsonRpcMessage.cs │ │ ├── JsonRpcRequest.cs │ │ ├── JsonRpcResponse.cs │ │ └── SubscribeToTaskMethodParameters.cs │ ├── Serialization │ │ └── Json │ │ │ └── JsonRpcSerializationContext.cs │ └── Usings.cs ├── A2A.Core │ ├── A2A.Core.csproj │ ├── A2AException.cs │ ├── ApiKeyLocation.cs │ ├── ErrorCode.cs │ ├── Extensions │ │ └── TaskExtensions.cs │ ├── HttpSecuritySchemeType.cs │ ├── Models │ │ ├── AgentCapabilities.cs │ │ ├── AgentCard.cs │ │ ├── AgentCardSignature.cs │ │ ├── AgentExtension.cs │ │ ├── AgentInterface.cs │ │ ├── AgentProvider.cs │ │ ├── AgentSkill.cs │ │ ├── ApiKeySecurityScheme.cs │ │ ├── Artifact.cs │ │ ├── AuthenticationInfo.cs │ │ ├── DataPart.cs │ │ ├── FilePart.cs │ │ ├── HttpSecurityScheme.cs │ │ ├── Message.cs │ │ ├── MutualTlsSecurityScheme.cs │ │ ├── OAuth2SecurityScheme.cs │ │ ├── OAuthFlow.cs │ │ ├── OAuthFlows.cs │ │ ├── OpenIdConnectSecurityScheme.cs │ │ ├── Part.cs │ │ ├── PushNotificationConfig.cs │ │ ├── Response.cs │ │ ├── SecurityScheme.cs │ │ ├── SendMessageConfiguration.cs │ │ ├── SendMessageRequest.cs │ │ ├── SetTaskPushNotificationConfigRequest.cs │ │ ├── StreamResponse.cs │ │ ├── Task.cs │ │ ├── TaskArtifactUpdateEvent.cs │ │ ├── TaskEvent.cs │ │ ├── TaskPushNotificationConfig.cs │ │ ├── TaskPushNotificationConfigQueryOptions.cs │ │ ├── TaskPushNotificationConfigQueryResult.cs │ │ ├── TaskQueryOptions.cs │ │ ├── TaskQueryResult.cs │ │ ├── TaskStatus.cs │ │ ├── TaskStatusUpdateEvent.cs │ │ └── TextPart.cs │ ├── ProtocolBinding.cs │ ├── Role.cs │ ├── SecuritySchemeType.cs │ ├── Serialization │ │ └── Json │ │ │ ├── JsonPartConverter.cs │ │ │ ├── JsonResponseConverter.cs │ │ │ └── JsonSerializationContext.cs │ ├── Services │ │ ├── AgentCardBuilder.cs │ │ ├── AgentExtensionBuilder.cs │ │ ├── AgentProviderBuilder.cs │ │ ├── AgentSkillBuilder.cs │ │ ├── ApiKeySecuritySchemeBuilder.cs │ │ ├── GenericSecuritySchemeBuilder.cs │ │ ├── HttpSecuritySchemeBuilder.cs │ │ ├── IA2AProtocolApi.cs │ │ ├── IAgentCardBuilder.cs │ │ ├── IAgentExtensionBuilder.cs │ │ ├── IAgentProviderBuilder.cs │ │ ├── IAgentSkillBuilder.cs │ │ ├── IApiKeySecuritySchemeBuilder.cs │ │ ├── IGenericSecuritySchemeBuilder.cs │ │ ├── IHttpSecuritySchemeBuilder.cs │ │ ├── IMutualTlsSecuritySchemeBuilder.cs │ │ ├── IOAuth2SecuritySchemeBuilder.cs │ │ ├── IOAuthFlowBuilder.cs │ │ ├── IOpenIdConnectSecuritySchemeBuilder.cs │ │ ├── ISecuritySchemeBuilder.cs │ │ ├── MutualTlsSecuritySchemeBuilder.cs │ │ ├── OAuth2SecuritySchemeBuilder.cs │ │ ├── OAuthFlowBuilder.cs │ │ └── OpenIdConnectSecuritySchemeBuilder.cs │ ├── StreamResponseType.cs │ ├── TaskState.cs │ └── Usings.cs ├── A2A.Server.Abstractions │ ├── A2A.Server.Abstractions.csproj │ ├── A2AHostedAgentDefinition.cs │ ├── IA2AServerTransport.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── IA2AAgentRuntime.cs │ │ ├── IA2AHostedAgentDefinitionBuilder.cs │ │ ├── IA2APushNotificationSender.cs │ │ ├── IA2AServer.cs │ │ ├── IA2AServerBuilder.cs │ │ ├── IA2AStore.cs │ │ ├── IA2ATaskEventStream.cs │ │ ├── IA2ATaskQueue.cs │ │ └── IJsonWebKeySet.cs │ └── Usings.cs ├── A2A.Server.AspNetCore │ ├── A2A.Server.csproj │ ├── A2AServerDefaults.cs │ ├── Extensions │ │ ├── A2AServerServiceCollectionExtensions.cs │ │ └── A2AServerWebApplicationExtensions.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── A2AHostedAgentDefinitionBuilder.cs │ │ ├── A2APushNotificationSender.cs │ │ ├── A2AServer.cs │ │ ├── A2AServerBuilder.cs │ │ ├── A2ATaskEventStream.cs │ │ └── JsonWebKeySet.cs │ └── Using.cs ├── A2A.Server.Persistence.Memory │ ├── A2A.Server.Persistence.Memory.csproj │ ├── Configuration │ │ └── MemoryStateStoreOptions.cs │ ├── Extensions │ │ └── MemoryStateStoreA2AServerBuilderExtensions.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── MemoryStore.cs │ └── Usings.cs ├── A2A.Server.Persistence.Redis │ ├── A2A.Server.Persistence.Redis.csproj │ ├── Configuration │ │ └── RedisStateStoreOptions.cs │ ├── Extensions │ │ └── RedisStateStoreA2AServerBuilderExtensions.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── RedisStore.cs │ └── Usings.cs ├── A2A.Server.Scheduling.Memory │ ├── A2A.Server.Scheduling.Memory.csproj │ ├── Extensions │ │ └── MemorySchedulingA2AServerBuilderExtensions.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ └── MemoryTaskQueue.cs │ └── Usings.cs ├── A2A.Server.Scheduling.Quartz │ ├── A2A.Server.Scheduling.Quartz.csproj │ ├── Extensions │ │ └── QuartzSchedulingA2AServerBuilderExtensions.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── QuartzTaskExecutionJob.cs │ │ └── QuartzTaskQueue.cs │ └── Usings.cs ├── A2A.Server.Transports.Grpc │ ├── A2A.Server.Transports.Grpc.csproj │ ├── A2AGrpcMapper.cs │ ├── A2AGrpcServerService.cs │ ├── A2AGrpcServerTransport.cs │ ├── Extensions │ │ └── A2AGrpcTransportServerBuilderExtensions.cs │ ├── Properties │ │ └── launchSettings.json │ └── Usings.cs ├── A2A.Server.Transports.Http │ ├── A2A.Server.Transports.Http.csproj │ ├── A2AHttpServerTransport.cs │ ├── A2AProblem.cs │ ├── Extensions │ │ └── A2AHttpTransportServerBuilderExtensions.cs │ ├── Properties │ │ └── launchSettings.json │ └── Usings.cs └── A2A.Server.Transports.JsonRpc │ ├── A2A.Server.Transports.JsonRpc.csproj │ ├── A2AJsonRpcServerTransport.cs │ ├── Extensions │ └── A2AJsonRpcTransportServerBuilderExtensions.cs │ ├── Properties │ └── launchSettings.json │ └── Usings.cs ├── tests ├── A2A.IntegrationTests │ ├── A2A.IntegrationTests.csproj │ ├── Cases │ │ ├── Stores │ │ │ ├── A2AStoreIntegrationTestsBase.cs │ │ │ ├── MemoryStoreIntegrationTests.cs │ │ │ └── RedisStoreTests.cs │ │ └── TaskQueues │ │ │ ├── A2ATaskQueueIntegrationTests.cs │ │ │ ├── MemoryTaskQueueIntegrationTests.cs │ │ │ └── QuartzTaskQueueIntegrationTests.cs │ └── Usings.cs └── A2A.UnitTests │ ├── A2A.UnitTests.csproj │ ├── Cases │ ├── Core │ │ ├── JsonRpc │ │ │ └── Models │ │ │ │ ├── CancelTaskMethodParametersTests.cs │ │ │ │ ├── DeletePushNotificationConfigMethodParametersTests.cs │ │ │ │ ├── GetPushNotificationConfigMethodParametersTests.cs │ │ │ │ ├── GetTaskMethodParametersTests.cs │ │ │ │ ├── JsonRpcErrorTests.cs │ │ │ │ ├── JsonRpcRequestTests.cs │ │ │ │ ├── JsonRpcResponseTests.cs │ │ │ │ └── SubscribeToTaskMethodParametersTests.cs │ │ └── Models │ │ │ ├── AgentCapabilitiesTests.cs │ │ │ ├── AgentCardSignatureTests.cs │ │ │ ├── AgentCardTests.cs │ │ │ ├── AgentExtensionTests.cs │ │ │ ├── AgentInterfaceTests.cs │ │ │ ├── AgentProviderTests.cs │ │ │ ├── AgentSkillTests.cs │ │ │ ├── ApiKeySecuritySchemeTests.cs │ │ │ ├── ArtifactTests.cs │ │ │ ├── AuthenticationInfoTests.cs │ │ │ ├── DataPartTests.cs │ │ │ ├── FilePartTests.cs │ │ │ ├── HttpSecuritySchemeTests.cs │ │ │ ├── MessageTests.cs │ │ │ ├── MutualTlsSecuritySchemeTests.cs │ │ │ ├── OAuth2SecuritySchemeTests.cs │ │ │ ├── OAuthFlowTests.cs │ │ │ ├── OAuthFlowsTests.cs │ │ │ ├── OpenIdConnectSecuritySchemeTests.cs │ │ │ ├── PartTests.cs │ │ │ ├── PushNotificationConfigTests.cs │ │ │ ├── ResponseTests.cs │ │ │ ├── SecuritySchemeTests.cs │ │ │ ├── SendMessageConfigurationTests.cs │ │ │ ├── SendMessageRequestTests.cs │ │ │ ├── SetTaskPushNotificationConfigRequestTests.cs │ │ │ ├── StreamResponseTests.cs │ │ │ ├── TaskArtifactUpdateEventTests.cs │ │ │ ├── TaskPushNotificationConfigQueryOptionsTests.cs │ │ │ ├── TaskPushNotificationConfigQueryResultTests.cs │ │ │ ├── TaskPushNotificationConfigTests.cs │ │ │ ├── TaskQueryOptionsTests.cs │ │ │ ├── TaskQueryResultTests.cs │ │ │ ├── TaskStatusTests.cs │ │ │ ├── TaskStatusUpdateEventTests.cs │ │ │ ├── TaskTests.cs │ │ │ └── TextPartTests.cs │ └── Server │ │ └── Services │ │ └── A2AServerTests.cs │ ├── Extensions │ └── ObjectExtensions.cs │ ├── Services │ ├── A2AServerFactory.cs │ ├── AgentCapabilitiesFactory.cs │ ├── AgentCardFactory.cs │ ├── AgentCardSignatureFactory.cs │ ├── AgentExtensionFactory.cs │ ├── AgentInterfaceFactory.cs │ ├── AgentProviderFactory.cs │ ├── AgentSkillFactory.cs │ ├── ArtifactFactory.cs │ ├── AuthenticationInfoFactory.cs │ ├── CancelTaskMethodParametersFactory.cs │ ├── DeletePushNotificationConfigMethodParametersFactory.cs │ ├── GetPushNotificationConfigMethodParametersFactory.cs │ ├── GetTaskMethodParametersFactory.cs │ ├── JsonRpcErrorFactory.cs │ ├── JsonRpcRequestFactory.cs │ ├── JsonRpcResponseFactory.cs │ ├── MessageFactory.cs │ ├── OAuthFlowFactory.cs │ ├── OAuthFlowsFactory.cs │ ├── PartFactory.cs │ ├── PushNotificationConfigFactory.cs │ ├── PushNotificationConfigQueryOptionsFactory.cs │ ├── SecuritySchemeFactory.cs │ ├── SendMessageConfigurationFactory.cs │ ├── SendMessageRequestFactory.cs │ ├── SetOrUpdatePushNotificationConfigRequestFactory.cs │ ├── StreamResponseFactory.cs │ ├── SubscribeToTaskMethodParametersFactory.cs │ ├── TaskArtifactUpdateEventFactory.cs │ ├── TaskFactory.cs │ ├── TaskPushNotificationConfigFactory.cs │ ├── TaskPushNotificationConfigQueryResultFactory.cs │ ├── TaskQueryOptionsFactory.cs │ ├── TaskQueryResultFactory.cs │ ├── TaskStatusFactory.cs │ └── TaskStatusUpdateEventFactory.cs │ └── Usings.cs └── tools └── A2A.ClientConsole ├── A2A.ClientConsole.csproj ├── Program.cs └── Usings.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: [] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/.gitignore -------------------------------------------------------------------------------- /A2A.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/A2A.slnx -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/protos/a2a.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/assets/protos/a2a.proto -------------------------------------------------------------------------------- /assets/protos/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/assets/protos/google/api/annotations.proto -------------------------------------------------------------------------------- /assets/protos/google/api/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/assets/protos/google/api/client.proto -------------------------------------------------------------------------------- /assets/protos/google/api/field_behavior.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/assets/protos/google/api/field_behavior.proto -------------------------------------------------------------------------------- /assets/protos/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/assets/protos/google/api/http.proto -------------------------------------------------------------------------------- /assets/protos/google/api/launch_stage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/assets/protos/google/api/launch_stage.proto -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/A2A.Samples.SemanticKernel.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/A2A.Samples.SemanticKernel.Server.csproj -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/ChatAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/ChatAgent.cs -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/Configuration/ApplicationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/Configuration/ApplicationOptions.cs -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/Configuration/OpenAIApiClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/Configuration/OpenAIApiClientOptions.cs -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/Program.cs -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/Usings.cs -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/appsettings.Development.json -------------------------------------------------------------------------------- /samples/A2A.Samples.SemanticKernel.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/samples/A2A.Samples.SemanticKernel.Server/appsettings.json -------------------------------------------------------------------------------- /src/A2A.Client.Abstractions/A2A.Client.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Abstractions/A2A.Client.Abstractions.csproj -------------------------------------------------------------------------------- /src/A2A.Client.Abstractions/IA2AClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Abstractions/IA2AClient.cs -------------------------------------------------------------------------------- /src/A2A.Client.Abstractions/IA2AClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Abstractions/IA2AClientBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Client.Abstractions/IA2AClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Abstractions/IA2AClientTransport.cs -------------------------------------------------------------------------------- /src/A2A.Client.Abstractions/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Abstractions/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Grpc/A2A.Client.Transports.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Grpc/A2A.Client.Transports.Grpc.csproj -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Grpc/A2AGrpcClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Grpc/A2AGrpcClientTransport.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Grpc/A2AGrpcMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Grpc/A2AGrpcMapper.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Grpc/Extensions/A2AClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Grpc/Extensions/A2AClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Grpc/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Grpc/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Http/A2A.Client.Transports.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Http/A2A.Client.Transports.Http.csproj -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Http/A2AHttpClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Http/A2AHttpClientTransport.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Http/Extensions/A2AClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Http/Extensions/A2AClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.Http/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.Http/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.JsonRpc/A2A.Client.Transports.JsonRpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.JsonRpc/A2A.Client.Transports.JsonRpc.csproj -------------------------------------------------------------------------------- /src/A2A.Client.Transports.JsonRpc/A2AJsonRpcClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.JsonRpc/A2AJsonRpcClientTransport.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.JsonRpc/Extensions/A2AClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.JsonRpc/Extensions/A2AClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Client.Transports.JsonRpc/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client.Transports.JsonRpc/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Client/A2A.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/A2A.Client.csproj -------------------------------------------------------------------------------- /src/A2A.Client/A2AClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/A2AClient.cs -------------------------------------------------------------------------------- /src/A2A.Client/A2AClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/A2AClientBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Client/A2ADiscoveryDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/A2ADiscoveryDocument.cs -------------------------------------------------------------------------------- /src/A2A.Client/A2ADiscoveryDocumentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/A2ADiscoveryDocumentRequest.cs -------------------------------------------------------------------------------- /src/A2A.Client/Extensions/A2AClientServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/Extensions/A2AClientServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Client/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Client/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Client/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/A2A.Core.JsonRpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/A2A.Core.JsonRpc.csproj -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/A2AJsonRpcMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/A2AJsonRpcMethod.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/JsonRpcErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/JsonRpcErrorCode.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/JsonRpcVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/JsonRpcVersion.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/CancelTaskMethodParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/CancelTaskMethodParameters.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/DeletePushNotificationConfigMethodParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/DeletePushNotificationConfigMethodParameters.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/GetPushNotificationConfigMethodParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/GetPushNotificationConfigMethodParameters.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/GetTaskMethodParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/GetTaskMethodParameters.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/JsonRpcError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/JsonRpcError.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/JsonRpcMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/JsonRpcMessage.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/JsonRpcRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/JsonRpcRequest.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/JsonRpcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/JsonRpcResponse.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Models/SubscribeToTaskMethodParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Models/SubscribeToTaskMethodParameters.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Serialization/Json/JsonRpcSerializationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Serialization/Json/JsonRpcSerializationContext.cs -------------------------------------------------------------------------------- /src/A2A.Core.JsonRpc/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core.JsonRpc/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Core/A2A.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/A2A.Core.csproj -------------------------------------------------------------------------------- /src/A2A.Core/A2AException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/A2AException.cs -------------------------------------------------------------------------------- /src/A2A.Core/ApiKeyLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/ApiKeyLocation.cs -------------------------------------------------------------------------------- /src/A2A.Core/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/ErrorCode.cs -------------------------------------------------------------------------------- /src/A2A.Core/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Core/HttpSecuritySchemeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/HttpSecuritySchemeType.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AgentCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AgentCapabilities.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AgentCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AgentCard.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AgentCardSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AgentCardSignature.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AgentExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AgentExtension.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AgentInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AgentInterface.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AgentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AgentProvider.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AgentSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AgentSkill.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/ApiKeySecurityScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/ApiKeySecurityScheme.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/Artifact.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/AuthenticationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/AuthenticationInfo.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/DataPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/DataPart.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/FilePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/FilePart.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/HttpSecurityScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/HttpSecurityScheme.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/Message.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/MutualTlsSecurityScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/MutualTlsSecurityScheme.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/OAuth2SecurityScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/OAuth2SecurityScheme.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/OAuthFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/OAuthFlow.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/OAuthFlows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/OAuthFlows.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/OpenIdConnectSecurityScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/OpenIdConnectSecurityScheme.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/Part.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/Part.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/PushNotificationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/PushNotificationConfig.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/Response.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/SecurityScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/SecurityScheme.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/SendMessageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/SendMessageConfiguration.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/SendMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/SendMessageRequest.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/SetTaskPushNotificationConfigRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/SetTaskPushNotificationConfigRequest.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/StreamResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/StreamResponse.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/Task.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskArtifactUpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskArtifactUpdateEvent.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskEvent.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskPushNotificationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskPushNotificationConfig.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskPushNotificationConfigQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskPushNotificationConfigQueryOptions.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskPushNotificationConfigQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskPushNotificationConfigQueryResult.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskQueryOptions.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskQueryResult.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskStatus.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TaskStatusUpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TaskStatusUpdateEvent.cs -------------------------------------------------------------------------------- /src/A2A.Core/Models/TextPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Models/TextPart.cs -------------------------------------------------------------------------------- /src/A2A.Core/ProtocolBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/ProtocolBinding.cs -------------------------------------------------------------------------------- /src/A2A.Core/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Role.cs -------------------------------------------------------------------------------- /src/A2A.Core/SecuritySchemeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/SecuritySchemeType.cs -------------------------------------------------------------------------------- /src/A2A.Core/Serialization/Json/JsonPartConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Serialization/Json/JsonPartConverter.cs -------------------------------------------------------------------------------- /src/A2A.Core/Serialization/Json/JsonResponseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Serialization/Json/JsonResponseConverter.cs -------------------------------------------------------------------------------- /src/A2A.Core/Serialization/Json/JsonSerializationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Serialization/Json/JsonSerializationContext.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/AgentCardBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/AgentCardBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/AgentExtensionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/AgentExtensionBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/AgentProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/AgentProviderBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/AgentSkillBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/AgentSkillBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/ApiKeySecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/ApiKeySecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/GenericSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/GenericSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/HttpSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/HttpSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IA2AProtocolApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IA2AProtocolApi.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IAgentCardBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IAgentCardBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IAgentExtensionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IAgentExtensionBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IAgentProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IAgentProviderBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IAgentSkillBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IAgentSkillBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IApiKeySecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IApiKeySecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IGenericSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IGenericSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IHttpSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IHttpSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IMutualTlsSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IMutualTlsSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IOAuth2SecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IOAuth2SecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IOAuthFlowBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IOAuthFlowBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/IOpenIdConnectSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/IOpenIdConnectSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/ISecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/ISecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/MutualTlsSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/MutualTlsSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/OAuth2SecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/OAuth2SecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/OAuthFlowBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/OAuthFlowBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/Services/OpenIdConnectSecuritySchemeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Services/OpenIdConnectSecuritySchemeBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Core/StreamResponseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/StreamResponseType.cs -------------------------------------------------------------------------------- /src/A2A.Core/TaskState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/TaskState.cs -------------------------------------------------------------------------------- /src/A2A.Core/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Core/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/A2A.Server.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/A2A.Server.Abstractions.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/A2AHostedAgentDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/A2AHostedAgentDefinition.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/IA2AServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/IA2AServerTransport.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2AAgentRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2AAgentRuntime.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2AHostedAgentDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2AHostedAgentDefinitionBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2APushNotificationSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2APushNotificationSender.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2AServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2AServer.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2AServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2AServerBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2AStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2AStore.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2ATaskEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2ATaskEventStream.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IA2ATaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IA2ATaskQueue.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Services/IJsonWebKeySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Services/IJsonWebKeySet.cs -------------------------------------------------------------------------------- /src/A2A.Server.Abstractions/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Abstractions/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/A2A.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/A2A.Server.csproj -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/A2AServerDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/A2AServerDefaults.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Extensions/A2AServerServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Extensions/A2AServerServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Extensions/A2AServerWebApplicationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Extensions/A2AServerWebApplicationExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Services/A2AHostedAgentDefinitionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Services/A2AHostedAgentDefinitionBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Services/A2APushNotificationSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Services/A2APushNotificationSender.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Services/A2AServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Services/A2AServer.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Services/A2AServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Services/A2AServerBuilder.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Services/A2ATaskEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Services/A2ATaskEventStream.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Services/JsonWebKeySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Services/JsonWebKeySet.cs -------------------------------------------------------------------------------- /src/A2A.Server.AspNetCore/Using.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.AspNetCore/Using.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Memory/A2A.Server.Persistence.Memory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Memory/A2A.Server.Persistence.Memory.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Memory/Configuration/MemoryStateStoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Memory/Configuration/MemoryStateStoreOptions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Memory/Extensions/MemoryStateStoreA2AServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Memory/Extensions/MemoryStateStoreA2AServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Memory/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Memory/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Memory/Services/MemoryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Memory/Services/MemoryStore.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Memory/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Memory/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Redis/A2A.Server.Persistence.Redis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Redis/A2A.Server.Persistence.Redis.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Redis/Configuration/RedisStateStoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Redis/Configuration/RedisStateStoreOptions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Redis/Extensions/RedisStateStoreA2AServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Redis/Extensions/RedisStateStoreA2AServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Redis/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Redis/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Redis/Services/RedisStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Redis/Services/RedisStore.cs -------------------------------------------------------------------------------- /src/A2A.Server.Persistence.Redis/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Persistence.Redis/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Memory/A2A.Server.Scheduling.Memory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Memory/A2A.Server.Scheduling.Memory.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Memory/Extensions/MemorySchedulingA2AServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Memory/Extensions/MemorySchedulingA2AServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Memory/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Memory/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Memory/Services/MemoryTaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Memory/Services/MemoryTaskQueue.cs -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Memory/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Memory/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Quartz/A2A.Server.Scheduling.Quartz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Quartz/A2A.Server.Scheduling.Quartz.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Quartz/Extensions/QuartzSchedulingA2AServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Quartz/Extensions/QuartzSchedulingA2AServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Quartz/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Quartz/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Quartz/Services/QuartzTaskExecutionJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Quartz/Services/QuartzTaskExecutionJob.cs -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Quartz/Services/QuartzTaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Quartz/Services/QuartzTaskQueue.cs -------------------------------------------------------------------------------- /src/A2A.Server.Scheduling.Quartz/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Scheduling.Quartz/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Grpc/A2A.Server.Transports.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Grpc/A2A.Server.Transports.Grpc.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Grpc/A2AGrpcMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Grpc/A2AGrpcMapper.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Grpc/A2AGrpcServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Grpc/A2AGrpcServerService.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Grpc/A2AGrpcServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Grpc/A2AGrpcServerTransport.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Grpc/Extensions/A2AGrpcTransportServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Grpc/Extensions/A2AGrpcTransportServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Grpc/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Grpc/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Grpc/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Grpc/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Http/A2A.Server.Transports.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Http/A2A.Server.Transports.Http.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Http/A2AHttpServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Http/A2AHttpServerTransport.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Http/A2AProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Http/A2AProblem.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Http/Extensions/A2AHttpTransportServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Http/Extensions/A2AHttpTransportServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Http/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Http/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Transports.Http/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.Http/Usings.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.JsonRpc/A2A.Server.Transports.JsonRpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.JsonRpc/A2A.Server.Transports.JsonRpc.csproj -------------------------------------------------------------------------------- /src/A2A.Server.Transports.JsonRpc/A2AJsonRpcServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.JsonRpc/A2AJsonRpcServerTransport.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.JsonRpc/Extensions/A2AJsonRpcTransportServerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.JsonRpc/Extensions/A2AJsonRpcTransportServerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/A2A.Server.Transports.JsonRpc/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.JsonRpc/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/A2A.Server.Transports.JsonRpc/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/src/A2A.Server.Transports.JsonRpc/Usings.cs -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/A2A.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/A2A.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/Cases/Stores/A2AStoreIntegrationTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/Cases/Stores/A2AStoreIntegrationTestsBase.cs -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/Cases/Stores/MemoryStoreIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/Cases/Stores/MemoryStoreIntegrationTests.cs -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/Cases/Stores/RedisStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/Cases/Stores/RedisStoreTests.cs -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/Cases/TaskQueues/A2ATaskQueueIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/Cases/TaskQueues/A2ATaskQueueIntegrationTests.cs -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/Cases/TaskQueues/MemoryTaskQueueIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/Cases/TaskQueues/MemoryTaskQueueIntegrationTests.cs -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/Cases/TaskQueues/QuartzTaskQueueIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/Cases/TaskQueues/QuartzTaskQueueIntegrationTests.cs -------------------------------------------------------------------------------- /tests/A2A.IntegrationTests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.IntegrationTests/Usings.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/A2A.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/A2A.UnitTests.csproj -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/CancelTaskMethodParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/CancelTaskMethodParametersTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/DeletePushNotificationConfigMethodParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/DeletePushNotificationConfigMethodParametersTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/GetPushNotificationConfigMethodParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/GetPushNotificationConfigMethodParametersTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/GetTaskMethodParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/GetTaskMethodParametersTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/JsonRpcErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/JsonRpcErrorTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/JsonRpcRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/JsonRpcRequestTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/JsonRpcResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/JsonRpcResponseTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/SubscribeToTaskMethodParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/JsonRpc/Models/SubscribeToTaskMethodParametersTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AgentCapabilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AgentCapabilitiesTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AgentCardSignatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AgentCardSignatureTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AgentCardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AgentCardTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AgentExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AgentExtensionTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AgentInterfaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AgentInterfaceTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AgentProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AgentProviderTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AgentSkillTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AgentSkillTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/ApiKeySecuritySchemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/ApiKeySecuritySchemeTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/ArtifactTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/ArtifactTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/AuthenticationInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/AuthenticationInfoTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/DataPartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/DataPartTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/FilePartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/FilePartTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/HttpSecuritySchemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/HttpSecuritySchemeTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/MessageTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/MutualTlsSecuritySchemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/MutualTlsSecuritySchemeTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/OAuth2SecuritySchemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/OAuth2SecuritySchemeTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/OAuthFlowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/OAuthFlowTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/OAuthFlowsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/OAuthFlowsTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/OpenIdConnectSecuritySchemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/OpenIdConnectSecuritySchemeTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/PartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/PartTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/PushNotificationConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/PushNotificationConfigTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/ResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/ResponseTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/SecuritySchemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/SecuritySchemeTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/SendMessageConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/SendMessageConfigurationTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/SendMessageRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/SendMessageRequestTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/SetTaskPushNotificationConfigRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/SetTaskPushNotificationConfigRequestTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/StreamResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/StreamResponseTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskArtifactUpdateEventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskArtifactUpdateEventTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskPushNotificationConfigQueryOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskPushNotificationConfigQueryOptionsTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskPushNotificationConfigQueryResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskPushNotificationConfigQueryResultTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskPushNotificationConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskPushNotificationConfigTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskQueryOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskQueryOptionsTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskQueryResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskQueryResultTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskStatusTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskStatusTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskStatusUpdateEventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskStatusUpdateEventTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TaskTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Core/Models/TextPartTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Core/Models/TextPartTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Cases/Server/Services/A2AServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Cases/Server/Services/A2AServerTests.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/A2AServerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/A2AServerFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AgentCapabilitiesFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AgentCapabilitiesFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AgentCardFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AgentCardFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AgentCardSignatureFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AgentCardSignatureFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AgentExtensionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AgentExtensionFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AgentInterfaceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AgentInterfaceFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AgentProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AgentProviderFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AgentSkillFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AgentSkillFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/ArtifactFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/ArtifactFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/AuthenticationInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/AuthenticationInfoFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/CancelTaskMethodParametersFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/CancelTaskMethodParametersFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/DeletePushNotificationConfigMethodParametersFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/DeletePushNotificationConfigMethodParametersFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/GetPushNotificationConfigMethodParametersFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/GetPushNotificationConfigMethodParametersFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/GetTaskMethodParametersFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/GetTaskMethodParametersFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/JsonRpcErrorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/JsonRpcErrorFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/JsonRpcRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/JsonRpcRequestFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/JsonRpcResponseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/JsonRpcResponseFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/MessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/MessageFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/OAuthFlowFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/OAuthFlowFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/OAuthFlowsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/OAuthFlowsFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/PartFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/PartFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/PushNotificationConfigFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/PushNotificationConfigFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/PushNotificationConfigQueryOptionsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/PushNotificationConfigQueryOptionsFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/SecuritySchemeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/SecuritySchemeFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/SendMessageConfigurationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/SendMessageConfigurationFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/SendMessageRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/SendMessageRequestFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/SetOrUpdatePushNotificationConfigRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/SetOrUpdatePushNotificationConfigRequestFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/StreamResponseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/StreamResponseFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/SubscribeToTaskMethodParametersFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/SubscribeToTaskMethodParametersFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskArtifactUpdateEventFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskArtifactUpdateEventFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskPushNotificationConfigFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskPushNotificationConfigFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskPushNotificationConfigQueryResultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskPushNotificationConfigQueryResultFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskQueryOptionsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskQueryOptionsFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskQueryResultFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskQueryResultFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskStatusFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskStatusFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Services/TaskStatusUpdateEventFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Services/TaskStatusUpdateEventFactory.cs -------------------------------------------------------------------------------- /tests/A2A.UnitTests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tests/A2A.UnitTests/Usings.cs -------------------------------------------------------------------------------- /tools/A2A.ClientConsole/A2A.ClientConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tools/A2A.ClientConsole/A2A.ClientConsole.csproj -------------------------------------------------------------------------------- /tools/A2A.ClientConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tools/A2A.ClientConsole/Program.cs -------------------------------------------------------------------------------- /tools/A2A.ClientConsole/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuroglia-io/a2a-net/HEAD/tools/A2A.ClientConsole/Usings.cs --------------------------------------------------------------------------------