├── LICENSE ├── README.md ├── SECURITY.md ├── data ├── ext1 │ ├── pred │ │ ├── codeplan │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ └── spurious.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ │ └── src │ │ │ │ ├── Reactive.Streams.sln │ │ │ │ ├── SharedAssemblyInfo.cs │ │ │ │ ├── api │ │ │ │ └── Reactive.Streams │ │ │ │ │ ├── IProcessor.cs │ │ │ │ │ ├── IPublisher.cs │ │ │ │ │ ├── ISubscriber.cs │ │ │ │ │ ├── ISubscription.cs │ │ │ │ │ └── Reactive.Streams.csproj │ │ │ │ ├── examples │ │ │ │ ├── Reactive.Streams.Example.Unicast.Tests │ │ │ │ │ ├── AsyncSubscriberTest.cs │ │ │ │ │ ├── IterablePublisherTest.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Reactive.Streams.Example.Unicast.Tests.csproj │ │ │ │ │ ├── SyncSubscriberTest.cs │ │ │ │ │ ├── SyncSubscriberWhiteboxTest.cs │ │ │ │ │ └── UnboundedIntegerIncrementPublisherTest.cs │ │ │ │ └── Reactive.Streams.Example.Unicast │ │ │ │ │ ├── AsyncIterablePublisher.cs │ │ │ │ │ ├── AsyncSubscriber.cs │ │ │ │ │ ├── AtomicBoolean.cs │ │ │ │ │ ├── IllegalStateException.cs │ │ │ │ │ ├── InfiniteIncrementNumberPublisher.cs │ │ │ │ │ ├── NumberIterablePublisher.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Reactive.Streams.Example.Unicast.csproj │ │ │ │ │ └── SyncSubscriber.cs │ │ │ │ └── tck │ │ │ │ ├── Reactive.Streams.TCK.Tests │ │ │ │ ├── EmptyLazyPublisherTest.cs │ │ │ │ ├── IdentityProcessorVerificationDelegationTest.cs │ │ │ │ ├── IdentityProcessorVerificationTest.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── PublisherVerificationTest.cs │ │ │ │ ├── RangePublisherTest.cs │ │ │ │ ├── Reactive.Streams.TCK.Tests.csproj │ │ │ │ ├── SingleElementPublisherTest.cs │ │ │ │ ├── SubscriberBlackboxVerificationTest.cs │ │ │ │ ├── SubscriberWhiteboxVerificationTest.cs │ │ │ │ ├── Support │ │ │ │ │ ├── LamdaPublisher.cs │ │ │ │ │ ├── LamdaSubscriber.cs │ │ │ │ │ ├── LamdaSubscription.cs │ │ │ │ │ ├── SyncTriggeredDemandSubscriber.cs │ │ │ │ │ └── TCKVerificationSupport.cs │ │ │ │ ├── SyncTriggeredDemandSubscriberTest.cs │ │ │ │ └── SyncTriggeredDemandSubscriberWhiteboxTest.cs │ │ │ │ └── Reactive.Streams.TCK │ │ │ │ ├── IdentityProcessorVerification.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── PublisherVerification.cs │ │ │ │ ├── Reactive.Streams.TCK.csproj │ │ │ │ ├── SubscriberBlackboxVerification.cs │ │ │ │ ├── SubscriberWhiteboxVerification.cs │ │ │ │ ├── Support │ │ │ │ ├── AssertionException.cs │ │ │ │ ├── AtomicBoolean.cs │ │ │ │ ├── AtomicCounter.cs │ │ │ │ ├── AtomicCounterLong.cs │ │ │ │ ├── AtomicReference.cs │ │ │ │ ├── HelperPublisher.cs │ │ │ │ ├── IPublisherVerificationRules .cs │ │ │ │ ├── ISubscriberBlackboxVerificationRules.cs │ │ │ │ ├── ISubscriberWhiteboxVerificationRules.cs │ │ │ │ ├── IllegalStateException.cs │ │ │ │ ├── InfiniteHelperPublisher.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── SubscriberBufferOverflowException.cs │ │ │ │ ├── TckAssert.cs │ │ │ │ └── TestException.cs │ │ │ │ ├── TestEnvironment.cs │ │ │ │ └── WithHelperPublisher.cs │ │ └── repair │ │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ └── spurious.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ └── src │ │ │ ├── Reactive.Streams.sln │ │ │ ├── SharedAssemblyInfo.cs │ │ │ ├── api │ │ │ └── Reactive.Streams │ │ │ │ ├── IProcessor.cs │ │ │ │ ├── IPublisher.cs │ │ │ │ ├── ISubscriber.cs │ │ │ │ ├── ISubscription.cs │ │ │ │ └── Reactive.Streams.csproj │ │ │ ├── examples │ │ │ ├── Reactive.Streams.Example.Unicast.Tests │ │ │ │ ├── AsyncSubscriberTest.cs │ │ │ │ ├── IterablePublisherTest.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Reactive.Streams.Example.Unicast.Tests.csproj │ │ │ │ ├── SyncSubscriberTest.cs │ │ │ │ ├── SyncSubscriberWhiteboxTest.cs │ │ │ │ └── UnboundedIntegerIncrementPublisherTest.cs │ │ │ └── Reactive.Streams.Example.Unicast │ │ │ │ ├── AsyncIterablePublisher.cs │ │ │ │ ├── AsyncSubscriber.cs │ │ │ │ ├── AtomicBoolean.cs │ │ │ │ ├── IllegalStateException.cs │ │ │ │ ├── InfiniteIncrementNumberPublisher.cs │ │ │ │ ├── NumberIterablePublisher.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Reactive.Streams.Example.Unicast.csproj │ │ │ │ └── SyncSubscriber.cs │ │ │ └── tck │ │ │ ├── README.md │ │ │ ├── Reactive.Streams.TCK.Tests │ │ │ ├── EmptyLazyPublisherTest.cs │ │ │ ├── IdentityProcessorVerificationDelegationTest.cs │ │ │ ├── IdentityProcessorVerificationTest.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── PublisherVerificationTest.cs │ │ │ ├── RangePublisherTest.cs │ │ │ ├── Reactive.Streams.TCK.Tests.csproj │ │ │ ├── SingleElementPublisherTest.cs │ │ │ ├── SubscriberBlackboxVerificationTest.cs │ │ │ ├── SubscriberWhiteboxVerificationTest.cs │ │ │ ├── Support │ │ │ │ ├── LamdaPublisher.cs │ │ │ │ ├── LamdaSubscriber.cs │ │ │ │ ├── LamdaSubscription.cs │ │ │ │ ├── SyncTriggeredDemandSubscriber.cs │ │ │ │ └── TCKVerificationSupport.cs │ │ │ ├── SyncTriggeredDemandSubscriberTest.cs │ │ │ └── SyncTriggeredDemandSubscriberWhiteboxTest.cs │ │ │ └── Reactive.Streams.TCK │ │ │ ├── IdentityProcessorVerification.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── PublisherVerification.cs │ │ │ ├── Reactive.Streams.TCK.csproj │ │ │ ├── Reactive.Streams.TCK.nuspec │ │ │ ├── SubscriberBlackboxVerification.cs │ │ │ ├── SubscriberWhiteboxVerification.cs │ │ │ ├── Support │ │ │ ├── AssertionException.cs │ │ │ ├── AtomicBoolean.cs │ │ │ ├── AtomicCounter.cs │ │ │ ├── AtomicCounterLong.cs │ │ │ ├── AtomicReference.cs │ │ │ ├── HelperPublisher.cs │ │ │ ├── IPublisherVerificationRules .cs │ │ │ ├── ISubscriberBlackboxVerificationRules.cs │ │ │ ├── ISubscriberWhiteboxVerificationRules.cs │ │ │ ├── IllegalStateException.cs │ │ │ ├── InfiniteHelperPublisher.cs │ │ │ ├── Option.cs │ │ │ ├── SubscriberBufferOverflowException.cs │ │ │ ├── TckAssert.cs │ │ │ └── TestException.cs │ │ │ ├── TestEnvironment.cs │ │ │ └── WithHelperPublisher.cs │ ├── source │ │ └── src │ │ │ ├── SharedAssemblyInfo.cs │ │ │ ├── api │ │ │ └── Reactive.Streams │ │ │ │ ├── IProcessor.cs │ │ │ │ ├── IPublisher.cs │ │ │ │ ├── ISubscriber.cs │ │ │ │ └── ISubscription.cs │ │ │ ├── examples │ │ │ ├── Reactive.Streams.Example.Unicast.Tests │ │ │ │ ├── AsyncSubscriberTest.cs │ │ │ │ ├── IterablePublisherTest.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SyncSubscriberTest.cs │ │ │ │ ├── SyncSubscriberWhiteboxTest.cs │ │ │ │ └── UnboundedIntegerIncrementPublisherTest.cs │ │ │ └── Reactive.Streams.Example.Unicast │ │ │ │ ├── AsyncIterablePublisher.cs │ │ │ │ ├── AsyncSubscriber.cs │ │ │ │ ├── AtomicBoolean.cs │ │ │ │ ├── IllegalStateException.cs │ │ │ │ ├── InfiniteIncrementNumberPublisher.cs │ │ │ │ ├── NumberIterablePublisher.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── SyncSubscriber.cs │ │ │ └── tck │ │ │ ├── Reactive.Streams.TCK.Tests │ │ │ ├── EmptyLazyPublisherTest.cs │ │ │ ├── IdentityProcessorVerificationDelegationTest.cs │ │ │ ├── IdentityProcessorVerificationTest.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── PublisherVerificationTest.cs │ │ │ ├── RangePublisherTest.cs │ │ │ ├── SingleElementPublisherTest.cs │ │ │ ├── SubscriberBlackboxVerificationTest.cs │ │ │ ├── SubscriberWhiteboxVerificationTest.cs │ │ │ ├── Support │ │ │ │ ├── LamdaPublisher.cs │ │ │ │ ├── LamdaSubscriber.cs │ │ │ │ ├── LamdaSubscription.cs │ │ │ │ ├── SyncTriggeredDemandSubscriber.cs │ │ │ │ └── TCKVerificationSupport.cs │ │ │ ├── SyncTriggeredDemandSubscriberTest.cs │ │ │ └── SyncTriggeredDemandSubscriberWhiteboxTest.cs │ │ │ └── Reactive.Streams.TCK │ │ │ ├── IdentityProcessorVerification.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── PublisherVerification.cs │ │ │ ├── SubscriberBlackboxVerification.cs │ │ │ ├── SubscriberWhiteboxVerification.cs │ │ │ ├── Support │ │ │ ├── AtomicBoolean.cs │ │ │ ├── AtomicCounter.cs │ │ │ ├── AtomicCounterLong.cs │ │ │ ├── AtomicReference.cs │ │ │ ├── HelperPublisher.cs │ │ │ ├── IPublisherVerificationRules .cs │ │ │ ├── ISubscriberBlackboxVerificationRules.cs │ │ │ ├── ISubscriberWhiteboxVerificationRules.cs │ │ │ ├── IllegalStateException.cs │ │ │ ├── InfiniteHelperPublisher.cs │ │ │ ├── Option.cs │ │ │ ├── SubscriberBufferOverflowException.cs │ │ │ └── TestException.cs │ │ │ ├── TestEnvironment.cs │ │ │ └── WithHelperPublisher.cs │ └── target │ │ └── src │ │ ├── Reactive.Streams.sln │ │ ├── SharedAssemblyInfo.cs │ │ ├── api │ │ └── Reactive.Streams │ │ │ ├── IProcessor.cs │ │ │ ├── IPublisher.cs │ │ │ ├── ISubscriber.cs │ │ │ ├── ISubscription.cs │ │ │ └── Reactive.Streams.csproj │ │ ├── examples │ │ ├── Reactive.Streams.Example.Unicast.Tests │ │ │ ├── AsyncSubscriberTest.cs │ │ │ ├── IterablePublisherTest.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Reactive.Streams.Example.Unicast.Tests.csproj │ │ │ ├── SyncSubscriberTest.cs │ │ │ ├── SyncSubscriberWhiteboxTest.cs │ │ │ └── UnboundedIntegerIncrementPublisherTest.cs │ │ └── Reactive.Streams.Example.Unicast │ │ │ ├── AsyncIterablePublisher.cs │ │ │ ├── AsyncSubscriber.cs │ │ │ ├── AtomicBoolean.cs │ │ │ ├── IllegalStateException.cs │ │ │ ├── InfiniteIncrementNumberPublisher.cs │ │ │ ├── NumberIterablePublisher.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Reactive.Streams.Example.Unicast.csproj │ │ │ └── SyncSubscriber.cs │ │ └── tck │ │ ├── README.md │ │ ├── Reactive.Streams.TCK.Tests │ │ ├── EmptyLazyPublisherTest.cs │ │ ├── IdentityProcessorVerificationDelegationTest.cs │ │ ├── IdentityProcessorVerificationTest.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PublisherVerificationTest.cs │ │ ├── RangePublisherTest.cs │ │ ├── Reactive.Streams.TCK.Tests.csproj │ │ ├── SingleElementPublisherTest.cs │ │ ├── SubscriberBlackboxVerificationTest.cs │ │ ├── SubscriberWhiteboxVerificationTest.cs │ │ ├── Support │ │ │ ├── LamdaPublisher.cs │ │ │ ├── LamdaSubscriber.cs │ │ │ ├── LamdaSubscription.cs │ │ │ ├── SyncTriggeredDemandSubscriber.cs │ │ │ └── TCKVerificationSupport.cs │ │ ├── SyncTriggeredDemandSubscriberTest.cs │ │ └── SyncTriggeredDemandSubscriberWhiteboxTest.cs │ │ └── Reactive.Streams.TCK │ │ ├── IdentityProcessorVerification.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── PublisherVerification.cs │ │ ├── Reactive.Streams.TCK.csproj │ │ ├── Reactive.Streams.TCK.nuspec │ │ ├── SubscriberBlackboxVerification.cs │ │ ├── SubscriberWhiteboxVerification.cs │ │ ├── Support │ │ ├── AssertionException.cs │ │ ├── AtomicBoolean.cs │ │ ├── AtomicCounter.cs │ │ ├── AtomicCounterLong.cs │ │ ├── AtomicReference.cs │ │ ├── HelperPublisher.cs │ │ ├── IPublisherVerificationRules .cs │ │ ├── ISubscriberBlackboxVerificationRules.cs │ │ ├── ISubscriberWhiteboxVerificationRules.cs │ │ ├── IllegalStateException.cs │ │ ├── InfiniteHelperPublisher.cs │ │ ├── Option.cs │ │ ├── SubscriberBufferOverflowException.cs │ │ ├── TckAssert.cs │ │ └── TestException.cs │ │ ├── TestEnvironment.cs │ │ └── WithHelperPublisher.cs ├── ext2 │ ├── pred │ │ ├── codeplan │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ │ ├── .github │ │ │ │ └── CODEOWNERS │ │ │ │ ├── .gitignore │ │ │ │ ├── GitVersion.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── azure-pipelines.yml │ │ │ │ ├── azure │ │ │ │ └── template.json │ │ │ │ ├── pipeline-templates │ │ │ │ └── job │ │ │ │ │ └── code-build.yml │ │ │ │ └── src │ │ │ │ ├── QnA.postman_collection.json │ │ │ │ ├── SFA.DAS.QnA.Api.Client │ │ │ │ ├── QnaApiClient.cs │ │ │ │ ├── QnaApiClientExtensions.cs │ │ │ │ ├── QnaApiConfig.cs │ │ │ │ └── SFA.DAS.QnA.Api.Client.csproj │ │ │ │ ├── SFA.DAS.QnA.Api.Types │ │ │ │ ├── AddPageAnswerResponse.cs │ │ │ │ ├── CreateSnapshotResponse.cs │ │ │ │ ├── HandlerResponse.cs │ │ │ │ ├── Page │ │ │ │ │ ├── Answer.cs │ │ │ │ │ ├── Condition.cs │ │ │ │ │ ├── Feedback.cs │ │ │ │ │ ├── FinancialApplicationGrade.cs │ │ │ │ │ ├── Input.cs │ │ │ │ │ ├── Next.cs │ │ │ │ │ ├── NotRequiredCondition.cs │ │ │ │ │ ├── Option.cs │ │ │ │ │ ├── Page.cs │ │ │ │ │ ├── PageDetails.cs │ │ │ │ │ ├── PageOfAnswers.cs │ │ │ │ │ ├── QnAData.cs │ │ │ │ │ ├── Question.cs │ │ │ │ │ ├── TabularData.cs │ │ │ │ │ ├── TabularDataRow.cs │ │ │ │ │ └── ValidationDefinition.cs │ │ │ │ ├── Project.cs │ │ │ │ ├── RemovePageAnswerResponse.cs │ │ │ │ ├── ResetPageAnswersResponse.cs │ │ │ │ ├── ResetSectionAnswersResponse.cs │ │ │ │ ├── SFA.DAS.QnA.Api.Types.csproj │ │ │ │ ├── Section.cs │ │ │ │ ├── Sequence.cs │ │ │ │ ├── SetPageAnswersResponse.cs │ │ │ │ ├── SkipPageResponse.cs │ │ │ │ ├── StartApplicationRequest.cs │ │ │ │ ├── StartApplicationResponse.cs │ │ │ │ ├── Workflow.cs │ │ │ │ ├── WorkflowSection.cs │ │ │ │ └── WorkflowSequence.cs │ │ │ │ ├── SFA.DAS.QnA.Api.UnitTests │ │ │ │ ├── ApplicationControllerTests │ │ │ │ │ └── StartApplication │ │ │ │ │ │ └── When_StartApplication_is_called.cs │ │ │ │ ├── ApplicationDataControllerTests │ │ │ │ │ ├── WhenGettingApplicationData.cs │ │ │ │ │ └── WhenPostingApplicationData.cs │ │ │ │ ├── DeserializerTests │ │ │ │ │ ├── WhenDeserializingApplicationData.cs │ │ │ │ │ └── test.json │ │ │ │ ├── FileControllerTests │ │ │ │ │ ├── When_download_file_or_zip_of_files_is_called.cs │ │ │ │ │ └── When_upload_is_called.cs │ │ │ │ ├── PagesControllerTests │ │ │ │ │ └── PagesControllerTests.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── SFA.DAS.QnA.Api.UnitTests.csproj │ │ │ │ ├── SectionsControllerTests │ │ │ │ │ └── GetSection │ │ │ │ │ │ ├── When_GetSection_is_called.cs │ │ │ │ │ │ └── When_GetSection_is_called_with_a_sectionNo.cs │ │ │ │ ├── SequencesControllerTests │ │ │ │ │ ├── GetSequence │ │ │ │ │ │ ├── When_GetSequence_is_called.cs │ │ │ │ │ │ └── When_GetSequence_is_called_with_a_sectionNo.cs │ │ │ │ │ └── GetSequences │ │ │ │ │ │ ├── When_GetSequences_called_for_application_with_no_sequences.cs │ │ │ │ │ │ ├── When_GetSequences_called_for_non-existant_application.cs │ │ │ │ │ │ └── When_GetSequences_is_called.cs │ │ │ │ └── WorkflowControllerTests │ │ │ │ │ └── When_GetWorkflows_is_called.cs │ │ │ │ ├── SFA.DAS.QnA.Api.Views │ │ │ │ ├── SFA.DAS.QnA.Api.Views.csproj │ │ │ │ ├── ViewHelpers.cs │ │ │ │ └── Views │ │ │ │ │ └── QuestionPartials │ │ │ │ │ ├── _Address.cshtml │ │ │ │ │ ├── _Checkbox.cshtml │ │ │ │ │ ├── _CheckboxList.cshtml │ │ │ │ │ ├── _ComplexCheckboxList.cshtml │ │ │ │ │ ├── _ComplexRadio.cshtml │ │ │ │ │ ├── _Date.cshtml │ │ │ │ │ ├── _Email.cshtml │ │ │ │ │ ├── _FileUpload.cshtml │ │ │ │ │ ├── _Hidden.cshtml │ │ │ │ │ ├── _LongTextarea.cshtml │ │ │ │ │ ├── _MonthAndYear.cshtml │ │ │ │ │ ├── _Number.cshtml │ │ │ │ │ ├── _Postcode.cshtml │ │ │ │ │ ├── _Radio.cshtml │ │ │ │ │ ├── _TabularData.cshtml │ │ │ │ │ ├── _Text.cshtml │ │ │ │ │ └── _Textarea.cshtml │ │ │ │ ├── SFA.DAS.QnA.Api │ │ │ │ ├── Authentication │ │ │ │ │ ├── AuthenticationExtensions.cs │ │ │ │ │ └── AzureAdScopeClaimTransformation.cs │ │ │ │ ├── Authorization │ │ │ │ │ ├── AuthorizationExtensions.cs │ │ │ │ │ ├── AuthorizationPolicyBuilderExtensions.cs │ │ │ │ │ ├── LocalAuthorizationHandler.cs │ │ │ │ │ └── NoneRequirement.cs │ │ │ │ ├── Controllers │ │ │ │ │ ├── ApplicationController.cs │ │ │ │ │ ├── ApplicationDataController.cs │ │ │ │ │ ├── ApplicationSnapshotController.cs │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── ProjectsController.cs │ │ │ │ │ │ ├── WorkflowSectionsController.cs │ │ │ │ │ │ ├── WorkflowSequencesController.cs │ │ │ │ │ │ └── WorkflowsController.cs │ │ │ │ │ ├── Deserializer │ │ │ │ │ │ └── HandlerResponseDeserializer.cs │ │ │ │ │ ├── ErrorsController.cs │ │ │ │ │ ├── FeedbackController.cs │ │ │ │ │ ├── FileController.cs │ │ │ │ │ ├── PagesController.cs │ │ │ │ │ ├── SectionsController.cs │ │ │ │ │ ├── SequencesController.cs │ │ │ │ │ ├── StorageMigrationController.cs │ │ │ │ │ └── WorkflowsController.cs │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── ApiError.cs │ │ │ │ │ ├── ApiExplorerGroupConvention.cs │ │ │ │ │ ├── BadRequestError.cs │ │ │ │ │ ├── NotFoundError.cs │ │ │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ │ │ ├── SqlTokenGenerator.cs │ │ │ │ │ └── UnprocessableEntityError.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── SFA.DAS.QnA.Api.csproj │ │ │ │ ├── Startup.cs │ │ │ │ ├── appsettings.json │ │ │ │ ├── nlog.config │ │ │ │ └── web.config │ │ │ │ ├── SFA.DAS.QnA.Application.UnitTests │ │ │ │ ├── CommandsTests │ │ │ │ │ ├── ApplicationDataValidatorTests │ │ │ │ │ │ ├── When_valid_applicationData_has_extra_properties.cs │ │ │ │ │ │ ├── When_valid_applicationData_is_missing_a_property.cs │ │ │ │ │ │ └── When_valid_applicationData_supplied.cs │ │ │ │ │ ├── CreateSnapshotTests │ │ │ │ │ │ ├── CreateSnapshotTestBase.cs │ │ │ │ │ │ ├── When_application_exists.cs │ │ │ │ │ │ └── When_application_not_found.cs │ │ │ │ │ ├── FindNextRequiredActionTests │ │ │ │ │ │ ├── FindNextRequiredActionTestsBase.cs │ │ │ │ │ │ ├── When_next_page_has_a_NotRequiredCondition.cs │ │ │ │ │ │ └── When_next_page_has_no_NotRequiredConditions.cs │ │ │ │ │ ├── ResetPageAnswersBySectionNoHandlerTests │ │ │ │ │ │ ├── ResetPageAnswersBySectionNoTestBase.cs │ │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── ResetPageAnswersHandlerTests │ │ │ │ │ │ ├── ResetPageAnswersTestBase.cs │ │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── ResetSectionAnswersHandlerTests │ │ │ │ │ │ ├── ResetSectionAnswersTestBase.cs │ │ │ │ │ │ ├── When_section_found.cs │ │ │ │ │ │ └── When_section_not_found.cs │ │ │ │ │ ├── SetPageAnswersTests │ │ │ │ │ │ ├── SetPageAnswersTestBase.cs │ │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ │ ├── When_answer_doesnt_relate_to_a_question.cs │ │ │ │ │ │ ├── When_incorrect_amount_of_answers_specified.cs │ │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ │ ├── When_page_contains_fileupload_question.cs │ │ │ │ │ │ ├── When_page_contains_only_fileupload_questions.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── StartApplicationTests │ │ │ │ │ │ ├── StartApplicationTestBase.cs │ │ │ │ │ │ ├── When_StartApplication_handled.cs │ │ │ │ │ │ └── When_StartApplication_handled_with_nonexistant_workflowtype.cs │ │ │ │ │ ├── SubmitPageOfFilesHandlerTests │ │ │ │ │ │ ├── SubmitPageOfFilesTestBase.cs │ │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ │ ├── When_file_doesnt_relate_to_a_question.cs │ │ │ │ │ │ ├── When_files_specified_is_empty.cs │ │ │ │ │ │ ├── When_files_specified_is_null.cs │ │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ │ ├── When_page_contains_mixture_of_question_types.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── UpsertFeedbackTests │ │ │ │ │ │ ├── When_Feedback_exists.cs │ │ │ │ │ │ └── When_Feedback_is_new.cs │ │ │ │ │ └── Workflows │ │ │ │ │ │ ├── CreateWorkflowTests │ │ │ │ │ │ └── When_workflow_is_created.cs │ │ │ │ │ │ └── UpsertWorkflowTests │ │ │ │ │ │ └── When_upsert_called_with_new_workflow.cs │ │ │ │ ├── DataContextHelpers.cs │ │ │ │ ├── Handlers │ │ │ │ │ └── ResetPagesToIncompleteHandlerTests.cs │ │ │ │ ├── QueriesTests │ │ │ │ │ ├── CanUpdatePageBySectionNoTests │ │ │ │ │ │ ├── CanUpdatePageBySectionNoTestBase.cs │ │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled.cs │ │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_CanUpdatePageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ │ ├── CanUpdatePageTests │ │ │ │ │ │ ├── CanUpdatePageTestBase.cs │ │ │ │ │ │ ├── When_CanUpdatePage_handled.cs │ │ │ │ │ │ ├── When_CanUpdatePage_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_CanUpdatePage_handled_for_non_existent_section.cs │ │ │ │ │ ├── GetCurrentSequenceTests │ │ │ │ │ │ ├── GetCurrentSequenceTestBase.cs │ │ │ │ │ │ ├── When_GetCurrentSequence_handled.cs │ │ │ │ │ │ └── When_GetCurrentSequence_handled_for_non_existent_applicationId.cs │ │ │ │ │ ├── GetPageBySectionNoTests │ │ │ │ │ │ ├── GetPageBySectionNoTestBase.cs │ │ │ │ │ │ ├── When_GetPageBySectionNo_handled.cs │ │ │ │ │ │ ├── When_GetPageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_GetPageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ │ ├── GetPageTests │ │ │ │ │ │ ├── GetPageTestBase.cs │ │ │ │ │ │ ├── When_GetPage_handled.cs │ │ │ │ │ │ ├── When_GetPage_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_GetPage_handled_for_non_existent_section.cs │ │ │ │ │ ├── GetSectionTests │ │ │ │ │ │ └── When_section_has_pages_to_be_hidden.cs │ │ │ │ │ ├── GetSectionsTests │ │ │ │ │ │ ├── GetSectionsTestBase.cs │ │ │ │ │ │ ├── When_GetSections_handled.cs │ │ │ │ │ │ └── When_GetSections_handled_for_non_existant_application.cs │ │ │ │ │ ├── GetSequencesTests │ │ │ │ │ │ ├── GetSequencesTestBase.cs │ │ │ │ │ │ ├── When_GetSequences_handled.cs │ │ │ │ │ │ └── When_GetSequences_handled_for_non_existant_application.cs │ │ │ │ │ └── GetWorkflowsHandlerTests │ │ │ │ │ │ └── When_GetWorkflows_handled.cs │ │ │ │ ├── SFA.DAS.QnA.Application.UnitTests.csproj │ │ │ │ ├── ServiceTests │ │ │ │ │ ├── NotRequiredProcessorNotRequiredTests.cs │ │ │ │ │ ├── NotRequiredProcessorPagesWithDoesNotContainTests.cs │ │ │ │ │ ├── NotRequiredProcessorPagesWithoutNotRequiredContainsAllOfTests.cs │ │ │ │ │ └── NotRequiredProcessorPagesWithoutNotRequiredIsOneOfTests.cs │ │ │ │ └── Validators │ │ │ │ │ ├── AddressValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── ComplexRadioTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateInFutureValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateNotInFutureValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── EmailTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── EmailValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── FileContentValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── FileTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MaxLengthValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MaxWordCountValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MinLengthValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MinWordCountValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MonthAndYearNotInFutureValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MonthAndYearTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MonthAndYearValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── NumberTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── NumberValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── RegexValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── RequiredValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ └── UrlValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── SFA.DAS.QnA.Application │ │ │ │ ├── Commands │ │ │ │ │ ├── AddPageAnswer │ │ │ │ │ │ ├── AddPageAnswerHandler.cs │ │ │ │ │ │ ├── AddPageAnswerRequest.cs │ │ │ │ │ │ └── PageHandlerBase.cs │ │ │ │ │ ├── AnswerValidator.cs │ │ │ │ │ ├── CreateSnapshot │ │ │ │ │ │ ├── CreateSnapshotHandler.cs │ │ │ │ │ │ └── CreateSnapshotRequest.cs │ │ │ │ │ ├── FileContentValidator.cs │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── ConfigKeyProvider.cs │ │ │ │ │ │ ├── ContainerHelpers.cs │ │ │ │ │ │ ├── DeleteFile │ │ │ │ │ │ │ └── DeleteFileRequest.cs │ │ │ │ │ │ ├── DownloadFile │ │ │ │ │ │ │ ├── DownloadFile.cs │ │ │ │ │ │ │ ├── DownloadFileBySectionNoHandler.cs │ │ │ │ │ │ │ ├── DownloadFileBySectionNoRequest.cs │ │ │ │ │ │ │ ├── DownloadFileHandler.cs │ │ │ │ │ │ │ ├── DownloadFileRequest.cs │ │ │ │ │ │ │ └── DownloadFileService.cs │ │ │ │ │ │ ├── EncryptionService.cs │ │ │ │ │ │ ├── IEncryptionService.cs │ │ │ │ │ │ ├── IKeyProvider.cs │ │ │ │ │ │ └── UploadFile │ │ │ │ │ │ │ ├── SubmitPageOfFilesHandler.cs │ │ │ │ │ │ │ └── SubmitPageOfFilesRequest.cs │ │ │ │ │ ├── IAnswerValidator.cs │ │ │ │ │ ├── IFileContentValidator.cs │ │ │ │ │ ├── PageFeedback │ │ │ │ │ │ ├── CompleteFeedbackWithinSequence │ │ │ │ │ │ │ ├── CompleteFeedbackWithinSequenceHandler.cs │ │ │ │ │ │ │ └── CompleteFeedbackWithinSequenceRequest.cs │ │ │ │ │ │ ├── DeleteFeedback │ │ │ │ │ │ │ ├── DeleteFeedbackHandler.cs │ │ │ │ │ │ │ └── DeleteFeedbackRequest.cs │ │ │ │ │ │ └── UpsertFeedback │ │ │ │ │ │ │ ├── UpsertFeedbackHandler.cs │ │ │ │ │ │ │ └── UpsertFeedbackRequest.cs │ │ │ │ │ ├── Projects │ │ │ │ │ │ ├── CreateProject │ │ │ │ │ │ │ ├── CreateProjectHandler.cs │ │ │ │ │ │ │ └── CreateProjectRequest.cs │ │ │ │ │ │ └── UpsertProject │ │ │ │ │ │ │ ├── UpsertProjectHandler.cs │ │ │ │ │ │ │ └── UpsertProjectRequest.cs │ │ │ │ │ ├── RemovePageAnswer │ │ │ │ │ │ ├── RemovePageAnswerHandler.cs │ │ │ │ │ │ └── RemovePageAnswerRequest.cs │ │ │ │ │ ├── ResetPageAnswers │ │ │ │ │ │ ├── ResetPageAnswersBySectionNoHandler.cs │ │ │ │ │ │ ├── ResetPageAnswersBySectionNoRequest.cs │ │ │ │ │ │ ├── ResetPageAnswersHandler.cs │ │ │ │ │ │ └── ResetPageAnswersRequest.cs │ │ │ │ │ ├── ResetPagesToIncomplete │ │ │ │ │ │ ├── ResetPagesToIncompleteHandler.cs │ │ │ │ │ │ └── ResetPagesToIncompleteRequest.cs │ │ │ │ │ ├── ResetSectionAnswers │ │ │ │ │ │ ├── ResetSectionAnswersHandler.cs │ │ │ │ │ │ └── ResetSectionAnswersRequest.cs │ │ │ │ │ ├── SetApplicationData │ │ │ │ │ │ ├── SetApplicationDataHandler.cs │ │ │ │ │ │ └── SetApplicationDataRequest.cs │ │ │ │ │ ├── SetPageAnswers │ │ │ │ │ │ ├── SetAnswersBase.cs │ │ │ │ │ │ ├── SetPageAnswersBySectionNoRequest.cs │ │ │ │ │ │ ├── SetPageAnswersHandler.cs │ │ │ │ │ │ ├── SetPageAnswersHandlerBySectionNo.cs │ │ │ │ │ │ └── SetPageAnswersRequest.cs │ │ │ │ │ ├── SkipPage │ │ │ │ │ │ ├── SkipPageBySectionNoHandler.cs │ │ │ │ │ │ ├── SkipPageBySectionNoRequest.cs │ │ │ │ │ │ ├── SkipPageHandler.cs │ │ │ │ │ │ └── SkipPageRequest.cs │ │ │ │ │ ├── StartApplication │ │ │ │ │ │ ├── IApplicationDataValidator.cs │ │ │ │ │ │ └── StartApplicationHandler.cs │ │ │ │ │ ├── WorkflowSections │ │ │ │ │ │ ├── CreateWorkflowSection │ │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── CreateWorkflowSectionRequest.cs │ │ │ │ │ │ └── UpsertWorkflowSection │ │ │ │ │ │ │ ├── UpsertWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── UpsertWorkflowSectionRequest.cs │ │ │ │ │ ├── WorkflowSequences │ │ │ │ │ │ ├── CreateWorkflowSequence │ │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── CreateWorkflowSequenceRequest.cs │ │ │ │ │ │ └── UpsertWorkflowSequence │ │ │ │ │ │ │ ├── UpsertWorkflowSequenceHandler.cs │ │ │ │ │ │ │ └── UpsertWorkflowSequenceRequest.cs │ │ │ │ │ └── Workflows │ │ │ │ │ │ ├── CreateWorkflow │ │ │ │ │ │ ├── CreateWorkflowHandler.cs │ │ │ │ │ │ └── CreateWorkflowRequest.cs │ │ │ │ │ │ └── UpsertWorkflow │ │ │ │ │ │ ├── UpsertWorkflowHandler.cs │ │ │ │ │ │ └── UpsertWorkflowRequest.cs │ │ │ │ ├── Mappings │ │ │ │ │ └── ApplicationsProfile.cs │ │ │ │ ├── Queries │ │ │ │ │ ├── ApplicationData │ │ │ │ │ │ └── GetApplicationData │ │ │ │ │ │ │ ├── GetApplicationDataHandler.cs │ │ │ │ │ │ │ ├── GetApplicationDataRequest.cs │ │ │ │ │ │ │ ├── GetQuestionTagDataHandler.cs │ │ │ │ │ │ │ └── GetQuestionTagDataRequest.cs │ │ │ │ │ ├── GetWorkflows │ │ │ │ │ │ ├── GetWorkflowsHandler.cs │ │ │ │ │ │ └── GetWorkflowsRequest.cs │ │ │ │ │ ├── Projects │ │ │ │ │ │ ├── GetProject │ │ │ │ │ │ │ ├── GetProjectHandler.cs │ │ │ │ │ │ │ └── GetProjectRequest.cs │ │ │ │ │ │ └── GetProjects │ │ │ │ │ │ │ ├── GetProjectsHandler.cs │ │ │ │ │ │ │ └── GetProjectsRequest.cs │ │ │ │ │ ├── Sections │ │ │ │ │ │ ├── CanUpdatePage │ │ │ │ │ │ │ ├── CanUpdatePageBySectionNoHandler.cs │ │ │ │ │ │ │ ├── CanUpdatePageBySectionNoRequest.cs │ │ │ │ │ │ │ ├── CanUpdatePageHandler.cs │ │ │ │ │ │ │ └── CanUpdatePageRequest.cs │ │ │ │ │ │ ├── GetPage │ │ │ │ │ │ │ ├── GetPageBySectionNoHandler.cs │ │ │ │ │ │ │ ├── GetPageBySectionNoRequest.cs │ │ │ │ │ │ │ ├── GetPageHandler.cs │ │ │ │ │ │ │ └── GetPageRequest.cs │ │ │ │ │ │ ├── GetSection │ │ │ │ │ │ │ ├── GetSectionBySectionNoHandler.cs │ │ │ │ │ │ │ ├── GetSectionBySectionNoRequest.cs │ │ │ │ │ │ │ ├── GetSectionHandler.cs │ │ │ │ │ │ │ └── GetSectionRequest.cs │ │ │ │ │ │ ├── GetSections │ │ │ │ │ │ │ ├── GetSectionsHandler.cs │ │ │ │ │ │ │ └── GetSectionsRequest.cs │ │ │ │ │ │ └── GetSequenceSections │ │ │ │ │ │ │ ├── GetSequenceSectionsHandler.cs │ │ │ │ │ │ │ └── GetSequenceSectionsRequest.cs │ │ │ │ │ ├── Sequences │ │ │ │ │ │ ├── GetCurrentSequence │ │ │ │ │ │ │ ├── GetCurrentSequenceHandler.cs │ │ │ │ │ │ │ └── GetCurrentSequenceRequest.cs │ │ │ │ │ │ ├── GetSequence │ │ │ │ │ │ │ ├── GetSequenceBySequenceNoHandler.cs │ │ │ │ │ │ │ ├── GetSequenceBySequenceNoRequest.cs │ │ │ │ │ │ │ ├── GetSequenceHandler.cs │ │ │ │ │ │ │ └── GetSequenceRequest.cs │ │ │ │ │ │ └── GetSequences │ │ │ │ │ │ │ ├── GetSequencesHandler.cs │ │ │ │ │ │ │ └── GetSequencesRequest.cs │ │ │ │ │ ├── WorkflowSections │ │ │ │ │ │ ├── GetWorkflowSection │ │ │ │ │ │ │ ├── GetWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSectionRequest.cs │ │ │ │ │ │ └── GetWorkflowSections │ │ │ │ │ │ │ ├── GetWorkflowSectionsHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSectionsRequest.cs │ │ │ │ │ ├── WorkflowSequences │ │ │ │ │ │ ├── GetWorkflowSequence │ │ │ │ │ │ │ ├── GetWorkflowSequenceHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSequenceRequest.cs │ │ │ │ │ │ └── GetWorkflowSequences │ │ │ │ │ │ │ ├── GetWorkflowSequencesHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSequencesRequest.cs │ │ │ │ │ └── Workflows │ │ │ │ │ │ └── GetWorkflow │ │ │ │ │ │ └── GetWorkflowRequest.cs │ │ │ │ ├── SFA.DAS.QnA.Application.csproj │ │ │ │ ├── Services │ │ │ │ │ ├── INotRequiredProcessor.cs │ │ │ │ │ ├── ITagProcessingService.cs │ │ │ │ │ ├── NotRequiredProcessor.cs │ │ │ │ │ └── TagProcessingService.cs │ │ │ │ ├── SystemTime.cs │ │ │ │ └── Validators │ │ │ │ │ ├── AddressBuildingAndStreetRequiredValidator.cs │ │ │ │ │ ├── AddressPostcodeRequiredValidator.cs │ │ │ │ │ ├── AddressRequiredValidatorBase.cs │ │ │ │ │ ├── AddressTownOrCityRequiredValidator.cs │ │ │ │ │ ├── ComplexCheckboxListTypeValidator.cs │ │ │ │ │ ├── ComplexRadioTypeValidator.cs │ │ │ │ │ ├── DateInFutureValidator.cs │ │ │ │ │ ├── DateNotInFutureValidator.cs │ │ │ │ │ ├── DateTypeValidator.cs │ │ │ │ │ ├── DateValidator.cs │ │ │ │ │ ├── EmailTypeValidator.cs │ │ │ │ │ ├── EmailValidator.cs │ │ │ │ │ ├── FileTypeValidator.cs │ │ │ │ │ ├── IValidator.cs │ │ │ │ │ ├── IValidatorFactory.cs │ │ │ │ │ ├── MaxLengthValidator.cs │ │ │ │ │ ├── MaxWordCountValidator.cs │ │ │ │ │ ├── MinLengthValidator.cs │ │ │ │ │ ├── MinWordCountValidator.cs │ │ │ │ │ ├── MonthAndYearNotInFutureValidator.cs │ │ │ │ │ ├── MonthAndYearTypeValidator.cs │ │ │ │ │ ├── MonthAndYearValidator.cs │ │ │ │ │ ├── NullValidator.cs │ │ │ │ │ ├── NumberTypeValidator.cs │ │ │ │ │ ├── NumberValidator.cs │ │ │ │ │ ├── RegexValidator.cs │ │ │ │ │ ├── RegisteredCharityNumberValidator.cs │ │ │ │ │ ├── RequiredValidator.cs │ │ │ │ │ ├── SimpleRadioNotNullValidator.cs │ │ │ │ │ ├── UrlValidator.cs │ │ │ │ │ ├── ValidationErrorDetail.cs │ │ │ │ │ └── ValidatorFactory.cs │ │ │ │ ├── SFA.DAS.QnA.Configuration │ │ │ │ ├── Config │ │ │ │ │ ├── AzureActiveDirectoryConfiguration.cs │ │ │ │ │ ├── FileStorageConfig.cs │ │ │ │ │ └── QnAConfig.cs │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── AzureTableStorageConfigurationExtensions.cs │ │ │ │ │ ├── AzureTableStorageConfigurationProvider.cs │ │ │ │ │ ├── AzureTableStorageConfigurationSource.cs │ │ │ │ │ └── ConfigurationItem.cs │ │ │ │ └── SFA.DAS.QnA.Configuration.csproj │ │ │ │ ├── SFA.DAS.QnA.Data │ │ │ │ ├── Entities │ │ │ │ │ ├── Application.cs │ │ │ │ │ ├── ApplicationSection.cs │ │ │ │ │ ├── ApplicationSequence.cs │ │ │ │ │ ├── ApplicationStatus.cs │ │ │ │ │ ├── EntityBase.cs │ │ │ │ │ └── WorkflowStatus.cs │ │ │ │ ├── QnaDataContext.cs │ │ │ │ └── SFA.DAS.QnA.Data.csproj │ │ │ │ ├── SFA.DAS.QnA.Database │ │ │ │ ├── ApplicationDataSchema │ │ │ │ │ └── Assessor.json │ │ │ │ ├── SFA.DAS.QnA.Database.sqlproj │ │ │ │ ├── Script.PostDeployment.sql │ │ │ │ ├── Tables │ │ │ │ │ ├── ApplicationSections.sql │ │ │ │ │ ├── ApplicationSequences.sql │ │ │ │ │ ├── Applications.sql │ │ │ │ │ ├── Projects.sql │ │ │ │ │ ├── WorkflowSections.sql │ │ │ │ │ ├── WorkflowSequences.sql │ │ │ │ │ └── Workflows.sql │ │ │ │ └── projects │ │ │ │ │ ├── Inject-projects.sql │ │ │ │ │ ├── epaoall │ │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ │ ├── project.json │ │ │ │ │ └── sections │ │ │ │ │ │ ├── section1.json │ │ │ │ │ │ ├── section2.json │ │ │ │ │ │ ├── section3.json │ │ │ │ │ │ ├── section4.json │ │ │ │ │ │ ├── section5.json │ │ │ │ │ │ └── section6.json │ │ │ │ │ └── roatp │ │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ │ ├── project.json │ │ │ │ │ └── sections │ │ │ │ │ ├── section0.1.json │ │ │ │ │ ├── section1.1.json │ │ │ │ │ ├── section1.2.json │ │ │ │ │ ├── section1.3.json │ │ │ │ │ ├── section1.4.json │ │ │ │ │ ├── section1.5.json │ │ │ │ │ ├── section2.1.json │ │ │ │ │ ├── section2.2.json │ │ │ │ │ ├── section2.3.json │ │ │ │ │ ├── section3.1.json │ │ │ │ │ ├── section3.2.json │ │ │ │ │ ├── section3.3.json │ │ │ │ │ ├── section3.4.json │ │ │ │ │ ├── section4.1.json │ │ │ │ │ ├── section4.2.json │ │ │ │ │ ├── section4.3.json │ │ │ │ │ ├── section4.4.json │ │ │ │ │ ├── section4.5.json │ │ │ │ │ ├── section4.6.json │ │ │ │ │ ├── section5.1.json │ │ │ │ │ ├── section5.2.json │ │ │ │ │ ├── section5.3.json │ │ │ │ │ ├── section5.4.json │ │ │ │ │ ├── section5.5.json │ │ │ │ │ ├── section5.6.json │ │ │ │ │ ├── section5.7.json │ │ │ │ │ ├── section5.8.json │ │ │ │ │ ├── section6.1.json │ │ │ │ │ ├── section6.2.json │ │ │ │ │ ├── section6.3.json │ │ │ │ │ ├── section6.4.json │ │ │ │ │ ├── section6.5.json │ │ │ │ │ ├── section6.6.json │ │ │ │ │ ├── section6.7.json │ │ │ │ │ ├── section7.1.json │ │ │ │ │ ├── section7.2.json │ │ │ │ │ ├── section7.3.json │ │ │ │ │ ├── section7.4.json │ │ │ │ │ ├── section7.5.json │ │ │ │ │ ├── section7.6.json │ │ │ │ │ ├── section7.7.json │ │ │ │ │ ├── section8.1.json │ │ │ │ │ ├── section8.2.json │ │ │ │ │ ├── section8.3.json │ │ │ │ │ ├── section8.4.json │ │ │ │ │ ├── section9.1.json │ │ │ │ │ ├── section9.2.json │ │ │ │ │ └── section9.3.json │ │ │ │ └── SFA.DAS.QnA.sln │ │ ├── codeplan_iter_2 │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ │ ├── .github │ │ │ │ └── CODEOWNERS │ │ │ │ ├── .gitignore │ │ │ │ ├── GitVersion.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── azure-pipelines.yml │ │ │ │ ├── azure │ │ │ │ └── template.json │ │ │ │ ├── pipeline-templates │ │ │ │ └── job │ │ │ │ │ └── code-build.yml │ │ │ │ └── src │ │ │ │ ├── QnA.postman_collection.json │ │ │ │ ├── SFA.DAS.QnA.Api.Client │ │ │ │ ├── QnaApiClient.cs │ │ │ │ ├── QnaApiClientExtensions.cs │ │ │ │ ├── QnaApiConfig.cs │ │ │ │ └── SFA.DAS.QnA.Api.Client.csproj │ │ │ │ ├── SFA.DAS.QnA.Api.Types │ │ │ │ ├── AddPageAnswerResponse.cs │ │ │ │ ├── CreateSnapshotResponse.cs │ │ │ │ ├── HandlerResponse.cs │ │ │ │ ├── Page │ │ │ │ │ ├── Answer.cs │ │ │ │ │ ├── Condition.cs │ │ │ │ │ ├── Feedback.cs │ │ │ │ │ ├── FinancialApplicationGrade.cs │ │ │ │ │ ├── Input.cs │ │ │ │ │ ├── Next.cs │ │ │ │ │ ├── NotRequiredCondition.cs │ │ │ │ │ ├── Option.cs │ │ │ │ │ ├── Page.cs │ │ │ │ │ ├── PageDetails.cs │ │ │ │ │ ├── PageOfAnswers.cs │ │ │ │ │ ├── QnAData.cs │ │ │ │ │ ├── Question.cs │ │ │ │ │ ├── TabularData.cs │ │ │ │ │ ├── TabularDataRow.cs │ │ │ │ │ └── ValidationDefinition.cs │ │ │ │ ├── Project.cs │ │ │ │ ├── RemovePageAnswerResponse.cs │ │ │ │ ├── ResetPageAnswersResponse.cs │ │ │ │ ├── ResetSectionAnswersResponse.cs │ │ │ │ ├── SFA.DAS.QnA.Api.Types.csproj │ │ │ │ ├── Section.cs │ │ │ │ ├── Sequence.cs │ │ │ │ ├── SetPageAnswersResponse.cs │ │ │ │ ├── SkipPageResponse.cs │ │ │ │ ├── StartApplicationRequest.cs │ │ │ │ ├── StartApplicationResponse.cs │ │ │ │ ├── Workflow.cs │ │ │ │ ├── WorkflowSection.cs │ │ │ │ └── WorkflowSequence.cs │ │ │ │ ├── SFA.DAS.QnA.Api.UnitTests │ │ │ │ ├── ApplicationControllerTests │ │ │ │ │ └── StartApplication │ │ │ │ │ │ └── When_StartApplication_is_called.cs │ │ │ │ ├── ApplicationDataControllerTests │ │ │ │ │ ├── WhenGettingApplicationData.cs │ │ │ │ │ └── WhenPostingApplicationData.cs │ │ │ │ ├── DeserializerTests │ │ │ │ │ ├── WhenDeserializingApplicationData.cs │ │ │ │ │ └── test.json │ │ │ │ ├── FileControllerTests │ │ │ │ │ ├── When_download_file_or_zip_of_files_is_called.cs │ │ │ │ │ └── When_upload_is_called.cs │ │ │ │ ├── PagesControllerTests │ │ │ │ │ └── PagesControllerTests.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── SFA.DAS.QnA.Api.UnitTests.csproj │ │ │ │ ├── SectionsControllerTests │ │ │ │ │ └── GetSection │ │ │ │ │ │ ├── When_GetSection_is_called.cs │ │ │ │ │ │ └── When_GetSection_is_called_with_a_sectionNo.cs │ │ │ │ ├── SequencesControllerTests │ │ │ │ │ ├── GetSequence │ │ │ │ │ │ ├── When_GetSequence_is_called.cs │ │ │ │ │ │ └── When_GetSequence_is_called_with_a_sectionNo.cs │ │ │ │ │ └── GetSequences │ │ │ │ │ │ ├── When_GetSequences_called_for_application_with_no_sequences.cs │ │ │ │ │ │ ├── When_GetSequences_called_for_non-existant_application.cs │ │ │ │ │ │ └── When_GetSequences_is_called.cs │ │ │ │ └── WorkflowControllerTests │ │ │ │ │ └── When_GetWorkflows_is_called.cs │ │ │ │ ├── SFA.DAS.QnA.Api.Views │ │ │ │ ├── SFA.DAS.QnA.Api.Views.csproj │ │ │ │ ├── ViewHelpers.cs │ │ │ │ └── Views │ │ │ │ │ └── QuestionPartials │ │ │ │ │ ├── _Address.cshtml │ │ │ │ │ ├── _Checkbox.cshtml │ │ │ │ │ ├── _CheckboxList.cshtml │ │ │ │ │ ├── _ComplexCheckboxList.cshtml │ │ │ │ │ ├── _ComplexRadio.cshtml │ │ │ │ │ ├── _Date.cshtml │ │ │ │ │ ├── _Email.cshtml │ │ │ │ │ ├── _FileUpload.cshtml │ │ │ │ │ ├── _Hidden.cshtml │ │ │ │ │ ├── _LongTextarea.cshtml │ │ │ │ │ ├── _MonthAndYear.cshtml │ │ │ │ │ ├── _Number.cshtml │ │ │ │ │ ├── _Postcode.cshtml │ │ │ │ │ ├── _Radio.cshtml │ │ │ │ │ ├── _TabularData.cshtml │ │ │ │ │ ├── _Text.cshtml │ │ │ │ │ └── _Textarea.cshtml │ │ │ │ ├── SFA.DAS.QnA.Api │ │ │ │ ├── Authentication │ │ │ │ │ ├── AuthenticationExtensions.cs │ │ │ │ │ └── AzureAdScopeClaimTransformation.cs │ │ │ │ ├── Authorization │ │ │ │ │ ├── AuthorizationExtensions.cs │ │ │ │ │ ├── AuthorizationPolicyBuilderExtensions.cs │ │ │ │ │ ├── LocalAuthorizationHandler.cs │ │ │ │ │ └── NoneRequirement.cs │ │ │ │ ├── Controllers │ │ │ │ │ ├── ApplicationController.cs │ │ │ │ │ ├── ApplicationDataController.cs │ │ │ │ │ ├── ApplicationSnapshotController.cs │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── ProjectsController.cs │ │ │ │ │ │ ├── WorkflowSectionsController.cs │ │ │ │ │ │ ├── WorkflowSequencesController.cs │ │ │ │ │ │ └── WorkflowsController.cs │ │ │ │ │ ├── Deserializer │ │ │ │ │ │ └── HandlerResponseDeserializer.cs │ │ │ │ │ ├── ErrorsController.cs │ │ │ │ │ ├── FeedbackController.cs │ │ │ │ │ ├── FileController.cs │ │ │ │ │ ├── PagesController.cs │ │ │ │ │ ├── SectionsController.cs │ │ │ │ │ ├── SequencesController.cs │ │ │ │ │ ├── StorageMigrationController.cs │ │ │ │ │ └── WorkflowsController.cs │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── ApiError.cs │ │ │ │ │ ├── ApiExplorerGroupConvention.cs │ │ │ │ │ ├── BadRequestError.cs │ │ │ │ │ ├── NotFoundError.cs │ │ │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ │ │ ├── SqlTokenGenerator.cs │ │ │ │ │ └── UnprocessableEntityError.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── launchSettings.json │ │ │ │ ├── SFA.DAS.QnA.Api.csproj │ │ │ │ ├── Startup.cs │ │ │ │ ├── appsettings.json │ │ │ │ ├── nlog.config │ │ │ │ └── web.config │ │ │ │ ├── SFA.DAS.QnA.Application.UnitTests │ │ │ │ ├── CommandsTests │ │ │ │ │ ├── ApplicationDataValidatorTests │ │ │ │ │ │ ├── When_valid_applicationData_has_extra_properties.cs │ │ │ │ │ │ ├── When_valid_applicationData_is_missing_a_property.cs │ │ │ │ │ │ └── When_valid_applicationData_supplied.cs │ │ │ │ │ ├── CreateSnapshotTests │ │ │ │ │ │ ├── CreateSnapshotTestBase.cs │ │ │ │ │ │ ├── When_application_exists.cs │ │ │ │ │ │ └── When_application_not_found.cs │ │ │ │ │ ├── FindNextRequiredActionTests │ │ │ │ │ │ ├── FindNextRequiredActionTestsBase.cs │ │ │ │ │ │ ├── When_next_page_has_a_NotRequiredCondition.cs │ │ │ │ │ │ └── When_next_page_has_no_NotRequiredConditions.cs │ │ │ │ │ ├── ResetPageAnswersBySectionNoHandlerTests │ │ │ │ │ │ ├── ResetPageAnswersBySectionNoTestBase.cs │ │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── ResetPageAnswersHandlerTests │ │ │ │ │ │ ├── ResetPageAnswersTestBase.cs │ │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── ResetSectionAnswersHandlerTests │ │ │ │ │ │ ├── ResetSectionAnswersTestBase.cs │ │ │ │ │ │ ├── When_section_found.cs │ │ │ │ │ │ └── When_section_not_found.cs │ │ │ │ │ ├── SetPageAnswersTests │ │ │ │ │ │ ├── SetPageAnswersTestBase.cs │ │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ │ ├── When_answer_doesnt_relate_to_a_question.cs │ │ │ │ │ │ ├── When_incorrect_amount_of_answers_specified.cs │ │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ │ ├── When_page_contains_fileupload_question.cs │ │ │ │ │ │ ├── When_page_contains_only_fileupload_questions.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── StartApplicationTests │ │ │ │ │ │ ├── StartApplicationTestBase.cs │ │ │ │ │ │ ├── When_StartApplication_handled.cs │ │ │ │ │ │ └── When_StartApplication_handled_with_nonexistant_workflowtype.cs │ │ │ │ │ ├── SubmitPageOfFilesHandlerTests │ │ │ │ │ │ ├── SubmitPageOfFilesTestBase.cs │ │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ │ ├── When_file_doesnt_relate_to_a_question.cs │ │ │ │ │ │ ├── When_files_specified_is_empty.cs │ │ │ │ │ │ ├── When_files_specified_is_null.cs │ │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ │ ├── When_page_contains_mixture_of_question_types.cs │ │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ │ ├── UpsertFeedbackTests │ │ │ │ │ │ ├── When_Feedback_exists.cs │ │ │ │ │ │ └── When_Feedback_is_new.cs │ │ │ │ │ └── Workflows │ │ │ │ │ │ ├── CreateWorkflowTests │ │ │ │ │ │ └── When_workflow_is_created.cs │ │ │ │ │ │ └── UpsertWorkflowTests │ │ │ │ │ │ └── When_upsert_called_with_new_workflow.cs │ │ │ │ ├── DataContextHelpers.cs │ │ │ │ ├── Handlers │ │ │ │ │ └── ResetPagesToIncompleteHandlerTests.cs │ │ │ │ ├── QueriesTests │ │ │ │ │ ├── CanUpdatePageBySectionNoTests │ │ │ │ │ │ ├── CanUpdatePageBySectionNoTestBase.cs │ │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled.cs │ │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_CanUpdatePageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ │ ├── CanUpdatePageTests │ │ │ │ │ │ ├── CanUpdatePageTestBase.cs │ │ │ │ │ │ ├── When_CanUpdatePage_handled.cs │ │ │ │ │ │ ├── When_CanUpdatePage_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_CanUpdatePage_handled_for_non_existent_section.cs │ │ │ │ │ ├── GetCurrentSequenceTests │ │ │ │ │ │ ├── GetCurrentSequenceTestBase.cs │ │ │ │ │ │ ├── When_GetCurrentSequence_handled.cs │ │ │ │ │ │ └── When_GetCurrentSequence_handled_for_non_existent_applicationId.cs │ │ │ │ │ ├── GetPageBySectionNoTests │ │ │ │ │ │ ├── GetPageBySectionNoTestBase.cs │ │ │ │ │ │ ├── When_GetPageBySectionNo_handled.cs │ │ │ │ │ │ ├── When_GetPageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_GetPageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ │ ├── GetPageTests │ │ │ │ │ │ ├── GetPageTestBase.cs │ │ │ │ │ │ ├── When_GetPage_handled.cs │ │ │ │ │ │ ├── When_GetPage_handled_for_non_existent_page.cs │ │ │ │ │ │ └── When_GetPage_handled_for_non_existent_section.cs │ │ │ │ │ ├── GetSectionTests │ │ │ │ │ │ └── When_section_has_pages_to_be_hidden.cs │ │ │ │ │ ├── GetSectionsTests │ │ │ │ │ │ ├── GetSectionsTestBase.cs │ │ │ │ │ │ ├── When_GetSections_handled.cs │ │ │ │ │ │ └── When_GetSections_handled_for_non_existant_application.cs │ │ │ │ │ ├── GetSequencesTests │ │ │ │ │ │ ├── GetSequencesTestBase.cs │ │ │ │ │ │ ├── When_GetSequences_handled.cs │ │ │ │ │ │ └── When_GetSequences_handled_for_non_existant_application.cs │ │ │ │ │ └── GetWorkflowsHandlerTests │ │ │ │ │ │ └── When_GetWorkflows_handled.cs │ │ │ │ ├── SFA.DAS.QnA.Application.UnitTests.csproj │ │ │ │ ├── ServiceTests │ │ │ │ │ ├── NotRequiredProcessorNotRequiredTests.cs │ │ │ │ │ ├── NotRequiredProcessorPagesWithDoesNotContainTests.cs │ │ │ │ │ ├── NotRequiredProcessorPagesWithoutNotRequiredContainsAllOfTests.cs │ │ │ │ │ └── NotRequiredProcessorPagesWithoutNotRequiredIsOneOfTests.cs │ │ │ │ └── Validators │ │ │ │ │ ├── AddressValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── ComplexRadioTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateInFutureValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateNotInFutureValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── DateValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── EmailTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── EmailValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── FileContentValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── FileTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MaxLengthValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MaxWordCountValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MinLengthValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MinWordCountValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MonthAndYearNotInFutureValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MonthAndYearTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── MonthAndYearValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── NumberTypeValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── NumberValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── RegexValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ ├── RequiredValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ │ └── UrlValidatorTests │ │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── SFA.DAS.QnA.Application │ │ │ │ ├── Commands │ │ │ │ │ ├── AddPageAnswer │ │ │ │ │ │ ├── AddPageAnswerHandler.cs │ │ │ │ │ │ ├── AddPageAnswerRequest.cs │ │ │ │ │ │ └── PageHandlerBase.cs │ │ │ │ │ ├── AnswerValidator.cs │ │ │ │ │ ├── CreateSnapshot │ │ │ │ │ │ ├── CreateSnapshotHandler.cs │ │ │ │ │ │ └── CreateSnapshotRequest.cs │ │ │ │ │ ├── FileContentValidator.cs │ │ │ │ │ ├── Files │ │ │ │ │ │ ├── ConfigKeyProvider.cs │ │ │ │ │ │ ├── ContainerHelpers.cs │ │ │ │ │ │ ├── DeleteFile │ │ │ │ │ │ │ └── DeleteFileRequest.cs │ │ │ │ │ │ ├── DownloadFile │ │ │ │ │ │ │ ├── DownloadFile.cs │ │ │ │ │ │ │ ├── DownloadFileBySectionNoHandler.cs │ │ │ │ │ │ │ ├── DownloadFileBySectionNoRequest.cs │ │ │ │ │ │ │ ├── DownloadFileHandler.cs │ │ │ │ │ │ │ ├── DownloadFileRequest.cs │ │ │ │ │ │ │ └── DownloadFileService.cs │ │ │ │ │ │ ├── EncryptionService.cs │ │ │ │ │ │ ├── IEncryptionService.cs │ │ │ │ │ │ ├── IKeyProvider.cs │ │ │ │ │ │ └── UploadFile │ │ │ │ │ │ │ ├── SubmitPageOfFilesHandler.cs │ │ │ │ │ │ │ └── SubmitPageOfFilesRequest.cs │ │ │ │ │ ├── IAnswerValidator.cs │ │ │ │ │ ├── IFileContentValidator.cs │ │ │ │ │ ├── PageFeedback │ │ │ │ │ │ ├── CompleteFeedbackWithinSequence │ │ │ │ │ │ │ ├── CompleteFeedbackWithinSequenceHandler.cs │ │ │ │ │ │ │ └── CompleteFeedbackWithinSequenceRequest.cs │ │ │ │ │ │ ├── DeleteFeedback │ │ │ │ │ │ │ ├── DeleteFeedbackHandler.cs │ │ │ │ │ │ │ └── DeleteFeedbackRequest.cs │ │ │ │ │ │ └── UpsertFeedback │ │ │ │ │ │ │ ├── UpsertFeedbackHandler.cs │ │ │ │ │ │ │ └── UpsertFeedbackRequest.cs │ │ │ │ │ ├── Projects │ │ │ │ │ │ ├── CreateProject │ │ │ │ │ │ │ ├── CreateProjectHandler.cs │ │ │ │ │ │ │ └── CreateProjectRequest.cs │ │ │ │ │ │ └── UpsertProject │ │ │ │ │ │ │ ├── UpsertProjectHandler.cs │ │ │ │ │ │ │ └── UpsertProjectRequest.cs │ │ │ │ │ ├── RemovePageAnswer │ │ │ │ │ │ ├── RemovePageAnswerHandler.cs │ │ │ │ │ │ └── RemovePageAnswerRequest.cs │ │ │ │ │ ├── ResetPageAnswers │ │ │ │ │ │ ├── ResetPageAnswersBySectionNoHandler.cs │ │ │ │ │ │ ├── ResetPageAnswersBySectionNoRequest.cs │ │ │ │ │ │ ├── ResetPageAnswersHandler.cs │ │ │ │ │ │ └── ResetPageAnswersRequest.cs │ │ │ │ │ ├── ResetPagesToIncomplete │ │ │ │ │ │ ├── ResetPagesToIncompleteHandler.cs │ │ │ │ │ │ └── ResetPagesToIncompleteRequest.cs │ │ │ │ │ ├── ResetSectionAnswers │ │ │ │ │ │ ├── ResetSectionAnswersHandler.cs │ │ │ │ │ │ └── ResetSectionAnswersRequest.cs │ │ │ │ │ ├── SetApplicationData │ │ │ │ │ │ ├── SetApplicationDataHandler.cs │ │ │ │ │ │ └── SetApplicationDataRequest.cs │ │ │ │ │ ├── SetPageAnswers │ │ │ │ │ │ ├── SetAnswersBase.cs │ │ │ │ │ │ ├── SetPageAnswersBySectionNoRequest.cs │ │ │ │ │ │ ├── SetPageAnswersHandler.cs │ │ │ │ │ │ ├── SetPageAnswersHandlerBySectionNo.cs │ │ │ │ │ │ └── SetPageAnswersRequest.cs │ │ │ │ │ ├── SkipPage │ │ │ │ │ │ ├── SkipPageBySectionNoHandler.cs │ │ │ │ │ │ ├── SkipPageBySectionNoRequest.cs │ │ │ │ │ │ ├── SkipPageHandler.cs │ │ │ │ │ │ └── SkipPageRequest.cs │ │ │ │ │ ├── StartApplication │ │ │ │ │ │ ├── IApplicationDataValidator.cs │ │ │ │ │ │ └── StartApplicationHandler.cs │ │ │ │ │ ├── WorkflowSections │ │ │ │ │ │ ├── CreateWorkflowSection │ │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── CreateWorkflowSectionRequest.cs │ │ │ │ │ │ └── UpsertWorkflowSection │ │ │ │ │ │ │ ├── UpsertWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── UpsertWorkflowSectionRequest.cs │ │ │ │ │ ├── WorkflowSequences │ │ │ │ │ │ ├── CreateWorkflowSequence │ │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── CreateWorkflowSequenceRequest.cs │ │ │ │ │ │ └── UpsertWorkflowSequence │ │ │ │ │ │ │ ├── UpsertWorkflowSequenceHandler.cs │ │ │ │ │ │ │ └── UpsertWorkflowSequenceRequest.cs │ │ │ │ │ └── Workflows │ │ │ │ │ │ ├── CreateWorkflow │ │ │ │ │ │ ├── CreateWorkflowHandler.cs │ │ │ │ │ │ └── CreateWorkflowRequest.cs │ │ │ │ │ │ └── UpsertWorkflow │ │ │ │ │ │ ├── UpsertWorkflowHandler.cs │ │ │ │ │ │ └── UpsertWorkflowRequest.cs │ │ │ │ ├── Mappings │ │ │ │ │ └── ApplicationsProfile.cs │ │ │ │ ├── Queries │ │ │ │ │ ├── ApplicationData │ │ │ │ │ │ └── GetApplicationData │ │ │ │ │ │ │ ├── GetApplicationDataHandler.cs │ │ │ │ │ │ │ ├── GetApplicationDataRequest.cs │ │ │ │ │ │ │ ├── GetQuestionTagDataHandler.cs │ │ │ │ │ │ │ └── GetQuestionTagDataRequest.cs │ │ │ │ │ ├── GetWorkflows │ │ │ │ │ │ ├── GetWorkflowsHandler.cs │ │ │ │ │ │ └── GetWorkflowsRequest.cs │ │ │ │ │ ├── Projects │ │ │ │ │ │ ├── GetProject │ │ │ │ │ │ │ ├── GetProjectHandler.cs │ │ │ │ │ │ │ └── GetProjectRequest.cs │ │ │ │ │ │ └── GetProjects │ │ │ │ │ │ │ ├── GetProjectsHandler.cs │ │ │ │ │ │ │ └── GetProjectsRequest.cs │ │ │ │ │ ├── Sections │ │ │ │ │ │ ├── CanUpdatePage │ │ │ │ │ │ │ ├── CanUpdatePageBySectionNoHandler.cs │ │ │ │ │ │ │ ├── CanUpdatePageBySectionNoRequest.cs │ │ │ │ │ │ │ ├── CanUpdatePageHandler.cs │ │ │ │ │ │ │ └── CanUpdatePageRequest.cs │ │ │ │ │ │ ├── GetPage │ │ │ │ │ │ │ ├── GetPageBySectionNoHandler.cs │ │ │ │ │ │ │ ├── GetPageBySectionNoRequest.cs │ │ │ │ │ │ │ ├── GetPageHandler.cs │ │ │ │ │ │ │ └── GetPageRequest.cs │ │ │ │ │ │ ├── GetSection │ │ │ │ │ │ │ ├── GetSectionBySectionNoHandler.cs │ │ │ │ │ │ │ ├── GetSectionBySectionNoRequest.cs │ │ │ │ │ │ │ ├── GetSectionHandler.cs │ │ │ │ │ │ │ └── GetSectionRequest.cs │ │ │ │ │ │ ├── GetSections │ │ │ │ │ │ │ ├── GetSectionsHandler.cs │ │ │ │ │ │ │ └── GetSectionsRequest.cs │ │ │ │ │ │ └── GetSequenceSections │ │ │ │ │ │ │ ├── GetSequenceSectionsHandler.cs │ │ │ │ │ │ │ └── GetSequenceSectionsRequest.cs │ │ │ │ │ ├── Sequences │ │ │ │ │ │ ├── GetCurrentSequence │ │ │ │ │ │ │ ├── GetCurrentSequenceHandler.cs │ │ │ │ │ │ │ └── GetCurrentSequenceRequest.cs │ │ │ │ │ │ ├── GetSequence │ │ │ │ │ │ │ ├── GetSequenceBySequenceNoHandler.cs │ │ │ │ │ │ │ ├── GetSequenceBySequenceNoRequest.cs │ │ │ │ │ │ │ ├── GetSequenceHandler.cs │ │ │ │ │ │ │ └── GetSequenceRequest.cs │ │ │ │ │ │ └── GetSequences │ │ │ │ │ │ │ ├── GetSequencesHandler.cs │ │ │ │ │ │ │ └── GetSequencesRequest.cs │ │ │ │ │ ├── WorkflowSections │ │ │ │ │ │ ├── GetWorkflowSection │ │ │ │ │ │ │ ├── GetWorkflowSectionHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSectionRequest.cs │ │ │ │ │ │ └── GetWorkflowSections │ │ │ │ │ │ │ ├── GetWorkflowSectionsHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSectionsRequest.cs │ │ │ │ │ ├── WorkflowSequences │ │ │ │ │ │ ├── GetWorkflowSequence │ │ │ │ │ │ │ ├── GetWorkflowSequenceHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSequenceRequest.cs │ │ │ │ │ │ └── GetWorkflowSequences │ │ │ │ │ │ │ ├── GetWorkflowSequencesHandler.cs │ │ │ │ │ │ │ └── GetWorkflowSequencesRequest.cs │ │ │ │ │ └── Workflows │ │ │ │ │ │ └── GetWorkflow │ │ │ │ │ │ └── GetWorkflowRequest.cs │ │ │ │ ├── SFA.DAS.QnA.Application.csproj │ │ │ │ ├── Services │ │ │ │ │ ├── INotRequiredProcessor.cs │ │ │ │ │ ├── ITagProcessingService.cs │ │ │ │ │ ├── NotRequiredProcessor.cs │ │ │ │ │ └── TagProcessingService.cs │ │ │ │ ├── SystemTime.cs │ │ │ │ └── Validators │ │ │ │ │ ├── AddressBuildingAndStreetRequiredValidator.cs │ │ │ │ │ ├── AddressPostcodeRequiredValidator.cs │ │ │ │ │ ├── AddressRequiredValidatorBase.cs │ │ │ │ │ ├── AddressTownOrCityRequiredValidator.cs │ │ │ │ │ ├── ComplexCheckboxListTypeValidator.cs │ │ │ │ │ ├── ComplexRadioTypeValidator.cs │ │ │ │ │ ├── DateInFutureValidator.cs │ │ │ │ │ ├── DateNotInFutureValidator.cs │ │ │ │ │ ├── DateTypeValidator.cs │ │ │ │ │ ├── DateValidator.cs │ │ │ │ │ ├── EmailTypeValidator.cs │ │ │ │ │ ├── EmailValidator.cs │ │ │ │ │ ├── FileTypeValidator.cs │ │ │ │ │ ├── IValidator.cs │ │ │ │ │ ├── IValidatorFactory.cs │ │ │ │ │ ├── MaxLengthValidator.cs │ │ │ │ │ ├── MaxWordCountValidator.cs │ │ │ │ │ ├── MinLengthValidator.cs │ │ │ │ │ ├── MinWordCountValidator.cs │ │ │ │ │ ├── MonthAndYearNotInFutureValidator.cs │ │ │ │ │ ├── MonthAndYearTypeValidator.cs │ │ │ │ │ ├── MonthAndYearValidator.cs │ │ │ │ │ ├── NullValidator.cs │ │ │ │ │ ├── NumberTypeValidator.cs │ │ │ │ │ ├── NumberValidator.cs │ │ │ │ │ ├── RegexValidator.cs │ │ │ │ │ ├── RegisteredCharityNumberValidator.cs │ │ │ │ │ ├── RequiredValidator.cs │ │ │ │ │ ├── SimpleRadioNotNullValidator.cs │ │ │ │ │ ├── UrlValidator.cs │ │ │ │ │ ├── ValidationErrorDetail.cs │ │ │ │ │ └── ValidatorFactory.cs │ │ │ │ ├── SFA.DAS.QnA.Configuration │ │ │ │ ├── Config │ │ │ │ │ ├── AzureActiveDirectoryConfiguration.cs │ │ │ │ │ ├── FileStorageConfig.cs │ │ │ │ │ └── QnAConfig.cs │ │ │ │ ├── Infrastructure │ │ │ │ │ ├── AzureTableStorageConfigurationExtensions.cs │ │ │ │ │ ├── AzureTableStorageConfigurationProvider.cs │ │ │ │ │ ├── AzureTableStorageConfigurationSource.cs │ │ │ │ │ └── ConfigurationItem.cs │ │ │ │ └── SFA.DAS.QnA.Configuration.csproj │ │ │ │ ├── SFA.DAS.QnA.Data │ │ │ │ ├── Entities │ │ │ │ │ ├── Application.cs │ │ │ │ │ ├── ApplicationSection.cs │ │ │ │ │ ├── ApplicationSequence.cs │ │ │ │ │ ├── ApplicationStatus.cs │ │ │ │ │ ├── EntityBase.cs │ │ │ │ │ └── WorkflowStatus.cs │ │ │ │ ├── QnaDataContext.cs │ │ │ │ └── SFA.DAS.QnA.Data.csproj │ │ │ │ ├── SFA.DAS.QnA.Database │ │ │ │ ├── ApplicationDataSchema │ │ │ │ │ └── Assessor.json │ │ │ │ ├── SFA.DAS.QnA.Database.sqlproj │ │ │ │ ├── Script.PostDeployment.sql │ │ │ │ ├── Tables │ │ │ │ │ ├── ApplicationSections.sql │ │ │ │ │ ├── ApplicationSequences.sql │ │ │ │ │ ├── Applications.sql │ │ │ │ │ ├── Projects.sql │ │ │ │ │ ├── WorkflowSections.sql │ │ │ │ │ ├── WorkflowSequences.sql │ │ │ │ │ └── Workflows.sql │ │ │ │ └── projects │ │ │ │ │ ├── Inject-projects.sql │ │ │ │ │ ├── epaoall │ │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ │ ├── project.json │ │ │ │ │ └── sections │ │ │ │ │ │ ├── section1.json │ │ │ │ │ │ ├── section2.json │ │ │ │ │ │ ├── section3.json │ │ │ │ │ │ ├── section4.json │ │ │ │ │ │ ├── section5.json │ │ │ │ │ │ └── section6.json │ │ │ │ │ └── roatp │ │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ │ ├── project.json │ │ │ │ │ └── sections │ │ │ │ │ ├── section0.1.json │ │ │ │ │ ├── section1.1.json │ │ │ │ │ ├── section1.2.json │ │ │ │ │ ├── section1.3.json │ │ │ │ │ ├── section1.4.json │ │ │ │ │ ├── section1.5.json │ │ │ │ │ ├── section2.1.json │ │ │ │ │ ├── section2.2.json │ │ │ │ │ ├── section2.3.json │ │ │ │ │ ├── section3.1.json │ │ │ │ │ ├── section3.2.json │ │ │ │ │ ├── section3.3.json │ │ │ │ │ ├── section3.4.json │ │ │ │ │ ├── section4.1.json │ │ │ │ │ ├── section4.2.json │ │ │ │ │ ├── section4.3.json │ │ │ │ │ ├── section4.4.json │ │ │ │ │ ├── section4.5.json │ │ │ │ │ ├── section4.6.json │ │ │ │ │ ├── section5.1.json │ │ │ │ │ ├── section5.2.json │ │ │ │ │ ├── section5.3.json │ │ │ │ │ ├── section5.4.json │ │ │ │ │ ├── section5.5.json │ │ │ │ │ ├── section5.6.json │ │ │ │ │ ├── section5.7.json │ │ │ │ │ ├── section5.8.json │ │ │ │ │ ├── section6.1.json │ │ │ │ │ ├── section6.2.json │ │ │ │ │ ├── section6.3.json │ │ │ │ │ ├── section6.4.json │ │ │ │ │ ├── section6.5.json │ │ │ │ │ ├── section6.6.json │ │ │ │ │ ├── section6.7.json │ │ │ │ │ ├── section7.1.json │ │ │ │ │ ├── section7.2.json │ │ │ │ │ ├── section7.3.json │ │ │ │ │ ├── section7.4.json │ │ │ │ │ ├── section7.5.json │ │ │ │ │ ├── section7.6.json │ │ │ │ │ ├── section7.7.json │ │ │ │ │ ├── section8.1.json │ │ │ │ │ ├── section8.2.json │ │ │ │ │ ├── section8.3.json │ │ │ │ │ ├── section8.4.json │ │ │ │ │ ├── section9.1.json │ │ │ │ │ ├── section9.2.json │ │ │ │ │ └── section9.3.json │ │ │ │ └── SFA.DAS.QnA.sln │ │ └── repair │ │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ ├── .github │ │ │ └── CODEOWNERS │ │ │ ├── .gitignore │ │ │ ├── GitVersion.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── azure-pipelines.yml │ │ │ ├── azure │ │ │ └── template.json │ │ │ ├── pipeline-templates │ │ │ └── job │ │ │ │ └── code-build.yml │ │ │ └── src │ │ │ ├── QnA.postman_collection.json │ │ │ ├── SFA.DAS.QnA.Api.Client │ │ │ ├── QnaApiClient.cs │ │ │ ├── QnaApiClientExtensions.cs │ │ │ ├── QnaApiConfig.cs │ │ │ └── SFA.DAS.QnA.Api.Client.csproj │ │ │ ├── SFA.DAS.QnA.Api.Types │ │ │ ├── AddPageAnswerResponse.cs │ │ │ ├── CreateSnapshotResponse.cs │ │ │ ├── HandlerResponse.cs │ │ │ ├── Page │ │ │ │ ├── Answer.cs │ │ │ │ ├── Condition.cs │ │ │ │ ├── Feedback.cs │ │ │ │ ├── FinancialApplicationGrade.cs │ │ │ │ ├── Input.cs │ │ │ │ ├── Next.cs │ │ │ │ ├── NotRequiredCondition.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── Page.cs │ │ │ │ ├── PageDetails.cs │ │ │ │ ├── PageOfAnswers.cs │ │ │ │ ├── QnAData.cs │ │ │ │ ├── Question.cs │ │ │ │ ├── TabularData.cs │ │ │ │ ├── TabularDataRow.cs │ │ │ │ └── ValidationDefinition.cs │ │ │ ├── Project.cs │ │ │ ├── RemovePageAnswerResponse.cs │ │ │ ├── ResetPageAnswersResponse.cs │ │ │ ├── ResetSectionAnswersResponse.cs │ │ │ ├── SFA.DAS.QnA.Api.Types.csproj │ │ │ ├── Section.cs │ │ │ ├── Sequence.cs │ │ │ ├── SetPageAnswersResponse.cs │ │ │ ├── SkipPageResponse.cs │ │ │ ├── StartApplicationRequest.cs │ │ │ ├── StartApplicationResponse.cs │ │ │ ├── Workflow.cs │ │ │ ├── WorkflowSection.cs │ │ │ └── WorkflowSequence.cs │ │ │ ├── SFA.DAS.QnA.Api.UnitTests │ │ │ ├── ApplicationControllerTests │ │ │ │ └── StartApplication │ │ │ │ │ └── When_StartApplication_is_called.cs │ │ │ ├── ApplicationDataControllerTests │ │ │ │ ├── WhenGettingApplicationData.cs │ │ │ │ └── WhenPostingApplicationData.cs │ │ │ ├── DeserializerTests │ │ │ │ ├── WhenDeserializingApplicationData.cs │ │ │ │ └── test.json │ │ │ ├── FileControllerTests │ │ │ │ ├── When_download_file_or_zip_of_files_is_called.cs │ │ │ │ └── When_upload_is_called.cs │ │ │ ├── PagesControllerTests │ │ │ │ └── PagesControllerTests.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SFA.DAS.QnA.Api.UnitTests.csproj │ │ │ ├── SectionsControllerTests │ │ │ │ └── GetSection │ │ │ │ │ ├── When_GetSection_is_called.cs │ │ │ │ │ └── When_GetSection_is_called_with_a_sectionNo.cs │ │ │ ├── SequencesControllerTests │ │ │ │ ├── GetSequence │ │ │ │ │ ├── When_GetSequence_is_called.cs │ │ │ │ │ └── When_GetSequence_is_called_with_a_sectionNo.cs │ │ │ │ └── GetSequences │ │ │ │ │ ├── When_GetSequences_called_for_application_with_no_sequences.cs │ │ │ │ │ ├── When_GetSequences_called_for_non-existant_application.cs │ │ │ │ │ └── When_GetSequences_is_called.cs │ │ │ └── WorkflowControllerTests │ │ │ │ └── When_GetWorkflows_is_called.cs │ │ │ ├── SFA.DAS.QnA.Api.Views │ │ │ ├── SFA.DAS.QnA.Api.Views.csproj │ │ │ ├── ViewHelpers.cs │ │ │ └── Views │ │ │ │ └── QuestionPartials │ │ │ │ ├── _Address.cshtml │ │ │ │ ├── _Checkbox.cshtml │ │ │ │ ├── _CheckboxList.cshtml │ │ │ │ ├── _ComplexCheckboxList.cshtml │ │ │ │ ├── _ComplexRadio.cshtml │ │ │ │ ├── _Date.cshtml │ │ │ │ ├── _Email.cshtml │ │ │ │ ├── _FileUpload.cshtml │ │ │ │ ├── _Hidden.cshtml │ │ │ │ ├── _LongTextarea.cshtml │ │ │ │ ├── _MonthAndYear.cshtml │ │ │ │ ├── _Number.cshtml │ │ │ │ ├── _Postcode.cshtml │ │ │ │ ├── _Radio.cshtml │ │ │ │ ├── _TabularData.cshtml │ │ │ │ ├── _Text.cshtml │ │ │ │ └── _Textarea.cshtml │ │ │ ├── SFA.DAS.QnA.Api │ │ │ ├── Authentication │ │ │ │ ├── AuthenticationExtensions.cs │ │ │ │ └── AzureAdScopeClaimTransformation.cs │ │ │ ├── Authorization │ │ │ │ ├── AuthorizationExtensions.cs │ │ │ │ ├── AuthorizationPolicyBuilderExtensions.cs │ │ │ │ ├── LocalAuthorizationHandler.cs │ │ │ │ └── NoneRequirement.cs │ │ │ ├── Controllers │ │ │ │ ├── ApplicationController.cs │ │ │ │ ├── ApplicationDataController.cs │ │ │ │ ├── ApplicationSnapshotController.cs │ │ │ │ ├── Config │ │ │ │ │ ├── ProjectsController.cs │ │ │ │ │ ├── WorkflowSectionsController.cs │ │ │ │ │ ├── WorkflowSequencesController.cs │ │ │ │ │ └── WorkflowsController.cs │ │ │ │ ├── Deserializer │ │ │ │ │ └── HandlerResponseDeserializer.cs │ │ │ │ ├── ErrorsController.cs │ │ │ │ ├── FeedbackController.cs │ │ │ │ ├── FileController.cs │ │ │ │ ├── PagesController.cs │ │ │ │ ├── SectionsController.cs │ │ │ │ ├── SequencesController.cs │ │ │ │ ├── StorageMigrationController.cs │ │ │ │ └── WorkflowsController.cs │ │ │ ├── Infrastructure │ │ │ │ ├── ApiError.cs │ │ │ │ ├── ApiExplorerGroupConvention.cs │ │ │ │ ├── BadRequestError.cs │ │ │ │ ├── NotFoundError.cs │ │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ │ ├── SqlTokenGenerator.cs │ │ │ │ └── UnprocessableEntityError.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SFA.DAS.QnA.Api.csproj │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ ├── nlog.config │ │ │ └── web.config │ │ │ ├── SFA.DAS.QnA.Application.UnitTests │ │ │ ├── CommandsTests │ │ │ │ ├── ApplicationDataValidatorTests │ │ │ │ │ ├── When_valid_applicationData_has_extra_properties.cs │ │ │ │ │ ├── When_valid_applicationData_is_missing_a_property.cs │ │ │ │ │ └── When_valid_applicationData_supplied.cs │ │ │ │ ├── CreateSnapshotTests │ │ │ │ │ ├── CreateSnapshotTestBase.cs │ │ │ │ │ ├── When_application_exists.cs │ │ │ │ │ └── When_application_not_found.cs │ │ │ │ ├── FindNextRequiredActionTests │ │ │ │ │ ├── FindNextRequiredActionTestsBase.cs │ │ │ │ │ ├── When_next_page_has_a_NotRequiredCondition.cs │ │ │ │ │ └── When_next_page_has_no_NotRequiredConditions.cs │ │ │ │ ├── ResetPageAnswersBySectionNoHandlerTests │ │ │ │ │ ├── ResetPageAnswersBySectionNoTestBase.cs │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── ResetPageAnswersHandlerTests │ │ │ │ │ ├── ResetPageAnswersTestBase.cs │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── ResetSectionAnswersHandlerTests │ │ │ │ │ ├── ResetSectionAnswersTestBase.cs │ │ │ │ │ ├── When_section_found.cs │ │ │ │ │ └── When_section_not_found.cs │ │ │ │ ├── SetPageAnswersTests │ │ │ │ │ ├── SetPageAnswersTestBase.cs │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ ├── When_answer_doesnt_relate_to_a_question.cs │ │ │ │ │ ├── When_incorrect_amount_of_answers_specified.cs │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ ├── When_page_contains_fileupload_question.cs │ │ │ │ │ ├── When_page_contains_only_fileupload_questions.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── StartApplicationTests │ │ │ │ │ ├── StartApplicationTestBase.cs │ │ │ │ │ ├── When_StartApplication_handled.cs │ │ │ │ │ └── When_StartApplication_handled_with_nonexistant_workflowtype.cs │ │ │ │ ├── SubmitPageOfFilesHandlerTests │ │ │ │ │ ├── SubmitPageOfFilesTestBase.cs │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ ├── When_file_doesnt_relate_to_a_question.cs │ │ │ │ │ ├── When_files_specified_is_empty.cs │ │ │ │ │ ├── When_files_specified_is_null.cs │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ ├── When_page_contains_mixture_of_question_types.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── UpsertFeedbackTests │ │ │ │ │ ├── When_Feedback_exists.cs │ │ │ │ │ └── When_Feedback_is_new.cs │ │ │ │ └── Workflows │ │ │ │ │ ├── CreateWorkflowTests │ │ │ │ │ └── When_workflow_is_created.cs │ │ │ │ │ └── UpsertWorkflowTests │ │ │ │ │ └── When_upsert_called_with_new_workflow.cs │ │ │ ├── DataContextHelpers.cs │ │ │ ├── Handlers │ │ │ │ └── ResetPagesToIncompleteHandlerTests.cs │ │ │ ├── QueriesTests │ │ │ │ ├── CanUpdatePageBySectionNoTests │ │ │ │ │ ├── CanUpdatePageBySectionNoTestBase.cs │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled.cs │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ └── When_CanUpdatePageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ ├── CanUpdatePageTests │ │ │ │ │ ├── CanUpdatePageTestBase.cs │ │ │ │ │ ├── When_CanUpdatePage_handled.cs │ │ │ │ │ ├── When_CanUpdatePage_handled_for_non_existent_page.cs │ │ │ │ │ └── When_CanUpdatePage_handled_for_non_existent_section.cs │ │ │ │ ├── GetCurrentSequenceTests │ │ │ │ │ ├── GetCurrentSequenceTestBase.cs │ │ │ │ │ ├── When_GetCurrentSequence_handled.cs │ │ │ │ │ └── When_GetCurrentSequence_handled_for_non_existent_applicationId.cs │ │ │ │ ├── GetPageBySectionNoTests │ │ │ │ │ ├── GetPageBySectionNoTestBase.cs │ │ │ │ │ ├── When_GetPageBySectionNo_handled.cs │ │ │ │ │ ├── When_GetPageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ └── When_GetPageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ ├── GetPageTests │ │ │ │ │ ├── GetPageTestBase.cs │ │ │ │ │ ├── When_GetPage_handled.cs │ │ │ │ │ ├── When_GetPage_handled_for_non_existent_page.cs │ │ │ │ │ └── When_GetPage_handled_for_non_existent_section.cs │ │ │ │ ├── GetSectionTests │ │ │ │ │ └── When_section_has_pages_to_be_hidden.cs │ │ │ │ ├── GetSectionsTests │ │ │ │ │ ├── GetSectionsTestBase.cs │ │ │ │ │ ├── When_GetSections_handled.cs │ │ │ │ │ └── When_GetSections_handled_for_non_existant_application.cs │ │ │ │ ├── GetSequencesTests │ │ │ │ │ ├── GetSequencesTestBase.cs │ │ │ │ │ ├── When_GetSequences_handled.cs │ │ │ │ │ └── When_GetSequences_handled_for_non_existant_application.cs │ │ │ │ └── GetWorkflowsHandlerTests │ │ │ │ │ └── When_GetWorkflows_handled.cs │ │ │ ├── SFA.DAS.QnA.Application.UnitTests.csproj │ │ │ ├── ServiceTests │ │ │ │ ├── NotRequiredProcessorNotRequiredTests.cs │ │ │ │ ├── NotRequiredProcessorPagesWithDoesNotContainTests.cs │ │ │ │ ├── NotRequiredProcessorPagesWithoutNotRequiredContainsAllOfTests.cs │ │ │ │ └── NotRequiredProcessorPagesWithoutNotRequiredIsOneOfTests.cs │ │ │ └── Validators │ │ │ │ ├── AddressValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── ComplexRadioTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateInFutureValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateNotInFutureValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── EmailTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── EmailValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── FileContentValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── FileTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MaxLengthValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MaxWordCountValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MinLengthValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MinWordCountValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MonthAndYearNotInFutureValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MonthAndYearTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MonthAndYearValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── NumberTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── NumberValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── RegexValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── RequiredValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ └── UrlValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ ├── SFA.DAS.QnA.Application │ │ │ ├── Commands │ │ │ │ ├── AddPageAnswer │ │ │ │ │ ├── AddPageAnswerHandler.cs │ │ │ │ │ ├── AddPageAnswerRequest.cs │ │ │ │ │ └── PageHandlerBase.cs │ │ │ │ ├── AnswerValidator.cs │ │ │ │ ├── CreateSnapshot │ │ │ │ │ ├── CreateSnapshotHandler.cs │ │ │ │ │ └── CreateSnapshotRequest.cs │ │ │ │ ├── FileContentValidator.cs │ │ │ │ ├── Files │ │ │ │ │ ├── ConfigKeyProvider.cs │ │ │ │ │ ├── ContainerHelpers.cs │ │ │ │ │ ├── DeleteFile │ │ │ │ │ │ └── DeleteFileRequest.cs │ │ │ │ │ ├── DownloadFile │ │ │ │ │ │ ├── DownloadFile.cs │ │ │ │ │ │ ├── DownloadFileBySectionNoHandler.cs │ │ │ │ │ │ ├── DownloadFileBySectionNoRequest.cs │ │ │ │ │ │ ├── DownloadFileHandler.cs │ │ │ │ │ │ ├── DownloadFileRequest.cs │ │ │ │ │ │ └── DownloadFileService.cs │ │ │ │ │ ├── EncryptionService.cs │ │ │ │ │ ├── IEncryptionService.cs │ │ │ │ │ ├── IKeyProvider.cs │ │ │ │ │ └── UploadFile │ │ │ │ │ │ ├── SubmitPageOfFilesHandler.cs │ │ │ │ │ │ └── SubmitPageOfFilesRequest.cs │ │ │ │ ├── IAnswerValidator.cs │ │ │ │ ├── IFileContentValidator.cs │ │ │ │ ├── PageFeedback │ │ │ │ │ ├── CompleteFeedbackWithinSequence │ │ │ │ │ │ ├── CompleteFeedbackWithinSequenceHandler.cs │ │ │ │ │ │ └── CompleteFeedbackWithinSequenceRequest.cs │ │ │ │ │ ├── DeleteFeedback │ │ │ │ │ │ ├── DeleteFeedbackHandler.cs │ │ │ │ │ │ └── DeleteFeedbackRequest.cs │ │ │ │ │ └── UpsertFeedback │ │ │ │ │ │ ├── UpsertFeedbackHandler.cs │ │ │ │ │ │ └── UpsertFeedbackRequest.cs │ │ │ │ ├── Projects │ │ │ │ │ ├── CreateProject │ │ │ │ │ │ ├── CreateProjectHandler.cs │ │ │ │ │ │ └── CreateProjectRequest.cs │ │ │ │ │ └── UpsertProject │ │ │ │ │ │ ├── UpsertProjectHandler.cs │ │ │ │ │ │ └── UpsertProjectRequest.cs │ │ │ │ ├── RemovePageAnswer │ │ │ │ │ ├── RemovePageAnswerHandler.cs │ │ │ │ │ └── RemovePageAnswerRequest.cs │ │ │ │ ├── ResetPageAnswers │ │ │ │ │ ├── ResetPageAnswersBySectionNoHandler.cs │ │ │ │ │ ├── ResetPageAnswersBySectionNoRequest.cs │ │ │ │ │ ├── ResetPageAnswersHandler.cs │ │ │ │ │ └── ResetPageAnswersRequest.cs │ │ │ │ ├── ResetPagesToIncomplete │ │ │ │ │ ├── ResetPagesToIncompleteHandler.cs │ │ │ │ │ └── ResetPagesToIncompleteRequest.cs │ │ │ │ ├── ResetSectionAnswers │ │ │ │ │ ├── ResetSectionAnswersHandler.cs │ │ │ │ │ └── ResetSectionAnswersRequest.cs │ │ │ │ ├── SetApplicationData │ │ │ │ │ ├── SetApplicationDataHandler.cs │ │ │ │ │ └── SetApplicationDataRequest.cs │ │ │ │ ├── SetPageAnswers │ │ │ │ │ ├── SetAnswersBase.cs │ │ │ │ │ ├── SetPageAnswersBySectionNoRequest.cs │ │ │ │ │ ├── SetPageAnswersHandler.cs │ │ │ │ │ ├── SetPageAnswersHandlerBySectionNo.cs │ │ │ │ │ └── SetPageAnswersRequest.cs │ │ │ │ ├── SkipPage │ │ │ │ │ ├── SkipPageBySectionNoHandler.cs │ │ │ │ │ ├── SkipPageBySectionNoRequest.cs │ │ │ │ │ ├── SkipPageHandler.cs │ │ │ │ │ └── SkipPageRequest.cs │ │ │ │ ├── StartApplication │ │ │ │ │ ├── IApplicationDataValidator.cs │ │ │ │ │ └── StartApplicationHandler.cs │ │ │ │ ├── WorkflowSections │ │ │ │ │ ├── CreateWorkflowSection │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ └── CreateWorkflowSectionRequest.cs │ │ │ │ │ └── UpsertWorkflowSection │ │ │ │ │ │ ├── UpsertWorkflowSectionHandler.cs │ │ │ │ │ │ └── UpsertWorkflowSectionRequest.cs │ │ │ │ ├── WorkflowSequences │ │ │ │ │ ├── CreateWorkflowSequence │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ └── CreateWorkflowSequenceRequest.cs │ │ │ │ │ └── UpsertWorkflowSequence │ │ │ │ │ │ ├── UpsertWorkflowSequenceHandler.cs │ │ │ │ │ │ └── UpsertWorkflowSequenceRequest.cs │ │ │ │ └── Workflows │ │ │ │ │ ├── CreateWorkflow │ │ │ │ │ ├── CreateWorkflowHandler.cs │ │ │ │ │ └── CreateWorkflowRequest.cs │ │ │ │ │ └── UpsertWorkflow │ │ │ │ │ ├── UpsertWorkflowHandler.cs │ │ │ │ │ └── UpsertWorkflowRequest.cs │ │ │ ├── Mappings │ │ │ │ └── ApplicationsProfile.cs │ │ │ ├── Queries │ │ │ │ ├── ApplicationData │ │ │ │ │ └── GetApplicationData │ │ │ │ │ │ ├── GetApplicationDataHandler.cs │ │ │ │ │ │ ├── GetApplicationDataRequest.cs │ │ │ │ │ │ ├── GetQuestionTagDataHandler.cs │ │ │ │ │ │ └── GetQuestionTagDataRequest.cs │ │ │ │ ├── GetWorkflows │ │ │ │ │ ├── GetWorkflowsHandler.cs │ │ │ │ │ └── GetWorkflowsRequest.cs │ │ │ │ ├── Projects │ │ │ │ │ ├── GetProject │ │ │ │ │ │ ├── GetProjectHandler.cs │ │ │ │ │ │ └── GetProjectRequest.cs │ │ │ │ │ └── GetProjects │ │ │ │ │ │ ├── GetProjectsHandler.cs │ │ │ │ │ │ └── GetProjectsRequest.cs │ │ │ │ ├── Sections │ │ │ │ │ ├── CanUpdatePage │ │ │ │ │ │ ├── CanUpdatePageBySectionNoHandler.cs │ │ │ │ │ │ ├── CanUpdatePageBySectionNoRequest.cs │ │ │ │ │ │ ├── CanUpdatePageHandler.cs │ │ │ │ │ │ └── CanUpdatePageRequest.cs │ │ │ │ │ ├── GetPage │ │ │ │ │ │ ├── GetPageBySectionNoHandler.cs │ │ │ │ │ │ ├── GetPageBySectionNoRequest.cs │ │ │ │ │ │ ├── GetPageHandler.cs │ │ │ │ │ │ └── GetPageRequest.cs │ │ │ │ │ ├── GetSection │ │ │ │ │ │ ├── GetSectionBySectionNoHandler.cs │ │ │ │ │ │ ├── GetSectionBySectionNoRequest.cs │ │ │ │ │ │ ├── GetSectionHandler.cs │ │ │ │ │ │ └── GetSectionRequest.cs │ │ │ │ │ ├── GetSections │ │ │ │ │ │ ├── GetSectionsHandler.cs │ │ │ │ │ │ └── GetSectionsRequest.cs │ │ │ │ │ └── GetSequenceSections │ │ │ │ │ │ ├── GetSequenceSectionsHandler.cs │ │ │ │ │ │ └── GetSequenceSectionsRequest.cs │ │ │ │ ├── Sequences │ │ │ │ │ ├── GetCurrentSequence │ │ │ │ │ │ ├── GetCurrentSequenceHandler.cs │ │ │ │ │ │ └── GetCurrentSequenceRequest.cs │ │ │ │ │ ├── GetSequence │ │ │ │ │ │ ├── GetSequenceBySequenceNoHandler.cs │ │ │ │ │ │ ├── GetSequenceBySequenceNoRequest.cs │ │ │ │ │ │ ├── GetSequenceHandler.cs │ │ │ │ │ │ └── GetSequenceRequest.cs │ │ │ │ │ └── GetSequences │ │ │ │ │ │ ├── GetSequencesHandler.cs │ │ │ │ │ │ └── GetSequencesRequest.cs │ │ │ │ ├── WorkflowSections │ │ │ │ │ ├── GetWorkflowSection │ │ │ │ │ │ ├── GetWorkflowSectionHandler.cs │ │ │ │ │ │ └── GetWorkflowSectionRequest.cs │ │ │ │ │ └── GetWorkflowSections │ │ │ │ │ │ ├── GetWorkflowSectionsHandler.cs │ │ │ │ │ │ └── GetWorkflowSectionsRequest.cs │ │ │ │ ├── WorkflowSequences │ │ │ │ │ ├── GetWorkflowSequence │ │ │ │ │ │ ├── GetWorkflowSequenceHandler.cs │ │ │ │ │ │ └── GetWorkflowSequenceRequest.cs │ │ │ │ │ └── GetWorkflowSequences │ │ │ │ │ │ ├── GetWorkflowSequencesHandler.cs │ │ │ │ │ │ └── GetWorkflowSequencesRequest.cs │ │ │ │ └── Workflows │ │ │ │ │ └── GetWorkflow │ │ │ │ │ └── GetWorkflowRequest.cs │ │ │ ├── SFA.DAS.QnA.Application.csproj │ │ │ ├── Services │ │ │ │ ├── INotRequiredProcessor.cs │ │ │ │ ├── ITagProcessingService.cs │ │ │ │ ├── NotRequiredProcessor.cs │ │ │ │ └── TagProcessingService.cs │ │ │ ├── SystemTime.cs │ │ │ └── Validators │ │ │ │ ├── AddressBuildingAndStreetRequiredValidator.cs │ │ │ │ ├── AddressPostcodeRequiredValidator.cs │ │ │ │ ├── AddressRequiredValidatorBase.cs │ │ │ │ ├── AddressTownOrCityRequiredValidator.cs │ │ │ │ ├── ComplexCheckboxListTypeValidator.cs │ │ │ │ ├── ComplexRadioTypeValidator.cs │ │ │ │ ├── DateInFutureValidator.cs │ │ │ │ ├── DateNotInFutureValidator.cs │ │ │ │ ├── DateTypeValidator.cs │ │ │ │ ├── DateValidator.cs │ │ │ │ ├── EmailTypeValidator.cs │ │ │ │ ├── EmailValidator.cs │ │ │ │ ├── FileTypeValidator.cs │ │ │ │ ├── IValidator.cs │ │ │ │ ├── IValidatorFactory.cs │ │ │ │ ├── MaxLengthValidator.cs │ │ │ │ ├── MaxWordCountValidator.cs │ │ │ │ ├── MinLengthValidator.cs │ │ │ │ ├── MinWordCountValidator.cs │ │ │ │ ├── MonthAndYearNotInFutureValidator.cs │ │ │ │ ├── MonthAndYearTypeValidator.cs │ │ │ │ ├── MonthAndYearValidator.cs │ │ │ │ ├── NullValidator.cs │ │ │ │ ├── NumberTypeValidator.cs │ │ │ │ ├── NumberValidator.cs │ │ │ │ ├── RegexValidator.cs │ │ │ │ ├── RegisteredCharityNumberValidator.cs │ │ │ │ ├── RequiredValidator.cs │ │ │ │ ├── SimpleRadioNotNullValidator.cs │ │ │ │ ├── UrlValidator.cs │ │ │ │ ├── ValidationErrorDetail.cs │ │ │ │ └── ValidatorFactory.cs │ │ │ ├── SFA.DAS.QnA.Configuration │ │ │ ├── Config │ │ │ │ ├── AzureActiveDirectoryConfiguration.cs │ │ │ │ ├── FileStorageConfig.cs │ │ │ │ └── QnAConfig.cs │ │ │ ├── Infrastructure │ │ │ │ ├── AzureTableStorageConfigurationExtensions.cs │ │ │ │ ├── AzureTableStorageConfigurationProvider.cs │ │ │ │ ├── AzureTableStorageConfigurationSource.cs │ │ │ │ └── ConfigurationItem.cs │ │ │ └── SFA.DAS.QnA.Configuration.csproj │ │ │ ├── SFA.DAS.QnA.Data │ │ │ ├── Entities │ │ │ │ ├── Application.cs │ │ │ │ ├── ApplicationSection.cs │ │ │ │ ├── ApplicationSequence.cs │ │ │ │ ├── ApplicationStatus.cs │ │ │ │ ├── EntityBase.cs │ │ │ │ └── WorkflowStatus.cs │ │ │ ├── QnaDataContext.cs │ │ │ └── SFA.DAS.QnA.Data.csproj │ │ │ ├── SFA.DAS.QnA.Database │ │ │ ├── ApplicationDataSchema │ │ │ │ └── Assessor.json │ │ │ ├── SFA.DAS.QnA.Database.sqlproj │ │ │ ├── Script.PostDeployment.sql │ │ │ ├── Tables │ │ │ │ ├── ApplicationSections.sql │ │ │ │ ├── ApplicationSequences.sql │ │ │ │ ├── Applications.sql │ │ │ │ ├── Projects.sql │ │ │ │ ├── WorkflowSections.sql │ │ │ │ ├── WorkflowSequences.sql │ │ │ │ └── Workflows.sql │ │ │ └── projects │ │ │ │ ├── Inject-projects.sql │ │ │ │ ├── epaoall │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ ├── project.json │ │ │ │ └── sections │ │ │ │ │ ├── section1.json │ │ │ │ │ ├── section2.json │ │ │ │ │ ├── section3.json │ │ │ │ │ ├── section4.json │ │ │ │ │ ├── section5.json │ │ │ │ │ └── section6.json │ │ │ │ └── roatp │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ ├── project.json │ │ │ │ └── sections │ │ │ │ ├── section0.1.json │ │ │ │ ├── section1.1.json │ │ │ │ ├── section1.2.json │ │ │ │ ├── section1.3.json │ │ │ │ ├── section1.4.json │ │ │ │ ├── section1.5.json │ │ │ │ ├── section2.1.json │ │ │ │ ├── section2.2.json │ │ │ │ ├── section2.3.json │ │ │ │ ├── section3.1.json │ │ │ │ ├── section3.2.json │ │ │ │ ├── section3.3.json │ │ │ │ ├── section3.4.json │ │ │ │ ├── section4.1.json │ │ │ │ ├── section4.2.json │ │ │ │ ├── section4.3.json │ │ │ │ ├── section4.4.json │ │ │ │ ├── section4.5.json │ │ │ │ ├── section4.6.json │ │ │ │ ├── section5.1.json │ │ │ │ ├── section5.2.json │ │ │ │ ├── section5.3.json │ │ │ │ ├── section5.4.json │ │ │ │ ├── section5.5.json │ │ │ │ ├── section5.6.json │ │ │ │ ├── section5.7.json │ │ │ │ ├── section5.8.json │ │ │ │ ├── section6.1.json │ │ │ │ ├── section6.2.json │ │ │ │ ├── section6.3.json │ │ │ │ ├── section6.4.json │ │ │ │ ├── section6.5.json │ │ │ │ ├── section6.6.json │ │ │ │ ├── section6.7.json │ │ │ │ ├── section7.1.json │ │ │ │ ├── section7.2.json │ │ │ │ ├── section7.3.json │ │ │ │ ├── section7.4.json │ │ │ │ ├── section7.5.json │ │ │ │ ├── section7.6.json │ │ │ │ ├── section7.7.json │ │ │ │ ├── section8.1.json │ │ │ │ ├── section8.2.json │ │ │ │ ├── section8.3.json │ │ │ │ ├── section8.4.json │ │ │ │ ├── section9.1.json │ │ │ │ ├── section9.2.json │ │ │ │ └── section9.3.json │ │ │ └── SFA.DAS.QnA.sln │ ├── source │ │ ├── .github │ │ │ └── CODEOWNERS │ │ ├── .gitignore │ │ ├── GitVersion.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── azure-pipelines.yml │ │ ├── azure │ │ │ └── template.json │ │ ├── pipeline-templates │ │ │ └── job │ │ │ │ └── code-build.yml │ │ └── src │ │ │ ├── QnA.postman_collection.json │ │ │ ├── SFA.DAS.QnA.Api.Client │ │ │ ├── QnaApiClient.cs │ │ │ ├── QnaApiClientExtensions.cs │ │ │ ├── QnaApiConfig.cs │ │ │ └── SFA.DAS.QnA.Api.Client.csproj │ │ │ ├── SFA.DAS.QnA.Api.Types │ │ │ ├── AddPageAnswerResponse.cs │ │ │ ├── CreateSnapshotResponse.cs │ │ │ ├── HandlerResponse.cs │ │ │ ├── Page │ │ │ │ ├── Answer.cs │ │ │ │ ├── Condition.cs │ │ │ │ ├── Feedback.cs │ │ │ │ ├── FinancialApplicationGrade.cs │ │ │ │ ├── Input.cs │ │ │ │ ├── Next.cs │ │ │ │ ├── NotRequiredCondition.cs │ │ │ │ ├── Option.cs │ │ │ │ ├── Page.cs │ │ │ │ ├── PageDetails.cs │ │ │ │ ├── PageOfAnswers.cs │ │ │ │ ├── QnAData.cs │ │ │ │ ├── Question.cs │ │ │ │ ├── TabularData.cs │ │ │ │ ├── TabularDataRow.cs │ │ │ │ └── ValidationDefinition.cs │ │ │ ├── Project.cs │ │ │ ├── RemovePageAnswerResponse.cs │ │ │ ├── ResetPageAnswersResponse.cs │ │ │ ├── ResetSectionAnswersResponse.cs │ │ │ ├── SFA.DAS.QnA.Api.Types.csproj │ │ │ ├── Section.cs │ │ │ ├── Sequence.cs │ │ │ ├── SetPageAnswersResponse.cs │ │ │ ├── SkipPageResponse.cs │ │ │ ├── StartApplicationRequest.cs │ │ │ ├── StartApplicationResponse.cs │ │ │ ├── Workflow.cs │ │ │ ├── WorkflowSection.cs │ │ │ └── WorkflowSequence.cs │ │ │ ├── SFA.DAS.QnA.Api.UnitTests │ │ │ ├── ApplicationControllerTests │ │ │ │ └── StartApplication │ │ │ │ │ └── When_StartApplication_is_called.cs │ │ │ ├── ApplicationDataControllerTests │ │ │ │ ├── WhenGettingApplicationData.cs │ │ │ │ └── WhenPostingApplicationData.cs │ │ │ ├── DeserializerTests │ │ │ │ ├── WhenDeserializingApplicationData.cs │ │ │ │ └── test.json │ │ │ ├── FileControllerTests │ │ │ │ ├── When_download_file_or_zip_of_files_is_called.cs │ │ │ │ └── When_upload_is_called.cs │ │ │ ├── PagesControllerTests │ │ │ │ └── PagesControllerTests.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SFA.DAS.QnA.Api.UnitTests.csproj │ │ │ ├── SectionsControllerTests │ │ │ │ └── GetSection │ │ │ │ │ ├── When_GetSection_is_called.cs │ │ │ │ │ └── When_GetSection_is_called_with_a_sectionNo.cs │ │ │ ├── SequencesControllerTests │ │ │ │ ├── GetSequence │ │ │ │ │ ├── When_GetSequence_is_called.cs │ │ │ │ │ └── When_GetSequence_is_called_with_a_sectionNo.cs │ │ │ │ └── GetSequences │ │ │ │ │ ├── When_GetSequences_called_for_application_with_no_sequences.cs │ │ │ │ │ ├── When_GetSequences_called_for_non-existant_application.cs │ │ │ │ │ └── When_GetSequences_is_called.cs │ │ │ └── WorkflowControllerTests │ │ │ │ └── When_GetWorkflows_is_called.cs │ │ │ ├── SFA.DAS.QnA.Api.Views │ │ │ ├── SFA.DAS.QnA.Api.Views.csproj │ │ │ ├── ViewHelpers.cs │ │ │ └── Views │ │ │ │ └── QuestionPartials │ │ │ │ ├── _Address.cshtml │ │ │ │ ├── _Checkbox.cshtml │ │ │ │ ├── _CheckboxList.cshtml │ │ │ │ ├── _ComplexCheckboxList.cshtml │ │ │ │ ├── _ComplexRadio.cshtml │ │ │ │ ├── _Date.cshtml │ │ │ │ ├── _Email.cshtml │ │ │ │ ├── _FileUpload.cshtml │ │ │ │ ├── _Hidden.cshtml │ │ │ │ ├── _LongTextarea.cshtml │ │ │ │ ├── _MonthAndYear.cshtml │ │ │ │ ├── _Number.cshtml │ │ │ │ ├── _Postcode.cshtml │ │ │ │ ├── _Radio.cshtml │ │ │ │ ├── _TabularData.cshtml │ │ │ │ ├── _Text.cshtml │ │ │ │ └── _Textarea.cshtml │ │ │ ├── SFA.DAS.QnA.Api │ │ │ ├── Authentication │ │ │ │ ├── AuthenticationExtensions.cs │ │ │ │ └── AzureAdScopeClaimTransformation.cs │ │ │ ├── Authorization │ │ │ │ ├── AuthorizationExtensions.cs │ │ │ │ ├── AuthorizationPolicyBuilderExtensions.cs │ │ │ │ ├── LocalAuthorizationHandler.cs │ │ │ │ └── NoneRequirement.cs │ │ │ ├── Controllers │ │ │ │ ├── ApplicationController.cs │ │ │ │ ├── ApplicationDataController.cs │ │ │ │ ├── ApplicationSnapshotController.cs │ │ │ │ ├── Config │ │ │ │ │ ├── ProjectsController.cs │ │ │ │ │ ├── WorkflowSectionsController.cs │ │ │ │ │ ├── WorkflowSequencesController.cs │ │ │ │ │ └── WorkflowsController.cs │ │ │ │ ├── Deserializer │ │ │ │ │ └── HandlerResponseDeserializer.cs │ │ │ │ ├── ErrorsController.cs │ │ │ │ ├── FeedbackController.cs │ │ │ │ ├── FileController.cs │ │ │ │ ├── PagesController.cs │ │ │ │ ├── SectionsController.cs │ │ │ │ ├── SequencesController.cs │ │ │ │ ├── StorageMigrationController.cs │ │ │ │ └── WorkflowsController.cs │ │ │ ├── Infrastructure │ │ │ │ ├── ApiError.cs │ │ │ │ ├── ApiExplorerGroupConvention.cs │ │ │ │ ├── BadRequestError.cs │ │ │ │ ├── NotFoundError.cs │ │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ │ ├── SqlTokenGenerator.cs │ │ │ │ └── UnprocessableEntityError.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SFA.DAS.QnA.Api.csproj │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ ├── nlog.config │ │ │ └── web.config │ │ │ ├── SFA.DAS.QnA.Application.UnitTests │ │ │ ├── CommandsTests │ │ │ │ ├── ApplicationDataValidatorTests │ │ │ │ │ ├── When_valid_applicationData_has_extra_properties.cs │ │ │ │ │ ├── When_valid_applicationData_is_missing_a_property.cs │ │ │ │ │ └── When_valid_applicationData_supplied.cs │ │ │ │ ├── CreateSnapshotTests │ │ │ │ │ ├── CreateSnapshotTestBase.cs │ │ │ │ │ ├── When_application_exists.cs │ │ │ │ │ └── When_application_not_found.cs │ │ │ │ ├── FindNextRequiredActionTests │ │ │ │ │ ├── FindNextRequiredActionTestsBase.cs │ │ │ │ │ ├── When_next_page_has_a_NotRequiredCondition.cs │ │ │ │ │ └── When_next_page_has_no_NotRequiredConditions.cs │ │ │ │ ├── ResetPageAnswersBySectionNoHandlerTests │ │ │ │ │ ├── ResetPageAnswersBySectionNoTestBase.cs │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── ResetPageAnswersHandlerTests │ │ │ │ │ ├── ResetPageAnswersTestBase.cs │ │ │ │ │ ├── When_page_found.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── ResetSectionAnswersHandlerTests │ │ │ │ │ ├── ResetSectionAnswersTestBase.cs │ │ │ │ │ ├── When_section_found.cs │ │ │ │ │ └── When_section_not_found.cs │ │ │ │ ├── SetPageAnswersTests │ │ │ │ │ ├── SetPageAnswersTestBase.cs │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ ├── When_answer_doesnt_relate_to_a_question.cs │ │ │ │ │ ├── When_incorrect_amount_of_answers_specified.cs │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ ├── When_page_contains_fileupload_question.cs │ │ │ │ │ ├── When_page_contains_only_fileupload_questions.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── StartApplicationTests │ │ │ │ │ ├── StartApplicationTestBase.cs │ │ │ │ │ ├── When_StartApplication_handled.cs │ │ │ │ │ └── When_StartApplication_handled_with_nonexistant_workflowtype.cs │ │ │ │ ├── SubmitPageOfFilesHandlerTests │ │ │ │ │ ├── SubmitPageOfFilesTestBase.cs │ │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ │ ├── When_file_doesnt_relate_to_a_question.cs │ │ │ │ │ ├── When_files_specified_is_empty.cs │ │ │ │ │ ├── When_files_specified_is_null.cs │ │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ │ ├── When_page_contains_mixture_of_question_types.cs │ │ │ │ │ └── When_page_not_found.cs │ │ │ │ ├── UpsertFeedbackTests │ │ │ │ │ ├── When_Feedback_exists.cs │ │ │ │ │ └── When_Feedback_is_new.cs │ │ │ │ └── Workflows │ │ │ │ │ ├── CreateWorkflowTests │ │ │ │ │ └── When_workflow_is_created.cs │ │ │ │ │ └── UpsertWorkflowTests │ │ │ │ │ └── When_upsert_called_with_new_workflow.cs │ │ │ ├── DataContextHelpers.cs │ │ │ ├── Handlers │ │ │ │ └── ResetPagesToIncompleteHandlerTests.cs │ │ │ ├── QueriesTests │ │ │ │ ├── CanUpdatePageBySectionNoTests │ │ │ │ │ ├── CanUpdatePageBySectionNoTestBase.cs │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled.cs │ │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ └── When_CanUpdatePageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ ├── CanUpdatePageTests │ │ │ │ │ ├── CanUpdatePageTestBase.cs │ │ │ │ │ ├── When_CanUpdatePage_handled.cs │ │ │ │ │ ├── When_CanUpdatePage_handled_for_non_existent_page.cs │ │ │ │ │ └── When_CanUpdatePage_handled_for_non_existent_section.cs │ │ │ │ ├── GetCurrentSequenceTests │ │ │ │ │ ├── GetCurrentSequenceTestBase.cs │ │ │ │ │ ├── When_GetCurrentSequence_handled.cs │ │ │ │ │ └── When_GetCurrentSequence_handled_for_non_existent_applicationId.cs │ │ │ │ ├── GetPageBySectionNoTests │ │ │ │ │ ├── GetPageBySectionNoTestBase.cs │ │ │ │ │ ├── When_GetPageBySectionNo_handled.cs │ │ │ │ │ ├── When_GetPageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ │ └── When_GetPageBySectionNo_handled_for_non_existent_section.cs │ │ │ │ ├── GetPageTests │ │ │ │ │ ├── GetPageTestBase.cs │ │ │ │ │ ├── When_GetPage_handled.cs │ │ │ │ │ ├── When_GetPage_handled_for_non_existent_page.cs │ │ │ │ │ └── When_GetPage_handled_for_non_existent_section.cs │ │ │ │ ├── GetSectionTests │ │ │ │ │ └── When_section_has_pages_to_be_hidden.cs │ │ │ │ ├── GetSectionsTests │ │ │ │ │ ├── GetSectionsTestBase.cs │ │ │ │ │ ├── When_GetSections_handled.cs │ │ │ │ │ └── When_GetSections_handled_for_non_existant_application.cs │ │ │ │ ├── GetSequencesTests │ │ │ │ │ ├── GetSequencesTestBase.cs │ │ │ │ │ ├── When_GetSequences_handled.cs │ │ │ │ │ └── When_GetSequences_handled_for_non_existant_application.cs │ │ │ │ └── GetWorkflowsHandlerTests │ │ │ │ │ └── When_GetWorkflows_handled.cs │ │ │ ├── SFA.DAS.QnA.Application.UnitTests.csproj │ │ │ ├── ServiceTests │ │ │ │ ├── NotRequiredProcessorNotRequiredTests.cs │ │ │ │ ├── NotRequiredProcessorPagesWithDoesNotContainTests.cs │ │ │ │ ├── NotRequiredProcessorPagesWithoutNotRequiredContainsAllOfTests.cs │ │ │ │ └── NotRequiredProcessorPagesWithoutNotRequiredIsOneOfTests.cs │ │ │ └── Validators │ │ │ │ ├── AddressValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── ComplexRadioTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateInFutureValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateNotInFutureValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── DateValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── EmailTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── EmailValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── FileContentValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── FileTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MaxLengthValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MaxWordCountValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MinLengthValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MinWordCountValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MonthAndYearNotInFutureValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MonthAndYearTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── MonthAndYearValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── NumberTypeValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── NumberValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── RegexValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ ├── RequiredValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ │ └── UrlValidatorTests │ │ │ │ └── When_Validate_Called.cs │ │ │ ├── SFA.DAS.QnA.Application │ │ │ ├── Commands │ │ │ │ ├── AddPageAnswer │ │ │ │ │ ├── AddPageAnswerHandler.cs │ │ │ │ │ ├── AddPageAnswerRequest.cs │ │ │ │ │ └── PageHandlerBase.cs │ │ │ │ ├── AnswerValidator.cs │ │ │ │ ├── CreateSnapshot │ │ │ │ │ ├── CreateSnapshotHandler.cs │ │ │ │ │ └── CreateSnapshotRequest.cs │ │ │ │ ├── FileContentValidator.cs │ │ │ │ ├── Files │ │ │ │ │ ├── ConfigKeyProvider.cs │ │ │ │ │ ├── ContainerHelpers.cs │ │ │ │ │ ├── DeleteFile │ │ │ │ │ │ └── DeleteFileRequest.cs │ │ │ │ │ ├── DownloadFile │ │ │ │ │ │ ├── DownloadFile.cs │ │ │ │ │ │ ├── DownloadFileBySectionNoHandler.cs │ │ │ │ │ │ ├── DownloadFileBySectionNoRequest.cs │ │ │ │ │ │ ├── DownloadFileHandler.cs │ │ │ │ │ │ ├── DownloadFileRequest.cs │ │ │ │ │ │ └── DownloadFileService.cs │ │ │ │ │ ├── EncryptionService.cs │ │ │ │ │ ├── IEncryptionService.cs │ │ │ │ │ ├── IKeyProvider.cs │ │ │ │ │ └── UploadFile │ │ │ │ │ │ ├── SubmitPageOfFilesHandler.cs │ │ │ │ │ │ └── SubmitPageOfFilesRequest.cs │ │ │ │ ├── IAnswerValidator.cs │ │ │ │ ├── IFileContentValidator.cs │ │ │ │ ├── PageFeedback │ │ │ │ │ ├── CompleteFeedbackWithinSequence │ │ │ │ │ │ ├── CompleteFeedbackWithinSequenceHandler.cs │ │ │ │ │ │ └── CompleteFeedbackWithinSequenceRequest.cs │ │ │ │ │ ├── DeleteFeedback │ │ │ │ │ │ ├── DeleteFeedbackHandler.cs │ │ │ │ │ │ └── DeleteFeedbackRequest.cs │ │ │ │ │ └── UpsertFeedback │ │ │ │ │ │ ├── UpsertFeedbackHandler.cs │ │ │ │ │ │ └── UpsertFeedbackRequest.cs │ │ │ │ ├── Projects │ │ │ │ │ ├── CreateProject │ │ │ │ │ │ ├── CreateProjectHandler.cs │ │ │ │ │ │ └── CreateProjectRequest.cs │ │ │ │ │ └── UpsertProject │ │ │ │ │ │ ├── UpsertProjectHandler.cs │ │ │ │ │ │ └── UpsertProjectRequest.cs │ │ │ │ ├── RemovePageAnswer │ │ │ │ │ ├── RemovePageAnswerHandler.cs │ │ │ │ │ └── RemovePageAnswerRequest.cs │ │ │ │ ├── ResetPageAnswers │ │ │ │ │ ├── ResetPageAnswersBySectionNoHandler.cs │ │ │ │ │ ├── ResetPageAnswersBySectionNoRequest.cs │ │ │ │ │ ├── ResetPageAnswersHandler.cs │ │ │ │ │ └── ResetPageAnswersRequest.cs │ │ │ │ ├── ResetPagesToIncomplete │ │ │ │ │ ├── ResetPagesToIncompleteHandler.cs │ │ │ │ │ └── ResetPagesToIncompleteRequest.cs │ │ │ │ ├── ResetSectionAnswers │ │ │ │ │ ├── ResetSectionAnswersHandler.cs │ │ │ │ │ └── ResetSectionAnswersRequest.cs │ │ │ │ ├── SetApplicationData │ │ │ │ │ ├── SetApplicationDataHandler.cs │ │ │ │ │ └── SetApplicationDataRequest.cs │ │ │ │ ├── SetPageAnswers │ │ │ │ │ ├── SetAnswersBase.cs │ │ │ │ │ ├── SetPageAnswersBySectionNoRequest.cs │ │ │ │ │ ├── SetPageAnswersHandler.cs │ │ │ │ │ ├── SetPageAnswersHandlerBySectionNo.cs │ │ │ │ │ └── SetPageAnswersRequest.cs │ │ │ │ ├── SkipPage │ │ │ │ │ ├── SkipPageBySectionNoHandler.cs │ │ │ │ │ ├── SkipPageBySectionNoRequest.cs │ │ │ │ │ ├── SkipPageHandler.cs │ │ │ │ │ └── SkipPageRequest.cs │ │ │ │ ├── StartApplication │ │ │ │ │ ├── IApplicationDataValidator.cs │ │ │ │ │ └── StartApplicationHandler.cs │ │ │ │ ├── WorkflowSections │ │ │ │ │ ├── CreateWorkflowSection │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ └── CreateWorkflowSectionRequest.cs │ │ │ │ │ └── UpsertWorkflowSection │ │ │ │ │ │ ├── UpsertWorkflowSectionHandler.cs │ │ │ │ │ │ └── UpsertWorkflowSectionRequest.cs │ │ │ │ ├── WorkflowSequences │ │ │ │ │ ├── CreateWorkflowSequence │ │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ │ └── CreateWorkflowSequenceRequest.cs │ │ │ │ │ └── UpsertWorkflowSequence │ │ │ │ │ │ ├── UpsertWorkflowSequenceHandler.cs │ │ │ │ │ │ └── UpsertWorkflowSequenceRequest.cs │ │ │ │ └── Workflows │ │ │ │ │ ├── CreateWorkflow │ │ │ │ │ ├── CreateWorkflowHandler.cs │ │ │ │ │ └── CreateWorkflowRequest.cs │ │ │ │ │ └── UpsertWorkflow │ │ │ │ │ ├── UpsertWorkflowHandler.cs │ │ │ │ │ └── UpsertWorkflowRequest.cs │ │ │ ├── Mappings │ │ │ │ └── ApplicationsProfile.cs │ │ │ ├── Queries │ │ │ │ ├── ApplicationData │ │ │ │ │ └── GetApplicationData │ │ │ │ │ │ ├── GetApplicationDataHandler.cs │ │ │ │ │ │ ├── GetApplicationDataRequest.cs │ │ │ │ │ │ ├── GetQuestionTagDataHandler.cs │ │ │ │ │ │ └── GetQuestionTagDataRequest.cs │ │ │ │ ├── GetWorkflows │ │ │ │ │ ├── GetWorkflowsHandler.cs │ │ │ │ │ └── GetWorkflowsRequest.cs │ │ │ │ ├── Projects │ │ │ │ │ ├── GetProject │ │ │ │ │ │ ├── GetProjectHandler.cs │ │ │ │ │ │ └── GetProjectRequest.cs │ │ │ │ │ └── GetProjects │ │ │ │ │ │ ├── GetProjectsHandler.cs │ │ │ │ │ │ └── GetProjectsRequest.cs │ │ │ │ ├── Sections │ │ │ │ │ ├── CanUpdatePage │ │ │ │ │ │ ├── CanUpdatePageBySectionNoHandler.cs │ │ │ │ │ │ ├── CanUpdatePageBySectionNoRequest.cs │ │ │ │ │ │ ├── CanUpdatePageHandler.cs │ │ │ │ │ │ └── CanUpdatePageRequest.cs │ │ │ │ │ ├── GetPage │ │ │ │ │ │ ├── GetPageBySectionNoHandler.cs │ │ │ │ │ │ ├── GetPageBySectionNoRequest.cs │ │ │ │ │ │ ├── GetPageHandler.cs │ │ │ │ │ │ └── GetPageRequest.cs │ │ │ │ │ ├── GetSection │ │ │ │ │ │ ├── GetSectionBySectionNoHandler.cs │ │ │ │ │ │ ├── GetSectionBySectionNoRequest.cs │ │ │ │ │ │ ├── GetSectionHandler.cs │ │ │ │ │ │ └── GetSectionRequest.cs │ │ │ │ │ ├── GetSections │ │ │ │ │ │ ├── GetSectionsHandler.cs │ │ │ │ │ │ └── GetSectionsRequest.cs │ │ │ │ │ └── GetSequenceSections │ │ │ │ │ │ ├── GetSequenceSectionsHandler.cs │ │ │ │ │ │ └── GetSequenceSectionsRequest.cs │ │ │ │ ├── Sequences │ │ │ │ │ ├── GetCurrentSequence │ │ │ │ │ │ ├── GetCurrentSequenceHandler.cs │ │ │ │ │ │ └── GetCurrentSequenceRequest.cs │ │ │ │ │ ├── GetSequence │ │ │ │ │ │ ├── GetSequenceBySequenceNoHandler.cs │ │ │ │ │ │ ├── GetSequenceBySequenceNoRequest.cs │ │ │ │ │ │ ├── GetSequenceHandler.cs │ │ │ │ │ │ └── GetSequenceRequest.cs │ │ │ │ │ └── GetSequences │ │ │ │ │ │ ├── GetSequencesHandler.cs │ │ │ │ │ │ └── GetSequencesRequest.cs │ │ │ │ ├── WorkflowSections │ │ │ │ │ ├── GetWorkflowSection │ │ │ │ │ │ ├── GetWorkflowSectionHandler.cs │ │ │ │ │ │ └── GetWorkflowSectionRequest.cs │ │ │ │ │ └── GetWorkflowSections │ │ │ │ │ │ ├── GetWorkflowSectionsHandler.cs │ │ │ │ │ │ └── GetWorkflowSectionsRequest.cs │ │ │ │ ├── WorkflowSequences │ │ │ │ │ ├── GetWorkflowSequence │ │ │ │ │ │ ├── GetWorkflowSequenceHandler.cs │ │ │ │ │ │ └── GetWorkflowSequenceRequest.cs │ │ │ │ │ └── GetWorkflowSequences │ │ │ │ │ │ ├── GetWorkflowSequencesHandler.cs │ │ │ │ │ │ └── GetWorkflowSequencesRequest.cs │ │ │ │ └── Workflows │ │ │ │ │ └── GetWorkflow │ │ │ │ │ └── GetWorkflowRequest.cs │ │ │ ├── SFA.DAS.QnA.Application.csproj │ │ │ ├── Services │ │ │ │ ├── INotRequiredProcessor.cs │ │ │ │ ├── ITagProcessingService.cs │ │ │ │ ├── NotRequiredProcessor.cs │ │ │ │ └── TagProcessingService.cs │ │ │ ├── SystemTime.cs │ │ │ └── Validators │ │ │ │ ├── AddressBuildingAndStreetRequiredValidator.cs │ │ │ │ ├── AddressPostcodeRequiredValidator.cs │ │ │ │ ├── AddressRequiredValidatorBase.cs │ │ │ │ ├── AddressTownOrCityRequiredValidator.cs │ │ │ │ ├── ComplexCheckboxListTypeValidator.cs │ │ │ │ ├── ComplexRadioTypeValidator.cs │ │ │ │ ├── DateInFutureValidator.cs │ │ │ │ ├── DateNotInFutureValidator.cs │ │ │ │ ├── DateTypeValidator.cs │ │ │ │ ├── DateValidator.cs │ │ │ │ ├── EmailTypeValidator.cs │ │ │ │ ├── EmailValidator.cs │ │ │ │ ├── FileTypeValidator.cs │ │ │ │ ├── IValidator.cs │ │ │ │ ├── IValidatorFactory.cs │ │ │ │ ├── MaxLengthValidator.cs │ │ │ │ ├── MaxWordCountValidator.cs │ │ │ │ ├── MinLengthValidator.cs │ │ │ │ ├── MinWordCountValidator.cs │ │ │ │ ├── MonthAndYearNotInFutureValidator.cs │ │ │ │ ├── MonthAndYearTypeValidator.cs │ │ │ │ ├── MonthAndYearValidator.cs │ │ │ │ ├── NullValidator.cs │ │ │ │ ├── NumberTypeValidator.cs │ │ │ │ ├── NumberValidator.cs │ │ │ │ ├── RegexValidator.cs │ │ │ │ ├── RegisteredCharityNumberValidator.cs │ │ │ │ ├── RequiredValidator.cs │ │ │ │ ├── SimpleRadioNotNullValidator.cs │ │ │ │ ├── UrlValidator.cs │ │ │ │ ├── ValidationErrorDetail.cs │ │ │ │ └── ValidatorFactory.cs │ │ │ ├── SFA.DAS.QnA.Configuration │ │ │ ├── Config │ │ │ │ ├── AzureActiveDirectoryConfiguration.cs │ │ │ │ ├── FileStorageConfig.cs │ │ │ │ └── QnAConfig.cs │ │ │ ├── Infrastructure │ │ │ │ ├── AzureTableStorageConfigurationExtensions.cs │ │ │ │ ├── AzureTableStorageConfigurationProvider.cs │ │ │ │ ├── AzureTableStorageConfigurationSource.cs │ │ │ │ └── ConfigurationItem.cs │ │ │ └── SFA.DAS.QnA.Configuration.csproj │ │ │ ├── SFA.DAS.QnA.Data │ │ │ ├── Entities │ │ │ │ ├── Application.cs │ │ │ │ ├── ApplicationSection.cs │ │ │ │ ├── ApplicationSequence.cs │ │ │ │ ├── ApplicationStatus.cs │ │ │ │ ├── EntityBase.cs │ │ │ │ └── WorkflowStatus.cs │ │ │ ├── QnaDataContext.cs │ │ │ └── SFA.DAS.QnA.Data.csproj │ │ │ ├── SFA.DAS.QnA.Database │ │ │ ├── ApplicationDataSchema │ │ │ │ └── Assessor.json │ │ │ ├── SFA.DAS.QnA.Database.sqlproj │ │ │ ├── Script.PostDeployment.sql │ │ │ ├── Tables │ │ │ │ ├── ApplicationSections.sql │ │ │ │ ├── ApplicationSequences.sql │ │ │ │ ├── Applications.sql │ │ │ │ ├── Projects.sql │ │ │ │ ├── WorkflowSections.sql │ │ │ │ ├── WorkflowSequences.sql │ │ │ │ └── Workflows.sql │ │ │ └── projects │ │ │ │ ├── Inject-projects.sql │ │ │ │ ├── epaoall │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ ├── project.json │ │ │ │ └── sections │ │ │ │ │ ├── section1.json │ │ │ │ │ ├── section2.json │ │ │ │ │ ├── section3.json │ │ │ │ │ ├── section4.json │ │ │ │ │ ├── section5.json │ │ │ │ │ └── section6.json │ │ │ │ └── roatp │ │ │ │ ├── ApplicationDataSchema.json │ │ │ │ ├── project.json │ │ │ │ └── sections │ │ │ │ ├── section0.1.json │ │ │ │ ├── section1.1.json │ │ │ │ ├── section1.2.json │ │ │ │ ├── section1.3.json │ │ │ │ ├── section1.4.json │ │ │ │ ├── section1.5.json │ │ │ │ ├── section2.1.json │ │ │ │ ├── section2.2.json │ │ │ │ ├── section2.3.json │ │ │ │ ├── section3.1.json │ │ │ │ ├── section3.2.json │ │ │ │ ├── section3.3.json │ │ │ │ ├── section3.4.json │ │ │ │ ├── section4.1.json │ │ │ │ ├── section4.2.json │ │ │ │ ├── section4.3.json │ │ │ │ ├── section4.4.json │ │ │ │ ├── section4.5.json │ │ │ │ ├── section4.6.json │ │ │ │ ├── section5.1.json │ │ │ │ ├── section5.2.json │ │ │ │ ├── section5.3.json │ │ │ │ ├── section5.4.json │ │ │ │ ├── section5.5.json │ │ │ │ ├── section5.6.json │ │ │ │ ├── section5.7.json │ │ │ │ ├── section5.8.json │ │ │ │ ├── section6.1.json │ │ │ │ ├── section6.2.json │ │ │ │ ├── section6.3.json │ │ │ │ ├── section6.4.json │ │ │ │ ├── section6.5.json │ │ │ │ ├── section6.6.json │ │ │ │ ├── section6.7.json │ │ │ │ ├── section7.1.json │ │ │ │ ├── section7.2.json │ │ │ │ ├── section7.3.json │ │ │ │ ├── section7.4.json │ │ │ │ ├── section7.5.json │ │ │ │ ├── section7.6.json │ │ │ │ ├── section7.7.json │ │ │ │ ├── section8.1.json │ │ │ │ ├── section8.2.json │ │ │ │ ├── section8.3.json │ │ │ │ ├── section8.4.json │ │ │ │ ├── section9.1.json │ │ │ │ ├── section9.2.json │ │ │ │ └── section9.3.json │ │ │ └── SFA.DAS.QnA.sln │ └── target │ │ ├── .github │ │ └── CODEOWNERS │ │ ├── .gitignore │ │ ├── GitVersion.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── azure-pipelines.yml │ │ ├── azure │ │ └── template.json │ │ ├── pipeline-templates │ │ └── job │ │ │ └── code-build.yml │ │ └── src │ │ ├── QnA.postman_collection.json │ │ ├── SFA.DAS.QnA.Api.Client │ │ ├── QnaApiClient.cs │ │ ├── QnaApiClientExtensions.cs │ │ ├── QnaApiConfig.cs │ │ └── SFA.DAS.QnA.Api.Client.csproj │ │ ├── SFA.DAS.QnA.Api.Types │ │ ├── AddPageAnswerResponse.cs │ │ ├── CreateSnapshotResponse.cs │ │ ├── HandlerResponse.cs │ │ ├── Page │ │ │ ├── Answer.cs │ │ │ ├── Condition.cs │ │ │ ├── Feedback.cs │ │ │ ├── FinancialApplicationGrade.cs │ │ │ ├── Input.cs │ │ │ ├── Next.cs │ │ │ ├── NotRequiredCondition.cs │ │ │ ├── Option.cs │ │ │ ├── Page.cs │ │ │ ├── PageDetails.cs │ │ │ ├── PageOfAnswers.cs │ │ │ ├── QnAData.cs │ │ │ ├── Question.cs │ │ │ ├── TabularData.cs │ │ │ ├── TabularDataRow.cs │ │ │ └── ValidationDefinition.cs │ │ ├── Project.cs │ │ ├── RemovePageAnswerResponse.cs │ │ ├── ResetPageAnswersResponse.cs │ │ ├── ResetSectionAnswersResponse.cs │ │ ├── SFA.DAS.QnA.Api.Types.csproj │ │ ├── Section.cs │ │ ├── Sequence.cs │ │ ├── SetPageAnswersResponse.cs │ │ ├── SkipPageResponse.cs │ │ ├── StartApplicationRequest.cs │ │ ├── StartApplicationResponse.cs │ │ ├── Workflow.cs │ │ ├── WorkflowSection.cs │ │ └── WorkflowSequence.cs │ │ ├── SFA.DAS.QnA.Api.UnitTests │ │ ├── ApplicationControllerTests │ │ │ └── StartApplication │ │ │ │ └── When_StartApplication_is_called.cs │ │ ├── ApplicationDataControllerTests │ │ │ ├── WhenGettingApplicationData.cs │ │ │ └── WhenPostingApplicationData.cs │ │ ├── DeserializerTests │ │ │ ├── WhenDeserializingApplicationData.cs │ │ │ └── test.json │ │ ├── FileControllerTests │ │ │ ├── When_download_file_or_zip_of_files_is_called.cs │ │ │ └── When_upload_is_called.cs │ │ ├── PagesControllerTests │ │ │ └── PagesControllerTests.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SFA.DAS.QnA.Api.UnitTests.csproj │ │ ├── SectionsControllerTests │ │ │ └── GetSection │ │ │ │ ├── When_GetSection_is_called.cs │ │ │ │ └── When_GetSection_is_called_with_a_sectionNo.cs │ │ ├── SequencesControllerTests │ │ │ ├── GetSequence │ │ │ │ ├── When_GetSequence_is_called.cs │ │ │ │ └── When_GetSequence_is_called_with_a_sectionNo.cs │ │ │ └── GetSequences │ │ │ │ ├── When_GetSequences_called_for_application_with_no_sequences.cs │ │ │ │ ├── When_GetSequences_called_for_non-existant_application.cs │ │ │ │ └── When_GetSequences_is_called.cs │ │ └── WorkflowControllerTests │ │ │ └── When_GetWorkflows_is_called.cs │ │ ├── SFA.DAS.QnA.Api.Views │ │ ├── SFA.DAS.QnA.Api.Views.csproj │ │ ├── ViewHelpers.cs │ │ └── Views │ │ │ └── QuestionPartials │ │ │ ├── _Address.cshtml │ │ │ ├── _Checkbox.cshtml │ │ │ ├── _CheckboxList.cshtml │ │ │ ├── _ComplexCheckboxList.cshtml │ │ │ ├── _ComplexRadio.cshtml │ │ │ ├── _Date.cshtml │ │ │ ├── _Email.cshtml │ │ │ ├── _FileUpload.cshtml │ │ │ ├── _Hidden.cshtml │ │ │ ├── _LongTextarea.cshtml │ │ │ ├── _MonthAndYear.cshtml │ │ │ ├── _Number.cshtml │ │ │ ├── _Postcode.cshtml │ │ │ ├── _Radio.cshtml │ │ │ ├── _TabularData.cshtml │ │ │ ├── _Text.cshtml │ │ │ └── _Textarea.cshtml │ │ ├── SFA.DAS.QnA.Api │ │ ├── Authentication │ │ │ ├── AuthenticationExtensions.cs │ │ │ └── AzureAdScopeClaimTransformation.cs │ │ ├── Authorization │ │ │ ├── AuthorizationExtensions.cs │ │ │ ├── AuthorizationPolicyBuilderExtensions.cs │ │ │ ├── LocalAuthorizationHandler.cs │ │ │ └── NoneRequirement.cs │ │ ├── Controllers │ │ │ ├── ApplicationController.cs │ │ │ ├── ApplicationDataController.cs │ │ │ ├── ApplicationSnapshotController.cs │ │ │ ├── Config │ │ │ │ ├── ProjectsController.cs │ │ │ │ ├── WorkflowSectionsController.cs │ │ │ │ ├── WorkflowSequencesController.cs │ │ │ │ └── WorkflowsController.cs │ │ │ ├── Deserializer │ │ │ │ └── HandlerResponseDeserializer.cs │ │ │ ├── ErrorsController.cs │ │ │ ├── FeedbackController.cs │ │ │ ├── FileController.cs │ │ │ ├── PagesController.cs │ │ │ ├── SectionsController.cs │ │ │ ├── SequencesController.cs │ │ │ ├── StorageMigrationController.cs │ │ │ └── WorkflowsController.cs │ │ ├── Infrastructure │ │ │ ├── ApiError.cs │ │ │ ├── ApiExplorerGroupConvention.cs │ │ │ ├── BadRequestError.cs │ │ │ ├── NotFoundError.cs │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ ├── SqlTokenGenerator.cs │ │ │ └── UnprocessableEntityError.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SFA.DAS.QnA.Api.csproj │ │ ├── Startup.cs │ │ ├── appsettings.json │ │ ├── nlog.config │ │ └── web.config │ │ ├── SFA.DAS.QnA.Application.UnitTests │ │ ├── CommandsTests │ │ │ ├── ApplicationDataValidatorTests │ │ │ │ ├── When_valid_applicationData_has_extra_properties.cs │ │ │ │ ├── When_valid_applicationData_is_missing_a_property.cs │ │ │ │ └── When_valid_applicationData_supplied.cs │ │ │ ├── CreateSnapshotTests │ │ │ │ ├── CreateSnapshotTestBase.cs │ │ │ │ ├── When_application_exists.cs │ │ │ │ └── When_application_not_found.cs │ │ │ ├── FindNextRequiredActionTests │ │ │ │ ├── FindNextRequiredActionTestsBase.cs │ │ │ │ ├── When_next_page_has_a_NotRequiredCondition.cs │ │ │ │ └── When_next_page_has_no_NotRequiredConditions.cs │ │ │ ├── ResetPageAnswersBySectionNoHandlerTests │ │ │ │ ├── ResetPageAnswersBySectionNoTestBase.cs │ │ │ │ ├── When_page_found.cs │ │ │ │ └── When_page_not_found.cs │ │ │ ├── ResetPageAnswersHandlerTests │ │ │ │ ├── ResetPageAnswersTestBase.cs │ │ │ │ ├── When_page_found.cs │ │ │ │ └── When_page_not_found.cs │ │ │ ├── ResetSectionAnswersHandlerTests │ │ │ │ ├── ResetSectionAnswersTestBase.cs │ │ │ │ ├── When_section_found.cs │ │ │ │ └── When_section_not_found.cs │ │ │ ├── SetPageAnswersTests │ │ │ │ ├── SetPageAnswersTestBase.cs │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ ├── When_answer_doesnt_relate_to_a_question.cs │ │ │ │ ├── When_incorrect_amount_of_answers_specified.cs │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ ├── When_page_contains_fileupload_question.cs │ │ │ │ ├── When_page_contains_only_fileupload_questions.cs │ │ │ │ └── When_page_not_found.cs │ │ │ ├── StartApplicationTests │ │ │ │ ├── StartApplicationTestBase.cs │ │ │ │ ├── When_StartApplication_handled.cs │ │ │ │ └── When_StartApplication_handled_with_nonexistant_workflowtype.cs │ │ │ ├── SubmitPageOfFilesHandlerTests │ │ │ │ ├── SubmitPageOfFilesTestBase.cs │ │ │ │ ├── When_a_branching_condition_is_question_tag.cs │ │ │ │ ├── When_file_doesnt_relate_to_a_question.cs │ │ │ │ ├── When_files_specified_is_empty.cs │ │ │ │ ├── When_files_specified_is_null.cs │ │ │ │ ├── When_page_allows_multiple_answers.cs │ │ │ │ ├── When_page_contains_mixture_of_question_types.cs │ │ │ │ └── When_page_not_found.cs │ │ │ ├── UpsertFeedbackTests │ │ │ │ ├── When_Feedback_exists.cs │ │ │ │ └── When_Feedback_is_new.cs │ │ │ └── Workflows │ │ │ │ ├── CreateWorkflowTests │ │ │ │ └── When_workflow_is_created.cs │ │ │ │ └── UpsertWorkflowTests │ │ │ │ └── When_upsert_called_with_new_workflow.cs │ │ ├── DataContextHelpers.cs │ │ ├── Handlers │ │ │ └── ResetPagesToIncompleteHandlerTests.cs │ │ ├── QueriesTests │ │ │ ├── CanUpdatePageBySectionNoTests │ │ │ │ ├── CanUpdatePageBySectionNoTestBase.cs │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled.cs │ │ │ │ ├── When_CanUpdatePageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ └── When_CanUpdatePageBySectionNo_handled_for_non_existent_section.cs │ │ │ ├── CanUpdatePageTests │ │ │ │ ├── CanUpdatePageTestBase.cs │ │ │ │ ├── When_CanUpdatePage_handled.cs │ │ │ │ ├── When_CanUpdatePage_handled_for_non_existent_page.cs │ │ │ │ └── When_CanUpdatePage_handled_for_non_existent_section.cs │ │ │ ├── GetCurrentSequenceTests │ │ │ │ ├── GetCurrentSequenceTestBase.cs │ │ │ │ ├── When_GetCurrentSequence_handled.cs │ │ │ │ └── When_GetCurrentSequence_handled_for_non_existent_applicationId.cs │ │ │ ├── GetPageBySectionNoTests │ │ │ │ ├── GetPageBySectionNoTestBase.cs │ │ │ │ ├── When_GetPageBySectionNo_handled.cs │ │ │ │ ├── When_GetPageBySectionNo_handled_for_non_existent_page.cs │ │ │ │ └── When_GetPageBySectionNo_handled_for_non_existent_section.cs │ │ │ ├── GetPageTests │ │ │ │ ├── GetPageTestBase.cs │ │ │ │ ├── When_GetPage_handled.cs │ │ │ │ ├── When_GetPage_handled_for_non_existent_page.cs │ │ │ │ └── When_GetPage_handled_for_non_existent_section.cs │ │ │ ├── GetSectionTests │ │ │ │ └── When_section_has_pages_to_be_hidden.cs │ │ │ ├── GetSectionsTests │ │ │ │ ├── GetSectionsTestBase.cs │ │ │ │ ├── When_GetSections_handled.cs │ │ │ │ └── When_GetSections_handled_for_non_existant_application.cs │ │ │ ├── GetSequencesTests │ │ │ │ ├── GetSequencesTestBase.cs │ │ │ │ ├── When_GetSequences_handled.cs │ │ │ │ └── When_GetSequences_handled_for_non_existant_application.cs │ │ │ └── GetWorkflowsHandlerTests │ │ │ │ └── When_GetWorkflows_handled.cs │ │ ├── SFA.DAS.QnA.Application.UnitTests.csproj │ │ ├── ServiceTests │ │ │ ├── NotRequiredProcessorNotRequiredTests.cs │ │ │ ├── NotRequiredProcessorPagesWithDoesNotContainTests.cs │ │ │ ├── NotRequiredProcessorPagesWithoutNotRequiredContainsAllOfTests.cs │ │ │ └── NotRequiredProcessorPagesWithoutNotRequiredIsOneOfTests.cs │ │ └── Validators │ │ │ ├── AddressValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── ComplexRadioTypeValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── DateInFutureValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── DateNotInFutureValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── DateTypeValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── DateValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── EmailTypeValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── EmailValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── FileContentValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── FileTypeValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── MaxLengthValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── MaxWordCountValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── MinLengthValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── MinWordCountValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── MonthAndYearNotInFutureValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── MonthAndYearTypeValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── MonthAndYearValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── NumberTypeValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── NumberValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── RegexValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ ├── RequiredValidatorTests │ │ │ └── When_Validate_Called.cs │ │ │ └── UrlValidatorTests │ │ │ └── When_Validate_Called.cs │ │ ├── SFA.DAS.QnA.Application │ │ ├── Commands │ │ │ ├── AddPageAnswer │ │ │ │ ├── AddPageAnswerHandler.cs │ │ │ │ ├── AddPageAnswerRequest.cs │ │ │ │ └── PageHandlerBase.cs │ │ │ ├── AnswerValidator.cs │ │ │ ├── CreateSnapshot │ │ │ │ ├── CreateSnapshotHandler.cs │ │ │ │ └── CreateSnapshotRequest.cs │ │ │ ├── FileContentValidator.cs │ │ │ ├── Files │ │ │ │ ├── ConfigKeyProvider.cs │ │ │ │ ├── ContainerHelpers.cs │ │ │ │ ├── DeleteFile │ │ │ │ │ └── DeleteFileRequest.cs │ │ │ │ ├── DownloadFile │ │ │ │ │ ├── DownloadFile.cs │ │ │ │ │ ├── DownloadFileBySectionNoHandler.cs │ │ │ │ │ ├── DownloadFileBySectionNoRequest.cs │ │ │ │ │ ├── DownloadFileHandler.cs │ │ │ │ │ ├── DownloadFileRequest.cs │ │ │ │ │ └── DownloadFileService.cs │ │ │ │ ├── EncryptionService.cs │ │ │ │ ├── IEncryptionService.cs │ │ │ │ ├── IKeyProvider.cs │ │ │ │ └── UploadFile │ │ │ │ │ ├── SubmitPageOfFilesHandler.cs │ │ │ │ │ └── SubmitPageOfFilesRequest.cs │ │ │ ├── IAnswerValidator.cs │ │ │ ├── IFileContentValidator.cs │ │ │ ├── PageFeedback │ │ │ │ ├── CompleteFeedbackWithinSequence │ │ │ │ │ ├── CompleteFeedbackWithinSequenceHandler.cs │ │ │ │ │ └── CompleteFeedbackWithinSequenceRequest.cs │ │ │ │ ├── DeleteFeedback │ │ │ │ │ ├── DeleteFeedbackHandler.cs │ │ │ │ │ └── DeleteFeedbackRequest.cs │ │ │ │ └── UpsertFeedback │ │ │ │ │ ├── UpsertFeedbackHandler.cs │ │ │ │ │ └── UpsertFeedbackRequest.cs │ │ │ ├── Projects │ │ │ │ ├── CreateProject │ │ │ │ │ ├── CreateProjectHandler.cs │ │ │ │ │ └── CreateProjectRequest.cs │ │ │ │ └── UpsertProject │ │ │ │ │ ├── UpsertProjectHandler.cs │ │ │ │ │ └── UpsertProjectRequest.cs │ │ │ ├── RemovePageAnswer │ │ │ │ ├── RemovePageAnswerHandler.cs │ │ │ │ └── RemovePageAnswerRequest.cs │ │ │ ├── ResetPageAnswers │ │ │ │ ├── ResetPageAnswersBySectionNoHandler.cs │ │ │ │ ├── ResetPageAnswersBySectionNoRequest.cs │ │ │ │ ├── ResetPageAnswersHandler.cs │ │ │ │ └── ResetPageAnswersRequest.cs │ │ │ ├── ResetPagesToIncomplete │ │ │ │ ├── ResetPagesToIncompleteHandler.cs │ │ │ │ └── ResetPagesToIncompleteRequest.cs │ │ │ ├── ResetSectionAnswers │ │ │ │ ├── ResetSectionAnswersHandler.cs │ │ │ │ └── ResetSectionAnswersRequest.cs │ │ │ ├── SetApplicationData │ │ │ │ ├── SetApplicationDataHandler.cs │ │ │ │ └── SetApplicationDataRequest.cs │ │ │ ├── SetPageAnswers │ │ │ │ ├── SetAnswersBase.cs │ │ │ │ ├── SetPageAnswersBySectionNoRequest.cs │ │ │ │ ├── SetPageAnswersHandler.cs │ │ │ │ ├── SetPageAnswersHandlerBySectionNo.cs │ │ │ │ └── SetPageAnswersRequest.cs │ │ │ ├── SkipPage │ │ │ │ ├── SkipPageBySectionNoHandler.cs │ │ │ │ ├── SkipPageBySectionNoRequest.cs │ │ │ │ ├── SkipPageHandler.cs │ │ │ │ └── SkipPageRequest.cs │ │ │ ├── StartApplication │ │ │ │ ├── IApplicationDataValidator.cs │ │ │ │ └── StartApplicationHandler.cs │ │ │ ├── WorkflowSections │ │ │ │ ├── CreateWorkflowSection │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ └── CreateWorkflowSectionRequest.cs │ │ │ │ └── UpsertWorkflowSection │ │ │ │ │ ├── UpsertWorkflowSectionHandler.cs │ │ │ │ │ └── UpsertWorkflowSectionRequest.cs │ │ │ ├── WorkflowSequences │ │ │ │ ├── CreateWorkflowSequence │ │ │ │ │ ├── CreateWorkflowSectionHandler.cs │ │ │ │ │ └── CreateWorkflowSequenceRequest.cs │ │ │ │ └── UpsertWorkflowSequence │ │ │ │ │ ├── UpsertWorkflowSequenceHandler.cs │ │ │ │ │ └── UpsertWorkflowSequenceRequest.cs │ │ │ └── Workflows │ │ │ │ ├── CreateWorkflow │ │ │ │ ├── CreateWorkflowHandler.cs │ │ │ │ └── CreateWorkflowRequest.cs │ │ │ │ └── UpsertWorkflow │ │ │ │ ├── UpsertWorkflowHandler.cs │ │ │ │ └── UpsertWorkflowRequest.cs │ │ ├── Mappings │ │ │ └── ApplicationsProfile.cs │ │ ├── Queries │ │ │ ├── ApplicationData │ │ │ │ └── GetApplicationData │ │ │ │ │ ├── GetApplicationDataHandler.cs │ │ │ │ │ ├── GetApplicationDataRequest.cs │ │ │ │ │ ├── GetQuestionTagDataHandler.cs │ │ │ │ │ └── GetQuestionTagDataRequest.cs │ │ │ ├── GetWorkflows │ │ │ │ ├── GetWorkflowsHandler.cs │ │ │ │ └── GetWorkflowsRequest.cs │ │ │ ├── Projects │ │ │ │ ├── GetProject │ │ │ │ │ ├── GetProjectHandler.cs │ │ │ │ │ └── GetProjectRequest.cs │ │ │ │ └── GetProjects │ │ │ │ │ ├── GetProjectsHandler.cs │ │ │ │ │ └── GetProjectsRequest.cs │ │ │ ├── Sections │ │ │ │ ├── CanUpdatePage │ │ │ │ │ ├── CanUpdatePageBySectionNoHandler.cs │ │ │ │ │ ├── CanUpdatePageBySectionNoRequest.cs │ │ │ │ │ ├── CanUpdatePageHandler.cs │ │ │ │ │ └── CanUpdatePageRequest.cs │ │ │ │ ├── GetPage │ │ │ │ │ ├── GetPageBySectionNoHandler.cs │ │ │ │ │ ├── GetPageBySectionNoRequest.cs │ │ │ │ │ ├── GetPageHandler.cs │ │ │ │ │ └── GetPageRequest.cs │ │ │ │ ├── GetSection │ │ │ │ │ ├── GetSectionBySectionNoHandler.cs │ │ │ │ │ ├── GetSectionBySectionNoRequest.cs │ │ │ │ │ ├── GetSectionHandler.cs │ │ │ │ │ └── GetSectionRequest.cs │ │ │ │ ├── GetSections │ │ │ │ │ ├── GetSectionsHandler.cs │ │ │ │ │ └── GetSectionsRequest.cs │ │ │ │ └── GetSequenceSections │ │ │ │ │ ├── GetSequenceSectionsHandler.cs │ │ │ │ │ └── GetSequenceSectionsRequest.cs │ │ │ ├── Sequences │ │ │ │ ├── GetCurrentSequence │ │ │ │ │ ├── GetCurrentSequenceHandler.cs │ │ │ │ │ └── GetCurrentSequenceRequest.cs │ │ │ │ ├── GetSequence │ │ │ │ │ ├── GetSequenceBySequenceNoHandler.cs │ │ │ │ │ ├── GetSequenceBySequenceNoRequest.cs │ │ │ │ │ ├── GetSequenceHandler.cs │ │ │ │ │ └── GetSequenceRequest.cs │ │ │ │ └── GetSequences │ │ │ │ │ ├── GetSequencesHandler.cs │ │ │ │ │ └── GetSequencesRequest.cs │ │ │ ├── WorkflowSections │ │ │ │ ├── GetWorkflowSection │ │ │ │ │ ├── GetWorkflowSectionHandler.cs │ │ │ │ │ └── GetWorkflowSectionRequest.cs │ │ │ │ └── GetWorkflowSections │ │ │ │ │ ├── GetWorkflowSectionsHandler.cs │ │ │ │ │ └── GetWorkflowSectionsRequest.cs │ │ │ ├── WorkflowSequences │ │ │ │ ├── GetWorkflowSequence │ │ │ │ │ ├── GetWorkflowSequenceHandler.cs │ │ │ │ │ └── GetWorkflowSequenceRequest.cs │ │ │ │ └── GetWorkflowSequences │ │ │ │ │ ├── GetWorkflowSequencesHandler.cs │ │ │ │ │ └── GetWorkflowSequencesRequest.cs │ │ │ └── Workflows │ │ │ │ └── GetWorkflow │ │ │ │ └── GetWorkflowRequest.cs │ │ ├── SFA.DAS.QnA.Application.csproj │ │ ├── Services │ │ │ ├── INotRequiredProcessor.cs │ │ │ ├── ITagProcessingService.cs │ │ │ ├── NotRequiredProcessor.cs │ │ │ └── TagProcessingService.cs │ │ ├── SystemTime.cs │ │ └── Validators │ │ │ ├── AddressBuildingAndStreetRequiredValidator.cs │ │ │ ├── AddressPostcodeRequiredValidator.cs │ │ │ ├── AddressRequiredValidatorBase.cs │ │ │ ├── AddressTownOrCityRequiredValidator.cs │ │ │ ├── ComplexCheckboxListTypeValidator.cs │ │ │ ├── ComplexRadioTypeValidator.cs │ │ │ ├── DateInFutureValidator.cs │ │ │ ├── DateNotInFutureValidator.cs │ │ │ ├── DateTypeValidator.cs │ │ │ ├── DateValidator.cs │ │ │ ├── EmailTypeValidator.cs │ │ │ ├── EmailValidator.cs │ │ │ ├── FileTypeValidator.cs │ │ │ ├── IValidator.cs │ │ │ ├── IValidatorFactory.cs │ │ │ ├── MaxLengthValidator.cs │ │ │ ├── MaxWordCountValidator.cs │ │ │ ├── MinLengthValidator.cs │ │ │ ├── MinWordCountValidator.cs │ │ │ ├── MonthAndYearNotInFutureValidator.cs │ │ │ ├── MonthAndYearTypeValidator.cs │ │ │ ├── MonthAndYearValidator.cs │ │ │ ├── NullValidator.cs │ │ │ ├── NumberTypeValidator.cs │ │ │ ├── NumberValidator.cs │ │ │ ├── RegexValidator.cs │ │ │ ├── RegisteredCharityNumberValidator.cs │ │ │ ├── RequiredValidator.cs │ │ │ ├── SimpleRadioNotNullValidator.cs │ │ │ ├── UrlValidator.cs │ │ │ ├── ValidationErrorDetail.cs │ │ │ └── ValidatorFactory.cs │ │ ├── SFA.DAS.QnA.Configuration │ │ ├── Config │ │ │ ├── AzureActiveDirectoryConfiguration.cs │ │ │ ├── FileStorageConfig.cs │ │ │ └── QnAConfig.cs │ │ ├── Infrastructure │ │ │ ├── AzureTableStorageConfigurationExtensions.cs │ │ │ ├── AzureTableStorageConfigurationProvider.cs │ │ │ ├── AzureTableStorageConfigurationSource.cs │ │ │ └── ConfigurationItem.cs │ │ └── SFA.DAS.QnA.Configuration.csproj │ │ ├── SFA.DAS.QnA.Data │ │ ├── Entities │ │ │ ├── Application.cs │ │ │ ├── ApplicationSection.cs │ │ │ ├── ApplicationSequence.cs │ │ │ ├── ApplicationStatus.cs │ │ │ ├── EntityBase.cs │ │ │ └── WorkflowStatus.cs │ │ ├── QnaDataContext.cs │ │ └── SFA.DAS.QnA.Data.csproj │ │ ├── SFA.DAS.QnA.Database │ │ ├── ApplicationDataSchema │ │ │ └── Assessor.json │ │ ├── SFA.DAS.QnA.Database.sqlproj │ │ ├── Script.PostDeployment.sql │ │ ├── Tables │ │ │ ├── ApplicationSections.sql │ │ │ ├── ApplicationSequences.sql │ │ │ ├── Applications.sql │ │ │ ├── Projects.sql │ │ │ ├── WorkflowSections.sql │ │ │ ├── WorkflowSequences.sql │ │ │ └── Workflows.sql │ │ └── projects │ │ │ ├── Inject-projects.sql │ │ │ ├── epaoall │ │ │ ├── ApplicationDataSchema.json │ │ │ ├── project.json │ │ │ └── sections │ │ │ │ ├── section1.json │ │ │ │ ├── section2.json │ │ │ │ ├── section3.json │ │ │ │ ├── section4.json │ │ │ │ ├── section5.json │ │ │ │ └── section6.json │ │ │ └── roatp │ │ │ ├── ApplicationDataSchema.json │ │ │ ├── project.json │ │ │ └── sections │ │ │ ├── section0.1.json │ │ │ ├── section1.1.json │ │ │ ├── section1.2.json │ │ │ ├── section1.3.json │ │ │ ├── section1.4.json │ │ │ ├── section1.5.json │ │ │ ├── section2.1.json │ │ │ ├── section2.2.json │ │ │ ├── section2.3.json │ │ │ ├── section3.1.json │ │ │ ├── section3.2.json │ │ │ ├── section3.3.json │ │ │ ├── section3.4.json │ │ │ ├── section4.1.json │ │ │ ├── section4.2.json │ │ │ ├── section4.3.json │ │ │ ├── section4.4.json │ │ │ ├── section4.5.json │ │ │ ├── section4.6.json │ │ │ ├── section5.1.json │ │ │ ├── section5.2.json │ │ │ ├── section5.3.json │ │ │ ├── section5.4.json │ │ │ ├── section5.5.json │ │ │ ├── section5.6.json │ │ │ ├── section5.7.json │ │ │ ├── section5.8.json │ │ │ ├── section6.1.json │ │ │ ├── section6.2.json │ │ │ ├── section6.3.json │ │ │ ├── section6.4.json │ │ │ ├── section6.5.json │ │ │ ├── section6.6.json │ │ │ ├── section6.7.json │ │ │ ├── section7.1.json │ │ │ ├── section7.2.json │ │ │ ├── section7.3.json │ │ │ ├── section7.4.json │ │ │ ├── section7.5.json │ │ │ ├── section7.6.json │ │ │ ├── section7.7.json │ │ │ ├── section8.1.json │ │ │ ├── section8.2.json │ │ │ ├── section8.3.json │ │ │ ├── section8.4.json │ │ │ ├── section9.1.json │ │ │ ├── section9.2.json │ │ │ └── section9.3.json │ │ └── SFA.DAS.QnA.sln ├── t1 │ ├── pred │ │ ├── codeplan │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ ├── codeplan_no_context │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ ├── coeditor_codeplan │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ ├── coeditor_repair │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ ├── coeditor_repair_strict │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ ├── repair │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ └── repair_strict │ │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ ├── source │ └── target ├── t2 │ ├── pred │ │ ├── codeplan │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ ├── codeplan_no_context │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ │ ├── .github │ │ │ │ ├── actions │ │ │ │ │ └── audiocraft_build │ │ │ │ │ │ └── action.yml │ │ │ │ └── workflows │ │ │ │ │ ├── audiocraft_docs.yml │ │ │ │ │ ├── audiocraft_linter.yml │ │ │ │ │ └── audiocraft_tests.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE_weights │ │ │ │ ├── MANIFEST.in │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ ├── a_duck_quacking_as_birds_chirp_and_a_pigeon_cooing.mp3 │ │ │ │ ├── bach.mp3 │ │ │ │ ├── bolero_ravel.mp3 │ │ │ │ └── sirens_and_a_humming_engine_approach_and_pass.mp3 │ │ │ │ ├── audiocraft │ │ │ │ ├── __init__.py │ │ │ │ ├── adversarial │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── discriminators │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── mpd.py │ │ │ │ │ │ ├── msd.py │ │ │ │ │ │ └── msstftd.py │ │ │ │ │ └── losses.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── audio_dataset.py │ │ │ │ │ ├── audio_utils.py │ │ │ │ │ ├── info_audio_dataset.py │ │ │ │ │ ├── music_dataset.py │ │ │ │ │ ├── sound_dataset.py │ │ │ │ │ └── zip.py │ │ │ │ ├── environment.py │ │ │ │ ├── grids │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base_explorers.py │ │ │ │ │ ├── audiogen │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── audiogen_base_16khz.py │ │ │ │ │ │ └── audiogen_pretrained_16khz_eval.py │ │ │ │ │ ├── compression │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _explorers.py │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ ├── encodec_audiogen_16khz.py │ │ │ │ │ │ ├── encodec_base_24khz.py │ │ │ │ │ │ └── encodec_musicgen_32khz.py │ │ │ │ │ ├── diffusion │ │ │ │ │ │ ├── 4_bands_base_32khz.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _explorers.py │ │ │ │ │ └── musicgen │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _explorers.py │ │ │ │ │ │ ├── musicgen_base_32khz.py │ │ │ │ │ │ ├── musicgen_base_cached_32khz.py │ │ │ │ │ │ ├── musicgen_clapemb_32khz.py │ │ │ │ │ │ ├── musicgen_melody_32khz.py │ │ │ │ │ │ └── musicgen_pretrained_32khz_eval.py │ │ │ │ ├── losses │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── balancer.py │ │ │ │ │ ├── sisnr.py │ │ │ │ │ ├── specloss.py │ │ │ │ │ └── stftloss.py │ │ │ │ ├── metrics │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chroma_cosinesim.py │ │ │ │ │ ├── clap_consistency.py │ │ │ │ │ ├── fad.py │ │ │ │ │ ├── kld.py │ │ │ │ │ ├── rvm.py │ │ │ │ │ └── visqol.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiogen.py │ │ │ │ │ ├── builders.py │ │ │ │ │ ├── encodec.py │ │ │ │ │ ├── lm.py │ │ │ │ │ ├── loaders.py │ │ │ │ │ ├── multibanddiffusion.py │ │ │ │ │ ├── musicgen.py │ │ │ │ │ └── unet.py │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activations.py │ │ │ │ │ ├── chroma.py │ │ │ │ │ ├── codebooks_patterns.py │ │ │ │ │ ├── conditioners.py │ │ │ │ │ ├── conv.py │ │ │ │ │ ├── diffusion_schedule.py │ │ │ │ │ ├── lstm.py │ │ │ │ │ ├── rope.py │ │ │ │ │ ├── seanet.py │ │ │ │ │ ├── streaming.py │ │ │ │ │ └── transformer.py │ │ │ │ ├── optim │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cosine_lr_scheduler.py │ │ │ │ │ ├── dadam.py │ │ │ │ │ ├── ema.py │ │ │ │ │ ├── fsdp.py │ │ │ │ │ ├── inverse_sqrt_lr_scheduler.py │ │ │ │ │ ├── linear_warmup_lr_scheduler.py │ │ │ │ │ └── polynomial_decay_lr_scheduler.py │ │ │ │ ├── py.typed │ │ │ │ ├── quantization │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── core_vq.py │ │ │ │ │ └── vq.py │ │ │ │ ├── solvers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiogen.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── builders.py │ │ │ │ │ ├── compression.py │ │ │ │ │ ├── diffusion.py │ │ │ │ │ └── musicgen.py │ │ │ │ ├── train.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocast.py │ │ │ │ │ ├── best_state.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── checkpoint.py │ │ │ │ │ ├── cluster.py │ │ │ │ │ ├── deadlock.py │ │ │ │ │ ├── export.py │ │ │ │ │ ├── export_legacy.py │ │ │ │ │ ├── notebook.py │ │ │ │ │ ├── profiler.py │ │ │ │ │ ├── samples │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── manager.py │ │ │ │ │ └── utils.py │ │ │ │ ├── config │ │ │ │ ├── conditioner │ │ │ │ │ ├── chroma2music.yaml │ │ │ │ │ ├── clapemb2music.yaml │ │ │ │ │ ├── none.yaml │ │ │ │ │ ├── text2music.yaml │ │ │ │ │ └── text2sound.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── dset │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── audiocaps_16khz.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── example.yaml │ │ │ │ │ │ └── musiccaps_32khz.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── internal │ │ │ │ │ │ ├── music_10k_32khz.yaml │ │ │ │ │ │ ├── music_400k_32khz.yaml │ │ │ │ │ │ └── sounds_16khz.yaml │ │ │ │ ├── model │ │ │ │ │ ├── encodec │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── encodec_base_causal.yaml │ │ │ │ │ │ ├── encodec_large_nq4_s320.yaml │ │ │ │ │ │ └── encodec_large_nq4_s640.yaml │ │ │ │ │ ├── lm │ │ │ │ │ │ ├── audiogen_lm.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── model_scale │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ ├── large.yaml │ │ │ │ │ │ │ ├── medium.yaml │ │ │ │ │ │ │ ├── small.yaml │ │ │ │ │ │ │ └── xsmall.yaml │ │ │ │ │ │ └── musicgen_lm.yaml │ │ │ │ │ ├── none.yaml │ │ │ │ │ └── score │ │ │ │ │ │ └── basic.yaml │ │ │ │ ├── solver │ │ │ │ │ ├── audiogen │ │ │ │ │ │ ├── audiogen_base_16khz.yaml │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ └── evaluation │ │ │ │ │ │ │ ├── none.yaml │ │ │ │ │ │ │ └── objective_eval.yaml │ │ │ │ │ ├── compression │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── encodec_audiogen_16khz.yaml │ │ │ │ │ │ ├── encodec_base_24khz.yaml │ │ │ │ │ │ └── encodec_musicgen_32khz.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── diffusion │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ └── encodec_24khz.yaml │ │ │ │ │ └── musicgen │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── evaluation │ │ │ │ │ │ ├── none.yaml │ │ │ │ │ │ └── objective_eval.yaml │ │ │ │ │ │ ├── musicgen_base_32khz.yaml │ │ │ │ │ │ └── musicgen_melody_32khz.yaml │ │ │ │ └── teams │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── labs.yaml │ │ │ │ ├── dataset │ │ │ │ └── example │ │ │ │ │ ├── electro_1.json │ │ │ │ │ ├── electro_1.mp3 │ │ │ │ │ ├── electro_2.json │ │ │ │ │ └── electro_2.mp3 │ │ │ │ ├── demos │ │ │ │ ├── audiogen_demo.ipynb │ │ │ │ ├── musicgen_app.py │ │ │ │ └── musicgen_demo.ipynb │ │ │ │ ├── docs │ │ │ │ ├── AUDIOGEN.md │ │ │ │ ├── CONDITIONING.md │ │ │ │ ├── DATASETS.md │ │ │ │ ├── ENCODEC.md │ │ │ │ ├── MBD.md │ │ │ │ ├── METRICS.md │ │ │ │ ├── MUSICGEN.md │ │ │ │ └── TRAINING.md │ │ │ │ ├── egs │ │ │ │ └── example │ │ │ │ │ └── data.jsonl │ │ │ │ ├── model_cards │ │ │ │ ├── AUDIOGEN_MODEL_CARD.md │ │ │ │ └── MUSICGEN_MODEL_CARD.md │ │ │ │ ├── mypy.ini │ │ │ │ ├── requirements.txt │ │ │ │ ├── scripts │ │ │ │ ├── __init__.py │ │ │ │ ├── mos.py │ │ │ │ ├── resample_dataset.py │ │ │ │ ├── static │ │ │ │ │ └── style.css │ │ │ │ └── templates │ │ │ │ │ ├── base.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── results.html │ │ │ │ │ └── survey.html │ │ │ │ ├── setup.cfg │ │ │ │ ├── setup.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── adversarial │ │ │ │ ├── __init__.py │ │ │ │ ├── test_discriminators.py │ │ │ │ └── test_losses.py │ │ │ │ ├── common_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── temp_utils.py │ │ │ │ └── wav_utils.py │ │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── test_audio.py │ │ │ │ ├── test_audio_dataset.py │ │ │ │ └── test_audio_utils.py │ │ │ │ ├── losses │ │ │ │ ├── __init__.py │ │ │ │ └── test_losses.py │ │ │ │ ├── models │ │ │ │ ├── test_audiogen.py │ │ │ │ ├── test_encodec_model.py │ │ │ │ ├── test_multibanddiffusion.py │ │ │ │ └── test_musicgen.py │ │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── test_activations.py │ │ │ │ ├── test_codebooks_patterns.py │ │ │ │ ├── test_conv.py │ │ │ │ ├── test_lstm.py │ │ │ │ ├── test_rope.py │ │ │ │ ├── test_seanet.py │ │ │ │ └── test_transformer.py │ │ │ │ ├── quantization │ │ │ │ └── test_vq.py │ │ │ │ └── utils │ │ │ │ └── __init__.py │ │ ├── coeditor_codeplan │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ ├── coeditor_repair │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ │ ├── .github │ │ │ │ ├── actions │ │ │ │ │ └── audiocraft_build │ │ │ │ │ │ └── action.yml │ │ │ │ └── workflows │ │ │ │ │ ├── audiocraft_docs.yml │ │ │ │ │ ├── audiocraft_linter.yml │ │ │ │ │ └── audiocraft_tests.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE_weights │ │ │ │ ├── MANIFEST.in │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ ├── a_duck_quacking_as_birds_chirp_and_a_pigeon_cooing.mp3 │ │ │ │ ├── bach.mp3 │ │ │ │ ├── bolero_ravel.mp3 │ │ │ │ └── sirens_and_a_humming_engine_approach_and_pass.mp3 │ │ │ │ ├── audiocraft │ │ │ │ ├── __init__.py │ │ │ │ ├── adversarial │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── discriminators │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── mpd.py │ │ │ │ │ │ ├── msd.py │ │ │ │ │ │ └── msstftd.py │ │ │ │ │ └── losses.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── audio_dataset.py │ │ │ │ │ ├── audio_utils.py │ │ │ │ │ ├── info_audio_dataset.py │ │ │ │ │ ├── music_dataset.py │ │ │ │ │ ├── sound_dataset.py │ │ │ │ │ └── zip.py │ │ │ │ ├── environment.py │ │ │ │ ├── grids │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base_explorers.py │ │ │ │ │ ├── audiogen │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── audiogen_base_16khz.py │ │ │ │ │ │ └── audiogen_pretrained_16khz_eval.py │ │ │ │ │ ├── compression │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _explorers.py │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ ├── encodec_audiogen_16khz.py │ │ │ │ │ │ ├── encodec_base_24khz.py │ │ │ │ │ │ └── encodec_musicgen_32khz.py │ │ │ │ │ ├── diffusion │ │ │ │ │ │ ├── 4_bands_base_32khz.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _explorers.py │ │ │ │ │ └── musicgen │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _explorers.py │ │ │ │ │ │ ├── musicgen_base_32khz.py │ │ │ │ │ │ ├── musicgen_base_cached_32khz.py │ │ │ │ │ │ ├── musicgen_clapemb_32khz.py │ │ │ │ │ │ ├── musicgen_melody_32khz.py │ │ │ │ │ │ └── musicgen_pretrained_32khz_eval.py │ │ │ │ ├── losses │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── balancer.py │ │ │ │ │ ├── sisnr.py │ │ │ │ │ ├── specloss.py │ │ │ │ │ └── stftloss.py │ │ │ │ ├── metrics │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chroma_cosinesim.py │ │ │ │ │ ├── clap_consistency.py │ │ │ │ │ ├── fad.py │ │ │ │ │ ├── kld.py │ │ │ │ │ ├── rvm.py │ │ │ │ │ └── visqol.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiogen.py │ │ │ │ │ ├── builders.py │ │ │ │ │ ├── encodec.py │ │ │ │ │ ├── lm.py │ │ │ │ │ ├── loaders.py │ │ │ │ │ ├── multibanddiffusion.py │ │ │ │ │ ├── musicgen.py │ │ │ │ │ └── unet.py │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activations.py │ │ │ │ │ ├── chroma.py │ │ │ │ │ ├── codebooks_patterns.py │ │ │ │ │ ├── conditioners.py │ │ │ │ │ ├── conv.py │ │ │ │ │ ├── diffusion_schedule.py │ │ │ │ │ ├── lstm.py │ │ │ │ │ ├── rope.py │ │ │ │ │ ├── seanet.py │ │ │ │ │ ├── streaming.py │ │ │ │ │ └── transformer.py │ │ │ │ ├── optim │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cosine_lr_scheduler.py │ │ │ │ │ ├── dadam.py │ │ │ │ │ ├── ema.py │ │ │ │ │ ├── fsdp.py │ │ │ │ │ ├── inverse_sqrt_lr_scheduler.py │ │ │ │ │ ├── linear_warmup_lr_scheduler.py │ │ │ │ │ └── polynomial_decay_lr_scheduler.py │ │ │ │ ├── py.typed │ │ │ │ ├── quantization │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── core_vq.py │ │ │ │ │ └── vq.py │ │ │ │ ├── solvers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiogen.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── builders.py │ │ │ │ │ ├── compression.py │ │ │ │ │ ├── diffusion.py │ │ │ │ │ └── musicgen.py │ │ │ │ ├── train.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocast.py │ │ │ │ │ ├── best_state.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── checkpoint.py │ │ │ │ │ ├── cluster.py │ │ │ │ │ ├── deadlock.py │ │ │ │ │ ├── export.py │ │ │ │ │ ├── export_legacy.py │ │ │ │ │ ├── notebook.py │ │ │ │ │ ├── profiler.py │ │ │ │ │ ├── samples │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── manager.py │ │ │ │ │ └── utils.py │ │ │ │ ├── config │ │ │ │ ├── conditioner │ │ │ │ │ ├── chroma2music.yaml │ │ │ │ │ ├── clapemb2music.yaml │ │ │ │ │ ├── none.yaml │ │ │ │ │ ├── text2music.yaml │ │ │ │ │ └── text2sound.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── dset │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── audiocaps_16khz.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── example.yaml │ │ │ │ │ │ └── musiccaps_32khz.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── internal │ │ │ │ │ │ ├── music_10k_32khz.yaml │ │ │ │ │ │ ├── music_400k_32khz.yaml │ │ │ │ │ │ └── sounds_16khz.yaml │ │ │ │ ├── model │ │ │ │ │ ├── encodec │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── encodec_base_causal.yaml │ │ │ │ │ │ ├── encodec_large_nq4_s320.yaml │ │ │ │ │ │ └── encodec_large_nq4_s640.yaml │ │ │ │ │ ├── lm │ │ │ │ │ │ ├── audiogen_lm.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── model_scale │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ ├── large.yaml │ │ │ │ │ │ │ ├── medium.yaml │ │ │ │ │ │ │ ├── small.yaml │ │ │ │ │ │ │ └── xsmall.yaml │ │ │ │ │ │ └── musicgen_lm.yaml │ │ │ │ │ ├── none.yaml │ │ │ │ │ └── score │ │ │ │ │ │ └── basic.yaml │ │ │ │ ├── solver │ │ │ │ │ ├── audiogen │ │ │ │ │ │ ├── audiogen_base_16khz.yaml │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ └── evaluation │ │ │ │ │ │ │ ├── none.yaml │ │ │ │ │ │ │ └── objective_eval.yaml │ │ │ │ │ ├── compression │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── encodec_audiogen_16khz.yaml │ │ │ │ │ │ ├── encodec_base_24khz.yaml │ │ │ │ │ │ └── encodec_musicgen_32khz.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── diffusion │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ └── encodec_24khz.yaml │ │ │ │ │ └── musicgen │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── evaluation │ │ │ │ │ │ ├── none.yaml │ │ │ │ │ │ └── objective_eval.yaml │ │ │ │ │ │ ├── musicgen_base_32khz.yaml │ │ │ │ │ │ └── musicgen_melody_32khz.yaml │ │ │ │ └── teams │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── labs.yaml │ │ │ │ ├── dataset │ │ │ │ └── example │ │ │ │ │ ├── electro_1.json │ │ │ │ │ ├── electro_1.mp3 │ │ │ │ │ ├── electro_2.json │ │ │ │ │ └── electro_2.mp3 │ │ │ │ ├── demos │ │ │ │ ├── audiogen_demo.ipynb │ │ │ │ ├── musicgen_app.py │ │ │ │ └── musicgen_demo.ipynb │ │ │ │ ├── docs │ │ │ │ ├── AUDIOGEN.md │ │ │ │ ├── CONDITIONING.md │ │ │ │ ├── DATASETS.md │ │ │ │ ├── ENCODEC.md │ │ │ │ ├── MBD.md │ │ │ │ ├── METRICS.md │ │ │ │ ├── MUSICGEN.md │ │ │ │ └── TRAINING.md │ │ │ │ ├── egs │ │ │ │ └── example │ │ │ │ │ └── data.jsonl │ │ │ │ ├── model_cards │ │ │ │ ├── AUDIOGEN_MODEL_CARD.md │ │ │ │ └── MUSICGEN_MODEL_CARD.md │ │ │ │ ├── mypy.ini │ │ │ │ ├── requirements.txt │ │ │ │ ├── scripts │ │ │ │ ├── __init__.py │ │ │ │ ├── mos.py │ │ │ │ ├── resample_dataset.py │ │ │ │ ├── static │ │ │ │ │ └── style.css │ │ │ │ └── templates │ │ │ │ │ ├── base.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── results.html │ │ │ │ │ └── survey.html │ │ │ │ ├── setup.cfg │ │ │ │ ├── setup.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── adversarial │ │ │ │ ├── __init__.py │ │ │ │ ├── test_discriminators.py │ │ │ │ └── test_losses.py │ │ │ │ ├── common_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── temp_utils.py │ │ │ │ └── wav_utils.py │ │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── test_audio.py │ │ │ │ ├── test_audio_dataset.py │ │ │ │ └── test_audio_utils.py │ │ │ │ ├── losses │ │ │ │ ├── __init__.py │ │ │ │ └── test_losses.py │ │ │ │ ├── models │ │ │ │ ├── test_audiogen.py │ │ │ │ ├── test_encodec_model.py │ │ │ │ ├── test_multibanddiffusion.py │ │ │ │ └── test_musicgen.py │ │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── test_activations.py │ │ │ │ ├── test_codebooks_patterns.py │ │ │ │ ├── test_conv.py │ │ │ │ ├── test_lstm.py │ │ │ │ ├── test_rope.py │ │ │ │ ├── test_seanet.py │ │ │ │ └── test_transformer.py │ │ │ │ ├── quantization │ │ │ │ └── test_vq.py │ │ │ │ └── utils │ │ │ │ └── __init__.py │ │ ├── coeditor_repair_strict │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ │ ├── .github │ │ │ │ ├── actions │ │ │ │ │ └── audiocraft_build │ │ │ │ │ │ └── action.yml │ │ │ │ └── workflows │ │ │ │ │ ├── audiocraft_docs.yml │ │ │ │ │ ├── audiocraft_linter.yml │ │ │ │ │ └── audiocraft_tests.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE_weights │ │ │ │ ├── MANIFEST.in │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── assets │ │ │ │ ├── a_duck_quacking_as_birds_chirp_and_a_pigeon_cooing.mp3 │ │ │ │ ├── bach.mp3 │ │ │ │ ├── bolero_ravel.mp3 │ │ │ │ └── sirens_and_a_humming_engine_approach_and_pass.mp3 │ │ │ │ ├── audiocraft │ │ │ │ ├── __init__.py │ │ │ │ ├── adversarial │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── discriminators │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── mpd.py │ │ │ │ │ │ ├── msd.py │ │ │ │ │ │ └── msstftd.py │ │ │ │ │ └── losses.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── audio_dataset.py │ │ │ │ │ ├── audio_utils.py │ │ │ │ │ ├── info_audio_dataset.py │ │ │ │ │ ├── music_dataset.py │ │ │ │ │ ├── sound_dataset.py │ │ │ │ │ └── zip.py │ │ │ │ ├── environment.py │ │ │ │ ├── grids │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base_explorers.py │ │ │ │ │ ├── audiogen │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── audiogen_base_16khz.py │ │ │ │ │ │ └── audiogen_pretrained_16khz_eval.py │ │ │ │ │ ├── compression │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _explorers.py │ │ │ │ │ │ ├── debug.py │ │ │ │ │ │ ├── encodec_audiogen_16khz.py │ │ │ │ │ │ ├── encodec_base_24khz.py │ │ │ │ │ │ └── encodec_musicgen_32khz.py │ │ │ │ │ ├── diffusion │ │ │ │ │ │ ├── 4_bands_base_32khz.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _explorers.py │ │ │ │ │ └── musicgen │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _explorers.py │ │ │ │ │ │ ├── musicgen_base_32khz.py │ │ │ │ │ │ ├── musicgen_base_cached_32khz.py │ │ │ │ │ │ ├── musicgen_clapemb_32khz.py │ │ │ │ │ │ ├── musicgen_melody_32khz.py │ │ │ │ │ │ └── musicgen_pretrained_32khz_eval.py │ │ │ │ ├── losses │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── balancer.py │ │ │ │ │ ├── sisnr.py │ │ │ │ │ ├── specloss.py │ │ │ │ │ └── stftloss.py │ │ │ │ ├── metrics │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chroma_cosinesim.py │ │ │ │ │ ├── clap_consistency.py │ │ │ │ │ ├── fad.py │ │ │ │ │ ├── kld.py │ │ │ │ │ ├── rvm.py │ │ │ │ │ └── visqol.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiogen.py │ │ │ │ │ ├── builders.py │ │ │ │ │ ├── encodec.py │ │ │ │ │ ├── lm.py │ │ │ │ │ ├── loaders.py │ │ │ │ │ ├── multibanddiffusion.py │ │ │ │ │ ├── musicgen.py │ │ │ │ │ └── unet.py │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activations.py │ │ │ │ │ ├── chroma.py │ │ │ │ │ ├── codebooks_patterns.py │ │ │ │ │ ├── conditioners.py │ │ │ │ │ ├── conv.py │ │ │ │ │ ├── diffusion_schedule.py │ │ │ │ │ ├── lstm.py │ │ │ │ │ ├── rope.py │ │ │ │ │ ├── seanet.py │ │ │ │ │ ├── streaming.py │ │ │ │ │ └── transformer.py │ │ │ │ ├── optim │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cosine_lr_scheduler.py │ │ │ │ │ ├── dadam.py │ │ │ │ │ ├── ema.py │ │ │ │ │ ├── fsdp.py │ │ │ │ │ ├── inverse_sqrt_lr_scheduler.py │ │ │ │ │ ├── linear_warmup_lr_scheduler.py │ │ │ │ │ └── polynomial_decay_lr_scheduler.py │ │ │ │ ├── py.typed │ │ │ │ ├── quantization │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── core_vq.py │ │ │ │ │ └── vq.py │ │ │ │ ├── solvers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiogen.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── builders.py │ │ │ │ │ ├── compression.py │ │ │ │ │ ├── diffusion.py │ │ │ │ │ └── musicgen.py │ │ │ │ ├── train.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocast.py │ │ │ │ │ ├── best_state.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── checkpoint.py │ │ │ │ │ ├── cluster.py │ │ │ │ │ ├── deadlock.py │ │ │ │ │ ├── export.py │ │ │ │ │ ├── export_legacy.py │ │ │ │ │ ├── notebook.py │ │ │ │ │ ├── profiler.py │ │ │ │ │ ├── samples │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── manager.py │ │ │ │ │ └── utils.py │ │ │ │ ├── config │ │ │ │ ├── conditioner │ │ │ │ │ ├── chroma2music.yaml │ │ │ │ │ ├── clapemb2music.yaml │ │ │ │ │ ├── none.yaml │ │ │ │ │ ├── text2music.yaml │ │ │ │ │ └── text2sound.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── dset │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── audiocaps_16khz.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── example.yaml │ │ │ │ │ │ └── musiccaps_32khz.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── internal │ │ │ │ │ │ ├── music_10k_32khz.yaml │ │ │ │ │ │ ├── music_400k_32khz.yaml │ │ │ │ │ │ └── sounds_16khz.yaml │ │ │ │ ├── model │ │ │ │ │ ├── encodec │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── encodec_base_causal.yaml │ │ │ │ │ │ ├── encodec_large_nq4_s320.yaml │ │ │ │ │ │ └── encodec_large_nq4_s640.yaml │ │ │ │ │ ├── lm │ │ │ │ │ │ ├── audiogen_lm.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── model_scale │ │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ │ ├── large.yaml │ │ │ │ │ │ │ ├── medium.yaml │ │ │ │ │ │ │ ├── small.yaml │ │ │ │ │ │ │ └── xsmall.yaml │ │ │ │ │ │ └── musicgen_lm.yaml │ │ │ │ │ ├── none.yaml │ │ │ │ │ └── score │ │ │ │ │ │ └── basic.yaml │ │ │ │ ├── solver │ │ │ │ │ ├── audiogen │ │ │ │ │ │ ├── audiogen_base_16khz.yaml │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ └── evaluation │ │ │ │ │ │ │ ├── none.yaml │ │ │ │ │ │ │ └── objective_eval.yaml │ │ │ │ │ ├── compression │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── encodec_audiogen_16khz.yaml │ │ │ │ │ │ ├── encodec_base_24khz.yaml │ │ │ │ │ │ └── encodec_musicgen_32khz.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── diffusion │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ └── encodec_24khz.yaml │ │ │ │ │ └── musicgen │ │ │ │ │ │ ├── debug.yaml │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── evaluation │ │ │ │ │ │ ├── none.yaml │ │ │ │ │ │ └── objective_eval.yaml │ │ │ │ │ │ ├── musicgen_base_32khz.yaml │ │ │ │ │ │ └── musicgen_melody_32khz.yaml │ │ │ │ └── teams │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── labs.yaml │ │ │ │ ├── dataset │ │ │ │ └── example │ │ │ │ │ ├── electro_1.json │ │ │ │ │ ├── electro_1.mp3 │ │ │ │ │ ├── electro_2.json │ │ │ │ │ └── electro_2.mp3 │ │ │ │ ├── demos │ │ │ │ ├── audiogen_demo.ipynb │ │ │ │ ├── musicgen_app.py │ │ │ │ └── musicgen_demo.ipynb │ │ │ │ ├── docs │ │ │ │ ├── AUDIOGEN.md │ │ │ │ ├── CONDITIONING.md │ │ │ │ ├── DATASETS.md │ │ │ │ ├── ENCODEC.md │ │ │ │ ├── MBD.md │ │ │ │ ├── METRICS.md │ │ │ │ ├── MUSICGEN.md │ │ │ │ └── TRAINING.md │ │ │ │ ├── egs │ │ │ │ └── example │ │ │ │ │ └── data.jsonl │ │ │ │ ├── model_cards │ │ │ │ ├── AUDIOGEN_MODEL_CARD.md │ │ │ │ └── MUSICGEN_MODEL_CARD.md │ │ │ │ ├── mypy.ini │ │ │ │ ├── requirements.txt │ │ │ │ ├── scripts │ │ │ │ ├── __init__.py │ │ │ │ ├── mos.py │ │ │ │ ├── resample_dataset.py │ │ │ │ ├── static │ │ │ │ │ └── style.css │ │ │ │ └── templates │ │ │ │ │ ├── base.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── results.html │ │ │ │ │ └── survey.html │ │ │ │ ├── setup.cfg │ │ │ │ ├── setup.py │ │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── adversarial │ │ │ │ ├── __init__.py │ │ │ │ ├── test_discriminators.py │ │ │ │ └── test_losses.py │ │ │ │ ├── common_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── temp_utils.py │ │ │ │ └── wav_utils.py │ │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── test_audio.py │ │ │ │ ├── test_audio_dataset.py │ │ │ │ └── test_audio_utils.py │ │ │ │ ├── losses │ │ │ │ ├── __init__.py │ │ │ │ └── test_losses.py │ │ │ │ ├── models │ │ │ │ ├── test_audiogen.py │ │ │ │ ├── test_encodec_model.py │ │ │ │ ├── test_multibanddiffusion.py │ │ │ │ └── test_musicgen.py │ │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── test_activations.py │ │ │ │ ├── test_codebooks_patterns.py │ │ │ │ ├── test_conv.py │ │ │ │ ├── test_lstm.py │ │ │ │ ├── test_rope.py │ │ │ │ ├── test_seanet.py │ │ │ │ └── test_transformer.py │ │ │ │ ├── quantization │ │ │ │ └── test_vq.py │ │ │ │ └── utils │ │ │ │ └── __init__.py │ │ ├── repair │ │ │ ├── blocks │ │ │ │ ├── matched.txt │ │ │ │ ├── missed.txt │ │ │ │ ├── spurious.txt │ │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ └── repair_strict │ │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ │ ├── diff.html │ │ │ ├── metrics.json │ │ │ └── repo │ │ │ ├── .github │ │ │ ├── actions │ │ │ │ └── audiocraft_build │ │ │ │ │ └── action.yml │ │ │ └── workflows │ │ │ │ ├── audiocraft_docs.yml │ │ │ │ ├── audiocraft_linter.yml │ │ │ │ └── audiocraft_tests.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE_weights │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── assets │ │ │ ├── a_duck_quacking_as_birds_chirp_and_a_pigeon_cooing.mp3 │ │ │ ├── bach.mp3 │ │ │ ├── bolero_ravel.mp3 │ │ │ └── sirens_and_a_humming_engine_approach_and_pass.mp3 │ │ │ ├── audiocraft │ │ │ ├── __init__.py │ │ │ ├── adversarial │ │ │ │ ├── __init__.py │ │ │ │ ├── discriminators │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── mpd.py │ │ │ │ │ ├── msd.py │ │ │ │ │ └── msstftd.py │ │ │ │ └── losses.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── audio.py │ │ │ │ ├── audio_dataset.py │ │ │ │ ├── audio_utils.py │ │ │ │ ├── info_audio_dataset.py │ │ │ │ ├── music_dataset.py │ │ │ │ ├── sound_dataset.py │ │ │ │ └── zip.py │ │ │ ├── environment.py │ │ │ ├── grids │ │ │ │ ├── __init__.py │ │ │ │ ├── _base_explorers.py │ │ │ │ ├── audiogen │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiogen_base_16khz.py │ │ │ │ │ └── audiogen_pretrained_16khz_eval.py │ │ │ │ ├── compression │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _explorers.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── encodec_audiogen_16khz.py │ │ │ │ │ ├── encodec_base_24khz.py │ │ │ │ │ └── encodec_musicgen_32khz.py │ │ │ │ ├── diffusion │ │ │ │ │ ├── 4_bands_base_32khz.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _explorers.py │ │ │ │ └── musicgen │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _explorers.py │ │ │ │ │ ├── musicgen_base_32khz.py │ │ │ │ │ ├── musicgen_base_cached_32khz.py │ │ │ │ │ ├── musicgen_clapemb_32khz.py │ │ │ │ │ ├── musicgen_melody_32khz.py │ │ │ │ │ └── musicgen_pretrained_32khz_eval.py │ │ │ ├── losses │ │ │ │ ├── __init__.py │ │ │ │ ├── balancer.py │ │ │ │ ├── sisnr.py │ │ │ │ ├── specloss.py │ │ │ │ └── stftloss.py │ │ │ ├── metrics │ │ │ │ ├── __init__.py │ │ │ │ ├── chroma_cosinesim.py │ │ │ │ ├── clap_consistency.py │ │ │ │ ├── fad.py │ │ │ │ ├── kld.py │ │ │ │ ├── rvm.py │ │ │ │ └── visqol.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── audiogen.py │ │ │ │ ├── builders.py │ │ │ │ ├── encodec.py │ │ │ │ ├── lm.py │ │ │ │ ├── loaders.py │ │ │ │ ├── multibanddiffusion.py │ │ │ │ ├── musicgen.py │ │ │ │ └── unet.py │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── activations.py │ │ │ │ ├── chroma.py │ │ │ │ ├── codebooks_patterns.py │ │ │ │ ├── conditioners.py │ │ │ │ ├── conv.py │ │ │ │ ├── diffusion_schedule.py │ │ │ │ ├── lstm.py │ │ │ │ ├── rope.py │ │ │ │ ├── seanet.py │ │ │ │ ├── streaming.py │ │ │ │ └── transformer.py │ │ │ ├── optim │ │ │ │ ├── __init__.py │ │ │ │ ├── cosine_lr_scheduler.py │ │ │ │ ├── dadam.py │ │ │ │ ├── ema.py │ │ │ │ ├── fsdp.py │ │ │ │ ├── inverse_sqrt_lr_scheduler.py │ │ │ │ ├── linear_warmup_lr_scheduler.py │ │ │ │ └── polynomial_decay_lr_scheduler.py │ │ │ ├── py.typed │ │ │ ├── quantization │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── core_vq.py │ │ │ │ └── vq.py │ │ │ ├── solvers │ │ │ │ ├── __init__.py │ │ │ │ ├── audiogen.py │ │ │ │ ├── base.py │ │ │ │ ├── builders.py │ │ │ │ ├── compression.py │ │ │ │ ├── diffusion.py │ │ │ │ └── musicgen.py │ │ │ ├── train.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── autocast.py │ │ │ │ ├── best_state.py │ │ │ │ ├── cache.py │ │ │ │ ├── checkpoint.py │ │ │ │ ├── cluster.py │ │ │ │ ├── deadlock.py │ │ │ │ ├── export.py │ │ │ │ ├── export_legacy.py │ │ │ │ ├── notebook.py │ │ │ │ ├── profiler.py │ │ │ │ ├── samples │ │ │ │ ├── __init__.py │ │ │ │ └── manager.py │ │ │ │ └── utils.py │ │ │ ├── config │ │ │ ├── conditioner │ │ │ │ ├── chroma2music.yaml │ │ │ │ ├── clapemb2music.yaml │ │ │ │ ├── none.yaml │ │ │ │ ├── text2music.yaml │ │ │ │ └── text2sound.yaml │ │ │ ├── config.yaml │ │ │ ├── dset │ │ │ │ ├── audio │ │ │ │ │ ├── audiocaps_16khz.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── example.yaml │ │ │ │ │ └── musiccaps_32khz.yaml │ │ │ │ ├── default.yaml │ │ │ │ └── internal │ │ │ │ │ ├── music_10k_32khz.yaml │ │ │ │ │ ├── music_400k_32khz.yaml │ │ │ │ │ └── sounds_16khz.yaml │ │ │ ├── model │ │ │ │ ├── encodec │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── encodec_base_causal.yaml │ │ │ │ │ ├── encodec_large_nq4_s320.yaml │ │ │ │ │ └── encodec_large_nq4_s640.yaml │ │ │ │ ├── lm │ │ │ │ │ ├── audiogen_lm.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── model_scale │ │ │ │ │ │ ├── base.yaml │ │ │ │ │ │ ├── large.yaml │ │ │ │ │ │ ├── medium.yaml │ │ │ │ │ │ ├── small.yaml │ │ │ │ │ │ └── xsmall.yaml │ │ │ │ │ └── musicgen_lm.yaml │ │ │ │ ├── none.yaml │ │ │ │ └── score │ │ │ │ │ └── basic.yaml │ │ │ ├── solver │ │ │ │ ├── audiogen │ │ │ │ │ ├── audiogen_base_16khz.yaml │ │ │ │ │ ├── debug.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── evaluation │ │ │ │ │ │ ├── none.yaml │ │ │ │ │ │ └── objective_eval.yaml │ │ │ │ ├── compression │ │ │ │ │ ├── debug.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── encodec_audiogen_16khz.yaml │ │ │ │ │ ├── encodec_base_24khz.yaml │ │ │ │ │ └── encodec_musicgen_32khz.yaml │ │ │ │ ├── default.yaml │ │ │ │ ├── diffusion │ │ │ │ │ ├── debug.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ └── encodec_24khz.yaml │ │ │ │ └── musicgen │ │ │ │ │ ├── debug.yaml │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── evaluation │ │ │ │ │ ├── none.yaml │ │ │ │ │ └── objective_eval.yaml │ │ │ │ │ ├── musicgen_base_32khz.yaml │ │ │ │ │ └── musicgen_melody_32khz.yaml │ │ │ └── teams │ │ │ │ ├── default.yaml │ │ │ │ └── labs.yaml │ │ │ ├── dataset │ │ │ └── example │ │ │ │ ├── electro_1.json │ │ │ │ ├── electro_1.mp3 │ │ │ │ ├── electro_2.json │ │ │ │ └── electro_2.mp3 │ │ │ ├── demos │ │ │ ├── audiogen_demo.ipynb │ │ │ ├── musicgen_app.py │ │ │ └── musicgen_demo.ipynb │ │ │ ├── docs │ │ │ ├── AUDIOGEN.md │ │ │ ├── CONDITIONING.md │ │ │ ├── DATASETS.md │ │ │ ├── ENCODEC.md │ │ │ ├── MBD.md │ │ │ ├── METRICS.md │ │ │ ├── MUSICGEN.md │ │ │ └── TRAINING.md │ │ │ ├── egs │ │ │ └── example │ │ │ │ └── data.jsonl │ │ │ ├── model_cards │ │ │ ├── AUDIOGEN_MODEL_CARD.md │ │ │ └── MUSICGEN_MODEL_CARD.md │ │ │ ├── mypy.ini │ │ │ ├── requirements.txt │ │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ ├── mos.py │ │ │ ├── resample_dataset.py │ │ │ ├── static │ │ │ │ └── style.css │ │ │ └── templates │ │ │ │ ├── base.html │ │ │ │ ├── index.html │ │ │ │ ├── login.html │ │ │ │ ├── results.html │ │ │ │ └── survey.html │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── adversarial │ │ │ ├── __init__.py │ │ │ ├── test_discriminators.py │ │ │ └── test_losses.py │ │ │ ├── common_utils │ │ │ ├── __init__.py │ │ │ ├── temp_utils.py │ │ │ └── wav_utils.py │ │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── test_audio.py │ │ │ ├── test_audio_dataset.py │ │ │ └── test_audio_utils.py │ │ │ ├── losses │ │ │ ├── __init__.py │ │ │ └── test_losses.py │ │ │ ├── models │ │ │ ├── test_audiogen.py │ │ │ ├── test_encodec_model.py │ │ │ ├── test_multibanddiffusion.py │ │ │ └── test_musicgen.py │ │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── test_activations.py │ │ │ ├── test_codebooks_patterns.py │ │ │ ├── test_conv.py │ │ │ ├── test_lstm.py │ │ │ ├── test_rope.py │ │ │ ├── test_seanet.py │ │ │ └── test_transformer.py │ │ │ ├── quantization │ │ │ └── test_vq.py │ │ │ └── utils │ │ │ └── __init__.py │ ├── source │ └── target └── t3 │ ├── pred │ ├── codeplan │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ ├── diff.html │ │ ├── metrics.json │ │ └── repo │ ├── codeplan_no_context │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ ├── diff.html │ │ ├── metrics.json │ │ └── repo │ ├── coeditor_codeplan │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ ├── diff.html │ │ ├── metrics.json │ │ └── repo │ ├── coeditor_repair │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ ├── diff.html │ │ ├── metrics.json │ │ └── repo │ │ │ ├── .gitignore │ │ │ ├── CITATION.cff │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── assets │ │ │ ├── overview.jpg │ │ │ ├── prompt_flow.jpg │ │ │ ├── screenshot_a.jpg │ │ │ └── screenshot_q.jpg │ │ │ ├── server │ │ │ ├── awesome_chat.py │ │ │ ├── config.azure.yaml │ │ │ ├── config.gradio.yaml │ │ │ ├── config.yaml │ │ │ ├── data │ │ │ │ └── p0_models.jsonl │ │ │ ├── demos │ │ │ │ ├── demo_choose_model.json │ │ │ │ ├── demo_parse_task.json │ │ │ │ └── demo_response_results.json │ │ │ ├── get_token_ids.py │ │ │ ├── lite.yaml │ │ │ ├── models │ │ │ │ ├── download.ps1 │ │ │ │ └── download.sh │ │ │ ├── models_server.py │ │ │ ├── public │ │ │ │ └── examples │ │ │ │ │ ├── a.jpg │ │ │ │ │ ├── b.jpg │ │ │ │ │ ├── c.jpg │ │ │ │ │ ├── d.jpg │ │ │ │ │ ├── e.jpg │ │ │ │ │ ├── f.jpg │ │ │ │ │ └── g.jpg │ │ │ ├── requirements.txt │ │ │ └── run_gradio_demo.py │ │ │ └── web │ │ │ ├── electron │ │ │ ├── .npmrc │ │ │ ├── electron-builder.yml │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── preload.js │ │ │ ├── env.d.ts │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ ├── audio.svg │ │ │ ├── favicon.ico │ │ │ └── video.svg │ │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── api │ │ │ │ ├── chatgpt.ts │ │ │ │ └── hugginggpt.ts │ │ │ ├── assets │ │ │ │ ├── audio.svg │ │ │ │ ├── chatgpt.svg │ │ │ │ ├── clip.svg │ │ │ │ ├── favicon.ico │ │ │ │ ├── huggingface.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── setting.svg │ │ │ │ └── tailwind.css │ │ │ ├── components │ │ │ │ └── Loading.vue │ │ │ ├── config │ │ │ │ └── index.ts │ │ │ ├── main.ts │ │ │ ├── prompt │ │ │ │ └── index.ts │ │ │ ├── router │ │ │ │ └── index.ts │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ └── views │ │ │ │ └── home.vue │ │ │ ├── tailwind.config.js │ │ │ ├── tsconfig.config.json │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ ├── coeditor_repair_strict │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ ├── diff.html │ │ ├── metrics.json │ │ └── repo │ │ │ ├── .gitignore │ │ │ ├── CITATION.cff │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── SUPPORT.md │ │ │ ├── assets │ │ │ ├── overview.jpg │ │ │ ├── prompt_flow.jpg │ │ │ ├── screenshot_a.jpg │ │ │ └── screenshot_q.jpg │ │ │ ├── server │ │ │ ├── awesome_chat.py │ │ │ ├── config.azure.yaml │ │ │ ├── config.gradio.yaml │ │ │ ├── config.yaml │ │ │ ├── data │ │ │ │ └── p0_models.jsonl │ │ │ ├── demos │ │ │ │ ├── demo_choose_model.json │ │ │ │ ├── demo_parse_task.json │ │ │ │ └── demo_response_results.json │ │ │ ├── get_token_ids.py │ │ │ ├── lite.yaml │ │ │ ├── models │ │ │ │ ├── download.ps1 │ │ │ │ └── download.sh │ │ │ ├── models_server.py │ │ │ ├── public │ │ │ │ └── examples │ │ │ │ │ ├── a.jpg │ │ │ │ │ ├── b.jpg │ │ │ │ │ ├── c.jpg │ │ │ │ │ ├── d.jpg │ │ │ │ │ ├── e.jpg │ │ │ │ │ ├── f.jpg │ │ │ │ │ └── g.jpg │ │ │ ├── requirements.txt │ │ │ └── run_gradio_demo.py │ │ │ └── web │ │ │ ├── electron │ │ │ ├── .npmrc │ │ │ ├── electron-builder.yml │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ └── preload.js │ │ │ ├── env.d.ts │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ ├── audio.svg │ │ │ ├── favicon.ico │ │ │ └── video.svg │ │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── api │ │ │ │ ├── chatgpt.ts │ │ │ │ └── hugginggpt.ts │ │ │ ├── assets │ │ │ │ ├── audio.svg │ │ │ │ ├── chatgpt.svg │ │ │ │ ├── clip.svg │ │ │ │ ├── favicon.ico │ │ │ │ ├── huggingface.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── setting.svg │ │ │ │ └── tailwind.css │ │ │ ├── components │ │ │ │ └── Loading.vue │ │ │ ├── config │ │ │ │ └── index.ts │ │ │ ├── main.ts │ │ │ ├── prompt │ │ │ │ └── index.ts │ │ │ ├── router │ │ │ │ └── index.ts │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ └── views │ │ │ │ └── home.vue │ │ │ ├── tailwind.config.js │ │ │ ├── tsconfig.config.json │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ ├── repair │ │ ├── blocks │ │ │ ├── matched.txt │ │ │ ├── missed.txt │ │ │ ├── spurious.txt │ │ │ └── untouched.txt │ │ ├── diff.html │ │ ├── metrics.json │ │ └── repo │ └── repair_strict │ │ ├── blocks │ │ ├── matched.txt │ │ ├── missed.txt │ │ ├── spurious.txt │ │ └── untouched.txt │ │ ├── diff.html │ │ ├── metrics.json │ │ └── repo │ │ ├── .gitignore │ │ ├── CITATION.cff │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SUPPORT.md │ │ ├── assets │ │ ├── overview.jpg │ │ ├── prompt_flow.jpg │ │ ├── screenshot_a.jpg │ │ └── screenshot_q.jpg │ │ ├── server │ │ ├── awesome_chat.py │ │ ├── config.azure.yaml │ │ ├── config.gradio.yaml │ │ ├── config.yaml │ │ ├── data │ │ │ └── p0_models.jsonl │ │ ├── demos │ │ │ ├── demo_choose_model.json │ │ │ ├── demo_parse_task.json │ │ │ └── demo_response_results.json │ │ ├── get_token_ids.py │ │ ├── lite.yaml │ │ ├── models │ │ │ ├── download.ps1 │ │ │ └── download.sh │ │ ├── models_server.py │ │ ├── public │ │ │ └── examples │ │ │ │ ├── a.jpg │ │ │ │ ├── b.jpg │ │ │ │ ├── c.jpg │ │ │ │ ├── d.jpg │ │ │ │ ├── e.jpg │ │ │ │ ├── f.jpg │ │ │ │ └── g.jpg │ │ ├── requirements.txt │ │ └── run_gradio_demo.py │ │ └── web │ │ ├── electron │ │ ├── .npmrc │ │ ├── electron-builder.yml │ │ ├── main.js │ │ ├── package.json │ │ └── preload.js │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ ├── audio.svg │ │ ├── favicon.ico │ │ └── video.svg │ │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── chatgpt.ts │ │ │ └── hugginggpt.ts │ │ ├── assets │ │ │ ├── audio.svg │ │ │ ├── chatgpt.svg │ │ │ ├── clip.svg │ │ │ ├── favicon.ico │ │ │ ├── huggingface.svg │ │ │ ├── logo.svg │ │ │ ├── setting.svg │ │ │ └── tailwind.css │ │ ├── components │ │ │ └── Loading.vue │ │ ├── config │ │ │ └── index.ts │ │ ├── main.ts │ │ ├── prompt │ │ │ └── index.ts │ │ ├── router │ │ │ └── index.ts │ │ ├── types │ │ │ └── index.ts │ │ └── views │ │ │ └── home.vue │ │ ├── tailwind.config.js │ │ ├── tsconfig.config.json │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── source │ └── target ├── requirements.txt └── scripts ├── eval.py ├── git_utils.py ├── metrics.py └── pp_diff.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/SECURITY.md -------------------------------------------------------------------------------- /data/ext1/pred/codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/ext1/pred/codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/ext1/pred/codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /data/ext1/pred/codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/codeplan/diff.html -------------------------------------------------------------------------------- /data/ext1/pred/codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/codeplan/metrics.json -------------------------------------------------------------------------------- /data/ext1/pred/codeplan/repo/src/Reactive.Streams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/codeplan/repo/src/Reactive.Streams.sln -------------------------------------------------------------------------------- /data/ext1/pred/codeplan/repo/src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/codeplan/repo/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /data/ext1/pred/repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/ext1/pred/repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/ext1/pred/repair/blocks/spurious.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/blocks/spurious.txt -------------------------------------------------------------------------------- /data/ext1/pred/repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/diff.html -------------------------------------------------------------------------------- /data/ext1/pred/repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/metrics.json -------------------------------------------------------------------------------- /data/ext1/pred/repair/repo/src/Reactive.Streams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/repo/src/Reactive.Streams.sln -------------------------------------------------------------------------------- /data/ext1/pred/repair/repo/src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/repo/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /data/ext1/pred/repair/repo/src/tck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/pred/repair/repo/src/tck/README.md -------------------------------------------------------------------------------- /data/ext1/pred/repair/repo/src/tck/Reactive.Streams.TCK.Tests/RangePublisherTest.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ext1/source/src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/source/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /data/ext1/source/src/api/Reactive.Streams/IProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/source/src/api/Reactive.Streams/IProcessor.cs -------------------------------------------------------------------------------- /data/ext1/source/src/api/Reactive.Streams/IPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/source/src/api/Reactive.Streams/IPublisher.cs -------------------------------------------------------------------------------- /data/ext1/source/src/api/Reactive.Streams/ISubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/source/src/api/Reactive.Streams/ISubscriber.cs -------------------------------------------------------------------------------- /data/ext1/source/src/api/Reactive.Streams/ISubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/source/src/api/Reactive.Streams/ISubscription.cs -------------------------------------------------------------------------------- /data/ext1/source/src/tck/Reactive.Streams.TCK/Support/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/source/src/tck/Reactive.Streams.TCK/Support/Option.cs -------------------------------------------------------------------------------- /data/ext1/source/src/tck/Reactive.Streams.TCK/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/source/src/tck/Reactive.Streams.TCK/TestEnvironment.cs -------------------------------------------------------------------------------- /data/ext1/target/src/Reactive.Streams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/Reactive.Streams.sln -------------------------------------------------------------------------------- /data/ext1/target/src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /data/ext1/target/src/api/Reactive.Streams/IProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/api/Reactive.Streams/IProcessor.cs -------------------------------------------------------------------------------- /data/ext1/target/src/api/Reactive.Streams/IPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/api/Reactive.Streams/IPublisher.cs -------------------------------------------------------------------------------- /data/ext1/target/src/api/Reactive.Streams/ISubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/api/Reactive.Streams/ISubscriber.cs -------------------------------------------------------------------------------- /data/ext1/target/src/api/Reactive.Streams/ISubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/api/Reactive.Streams/ISubscription.cs -------------------------------------------------------------------------------- /data/ext1/target/src/tck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/tck/README.md -------------------------------------------------------------------------------- /data/ext1/target/src/tck/Reactive.Streams.TCK/Support/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/tck/Reactive.Streams.TCK/Support/Option.cs -------------------------------------------------------------------------------- /data/ext1/target/src/tck/Reactive.Streams.TCK/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext1/target/src/tck/Reactive.Streams.TCK/TestEnvironment.cs -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/blocks/missed.txt -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/blocks/untouched.txt -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/diff.html -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/metrics.json -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/.github/CODEOWNERS -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/.gitignore -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/GitVersion.yml: -------------------------------------------------------------------------------- 1 | mode: Mainline -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/LICENSE -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/README.md -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/azure-pipelines.yml -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/azure/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/azure/template.json -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/src/QnA.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/src/QnA.postman_collection.json -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/Program.cs -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/Startup.cs -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/nlog.config -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.Api/web.config -------------------------------------------------------------------------------- /data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan/repo/src/SFA.DAS.QnA.sln -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/blocks/matched.txt -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/blocks/missed.txt -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/blocks/spurious.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/blocks/spurious.txt -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/blocks/untouched.txt -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/diff.html -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/metrics.json -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/repo/.github/CODEOWNERS -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/repo/.gitignore -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/GitVersion.yml: -------------------------------------------------------------------------------- 1 | mode: Mainline -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/repo/LICENSE -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/repo/README.md -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/repo/azure-pipelines.yml -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/azure/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/repo/azure/template.json -------------------------------------------------------------------------------- /data/ext2/pred/codeplan_iter_2/repo/src/SFA.DAS.QnA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/codeplan_iter_2/repo/src/SFA.DAS.QnA.sln -------------------------------------------------------------------------------- /data/ext2/pred/repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/ext2/pred/repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/ext2/pred/repair/blocks/spurious.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/blocks/spurious.txt -------------------------------------------------------------------------------- /data/ext2/pred/repair/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/blocks/untouched.txt -------------------------------------------------------------------------------- /data/ext2/pred/repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/diff.html -------------------------------------------------------------------------------- /data/ext2/pred/repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/metrics.json -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/.github/CODEOWNERS -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/.gitignore -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/GitVersion.yml: -------------------------------------------------------------------------------- 1 | mode: Mainline -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/LICENSE -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/README.md -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/azure-pipelines.yml -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/azure/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/azure/template.json -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/pipeline-templates/job/code-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/pipeline-templates/job/code-build.yml -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/QnA.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/QnA.postman_collection.json -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Project.cs -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Section.cs -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Sequence.cs -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Workflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api.Types/Workflow.cs -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/Program.cs -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/Startup.cs -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/nlog.config -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.Api/web.config -------------------------------------------------------------------------------- /data/ext2/pred/repair/repo/src/SFA.DAS.QnA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/pred/repair/repo/src/SFA.DAS.QnA.sln -------------------------------------------------------------------------------- /data/ext2/source/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/.github/CODEOWNERS -------------------------------------------------------------------------------- /data/ext2/source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/.gitignore -------------------------------------------------------------------------------- /data/ext2/source/GitVersion.yml: -------------------------------------------------------------------------------- 1 | mode: Mainline -------------------------------------------------------------------------------- /data/ext2/source/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/LICENSE -------------------------------------------------------------------------------- /data/ext2/source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/README.md -------------------------------------------------------------------------------- /data/ext2/source/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/azure-pipelines.yml -------------------------------------------------------------------------------- /data/ext2/source/azure/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/azure/template.json -------------------------------------------------------------------------------- /data/ext2/source/pipeline-templates/job/code-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/pipeline-templates/job/code-build.yml -------------------------------------------------------------------------------- /data/ext2/source/src/QnA.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/QnA.postman_collection.json -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Client/QnaApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Client/QnaApiClient.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Client/QnaApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Client/QnaApiConfig.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/HandlerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/HandlerResponse.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Answer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Answer.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Condition.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Feedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Feedback.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Input.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Next.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Next.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Option.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Page.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/PageDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/PageDetails.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/QnAData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/QnAData.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/Question.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/TabularData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Page/TabularData.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Project.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Section.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Sequence.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/SkipPageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/SkipPageResponse.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/Workflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/Workflow.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/WorkflowSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/WorkflowSection.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Types/WorkflowSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Types/WorkflowSequence.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api.Views/ViewHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api.Views/ViewHelpers.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api/Program.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api/SFA.DAS.QnA.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api/SFA.DAS.QnA.Api.csproj -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api/Startup.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api/appsettings.json -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api/nlog.config -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Api/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Api/web.config -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Application/SystemTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Application/SystemTime.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Data/Entities/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Data/Entities/Application.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Data/Entities/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Data/Entities/EntityBase.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Data/QnaDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Data/QnaDataContext.cs -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Data/SFA.DAS.QnA.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Data/SFA.DAS.QnA.Data.csproj -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Database/Tables/Projects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Database/Tables/Projects.sql -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.Database/Tables/Workflows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.Database/Tables/Workflows.sql -------------------------------------------------------------------------------- /data/ext2/source/src/SFA.DAS.QnA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/source/src/SFA.DAS.QnA.sln -------------------------------------------------------------------------------- /data/ext2/target/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/.github/CODEOWNERS -------------------------------------------------------------------------------- /data/ext2/target/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/.gitignore -------------------------------------------------------------------------------- /data/ext2/target/GitVersion.yml: -------------------------------------------------------------------------------- 1 | mode: Mainline -------------------------------------------------------------------------------- /data/ext2/target/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/LICENSE -------------------------------------------------------------------------------- /data/ext2/target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/README.md -------------------------------------------------------------------------------- /data/ext2/target/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/azure-pipelines.yml -------------------------------------------------------------------------------- /data/ext2/target/azure/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/azure/template.json -------------------------------------------------------------------------------- /data/ext2/target/pipeline-templates/job/code-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/pipeline-templates/job/code-build.yml -------------------------------------------------------------------------------- /data/ext2/target/src/QnA.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/QnA.postman_collection.json -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Client/QnaApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Client/QnaApiClient.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Client/QnaApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Client/QnaApiConfig.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/HandlerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/HandlerResponse.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Answer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Answer.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Condition.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Feedback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Feedback.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Input.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Next.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Next.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Option.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Page.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/PageDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/PageDetails.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/QnAData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/QnAData.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/Question.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/TabularData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Page/TabularData.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Project.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Section.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Sequence.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/SkipPageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/SkipPageResponse.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/Workflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/Workflow.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/WorkflowSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/WorkflowSection.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Types/WorkflowSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Types/WorkflowSequence.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api.Views/ViewHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api.Views/ViewHelpers.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api/Program.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api/SFA.DAS.QnA.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api/SFA.DAS.QnA.Api.csproj -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api/Startup.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api/appsettings.json -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api/nlog.config -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Api/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Api/web.config -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Application/SystemTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Application/SystemTime.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Data/Entities/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Data/Entities/Application.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Data/Entities/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Data/Entities/EntityBase.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Data/QnaDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Data/QnaDataContext.cs -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Data/SFA.DAS.QnA.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Data/SFA.DAS.QnA.Data.csproj -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Database/Tables/Projects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Database/Tables/Projects.sql -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.Database/Tables/Workflows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.Database/Tables/Workflows.sql -------------------------------------------------------------------------------- /data/ext2/target/src/SFA.DAS.QnA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/ext2/target/src/SFA.DAS.QnA.sln -------------------------------------------------------------------------------- /data/t1/pred/codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/t1/pred/codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan/blocks/missed.txt -------------------------------------------------------------------------------- /data/t1/pred/codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t1/pred/codeplan/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t1/pred/codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan/diff.html -------------------------------------------------------------------------------- /data/t1/pred/codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan/metrics.json -------------------------------------------------------------------------------- /data/t1/pred/codeplan/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan/repo -------------------------------------------------------------------------------- /data/t1/pred/codeplan_no_context/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan_no_context/blocks/matched.txt -------------------------------------------------------------------------------- /data/t1/pred/codeplan_no_context/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan_no_context/blocks/missed.txt -------------------------------------------------------------------------------- /data/t1/pred/codeplan_no_context/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t1/pred/codeplan_no_context/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan_no_context/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t1/pred/codeplan_no_context/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan_no_context/diff.html -------------------------------------------------------------------------------- /data/t1/pred/codeplan_no_context/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan_no_context/metrics.json -------------------------------------------------------------------------------- /data/t1/pred/codeplan_no_context/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/codeplan_no_context/repo -------------------------------------------------------------------------------- /data/t1/pred/coeditor_codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_codeplan/blocks/missed.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t1/pred/coeditor_codeplan/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_codeplan/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_codeplan/diff.html -------------------------------------------------------------------------------- /data/t1/pred/coeditor_codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_codeplan/metrics.json -------------------------------------------------------------------------------- /data/t1/pred/coeditor_codeplan/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_codeplan/repo -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair/diff.html -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair/metrics.json -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair/repo -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair_strict/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair_strict/blocks/matched.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair_strict/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair_strict/blocks/missed.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair_strict/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair_strict/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair_strict/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair_strict/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair_strict/diff.html -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair_strict/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair_strict/metrics.json -------------------------------------------------------------------------------- /data/t1/pred/coeditor_repair_strict/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/coeditor_repair_strict/repo -------------------------------------------------------------------------------- /data/t1/pred/repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/t1/pred/repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/t1/pred/repair/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t1/pred/repair/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t1/pred/repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair/diff.html -------------------------------------------------------------------------------- /data/t1/pred/repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair/metrics.json -------------------------------------------------------------------------------- /data/t1/pred/repair/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair/repo -------------------------------------------------------------------------------- /data/t1/pred/repair_strict/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair_strict/blocks/matched.txt -------------------------------------------------------------------------------- /data/t1/pred/repair_strict/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair_strict/blocks/missed.txt -------------------------------------------------------------------------------- /data/t1/pred/repair_strict/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t1/pred/repair_strict/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair_strict/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t1/pred/repair_strict/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair_strict/diff.html -------------------------------------------------------------------------------- /data/t1/pred/repair_strict/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair_strict/metrics.json -------------------------------------------------------------------------------- /data/t1/pred/repair_strict/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/pred/repair_strict/repo -------------------------------------------------------------------------------- /data/t1/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/source -------------------------------------------------------------------------------- /data/t1/target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t1/target -------------------------------------------------------------------------------- /data/t2/pred/codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/t2/pred/codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /data/t2/pred/codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t2/pred/codeplan/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t2/pred/codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan/diff.html -------------------------------------------------------------------------------- /data/t2/pred/codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan/metrics.json -------------------------------------------------------------------------------- /data/t2/pred/codeplan/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan/repo -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/blocks/matched.txt -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/blocks/missed.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/blocks/spurious.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/blocks/spurious.txt -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/diff.html -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/metrics.json -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/.gitignore -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/CHANGELOG.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/CONTRIBUTING.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/LICENSE -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/LICENSE_weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/LICENSE_weights -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/MANIFEST.in -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/Makefile -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/README.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/assets/bach.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/assets/bach.mp3 -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/assets/bolero_ravel.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/assets/bolero_ravel.mp3 -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/audiocraft/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/data/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/audiocraft/data/audio.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/data/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/audiocraft/data/zip.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/models/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/audiocraft/models/lm.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/optim/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/audiocraft/optim/ema.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/optim/fsdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/audiocraft/optim/fsdp.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/audiocraft/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/audiocraft/train.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/config/config.yaml -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/config/dset/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/config/dset/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/config/model/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/config/model/none.yaml -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/config/teams/labs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/config/teams/labs.yaml -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/demos/musicgen_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/demos/musicgen_app.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/AUDIOGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/AUDIOGEN.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/CONDITIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/CONDITIONING.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/DATASETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/DATASETS.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/ENCODEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/ENCODEC.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/MBD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/MBD.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/METRICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/METRICS.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/MUSICGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/MUSICGEN.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/docs/TRAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/docs/TRAINING.md -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/egs/example/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/egs/example/data.jsonl -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/mypy.ini -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/requirements.txt -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/scripts/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/scripts/mos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/scripts/mos.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/scripts/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/scripts/static/style.css -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/setup.cfg -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/setup.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/tests/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/tests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/tests/data/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/tests/data/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/tests/data/test_audio.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/tests/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/tests/losses/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/codeplan_no_context/repo/tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/codeplan_no_context/repo/tests/utils/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_codeplan/blocks/missed.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t2/pred/coeditor_codeplan/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_codeplan/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_codeplan/diff.html -------------------------------------------------------------------------------- /data/t2/pred/coeditor_codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_codeplan/metrics.json -------------------------------------------------------------------------------- /data/t2/pred/coeditor_codeplan/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_codeplan/repo -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/diff.html -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/metrics.json -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/.gitignore -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/CHANGELOG.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/CONTRIBUTING.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/LICENSE -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/LICENSE_weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/LICENSE_weights -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/MANIFEST.in -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/Makefile -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/README.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/assets/bach.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/assets/bach.mp3 -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/assets/bolero_ravel.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/assets/bolero_ravel.mp3 -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/data/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/data/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/data/audio.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/data/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/data/zip.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/environment.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/grids/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/grids/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/losses/sisnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/losses/sisnr.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/metrics/fad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/metrics/fad.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/metrics/kld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/metrics/kld.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/metrics/rvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/metrics/rvm.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/metrics/visqol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/metrics/visqol.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/models/encodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/models/encodec.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/models/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/models/lm.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/models/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/models/loaders.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/models/unet.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/modules/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/modules/chroma.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/modules/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/modules/conv.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/modules/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/modules/lstm.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/modules/rope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/modules/rope.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/modules/seanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/modules/seanet.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/optim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/optim/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/optim/dadam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/optim/dadam.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/optim/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/optim/ema.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/optim/fsdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/optim/fsdp.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/solvers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/solvers/base.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/train.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/autocast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/autocast.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/cache.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/cluster.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/deadlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/deadlock.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/export.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/notebook.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/profiler.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/audiocraft/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/audiocraft/utils/utils.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/conditioner/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/conditioner/none.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/config.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/dset/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/dset/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/model/lm/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/model/lm/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/model/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/model/none.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/solver/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/solver/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/teams/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/teams/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/config/teams/labs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/config/teams/labs.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/demos/audiogen_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/demos/audiogen_demo.ipynb -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/demos/musicgen_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/demos/musicgen_app.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/demos/musicgen_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/demos/musicgen_demo.ipynb -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/AUDIOGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/AUDIOGEN.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/CONDITIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/CONDITIONING.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/DATASETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/DATASETS.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/ENCODEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/ENCODEC.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/MBD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/MBD.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/METRICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/METRICS.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/MUSICGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/MUSICGEN.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/docs/TRAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/docs/TRAINING.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/egs/example/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/egs/example/data.jsonl -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/mypy.ini -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/requirements.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/scripts/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/scripts/mos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/scripts/mos.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/scripts/resample_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/scripts/resample_dataset.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/scripts/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/scripts/static/style.css -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/scripts/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/scripts/templates/base.html -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/scripts/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/scripts/templates/index.html -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/scripts/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/scripts/templates/login.html -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/setup.cfg -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/setup.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/data/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/data/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/data/test_audio.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/losses/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/losses/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/losses/test_losses.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/modules/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/modules/test_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/modules/test_conv.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/modules/test_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/modules/test_lstm.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/modules/test_rope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/modules/test_rope.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/modules/test_seanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/modules/test_seanet.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair/repo/tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair/repo/tests/utils/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/blocks/matched.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/blocks/missed.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/diff.html -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/metrics.json -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/.gitignore -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/CHANGELOG.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/CONTRIBUTING.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/LICENSE -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/LICENSE_weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/LICENSE_weights -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/MANIFEST.in -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/Makefile -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/README.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/assets/bach.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/assets/bach.mp3 -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/audiocraft/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/audiocraft/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/audiocraft/train.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/config/config.yaml -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/demos/musicgen_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/demos/musicgen_app.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/AUDIOGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/AUDIOGEN.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/CONDITIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/CONDITIONING.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/DATASETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/DATASETS.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/ENCODEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/ENCODEC.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/MBD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/MBD.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/METRICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/METRICS.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/MUSICGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/MUSICGEN.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/docs/TRAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/docs/TRAINING.md -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/mypy.ini -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/requirements.txt -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/scripts/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/scripts/mos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/scripts/mos.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/setup.cfg -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/setup.py -------------------------------------------------------------------------------- /data/t2/pred/coeditor_repair_strict/repo/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/coeditor_repair_strict/repo/tests/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/t2/pred/repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/t2/pred/repair/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t2/pred/repair/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t2/pred/repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair/diff.html -------------------------------------------------------------------------------- /data/t2/pred/repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair/metrics.json -------------------------------------------------------------------------------- /data/t2/pred/repair/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair/repo -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/blocks/matched.txt -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/blocks/missed.txt -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/diff.html -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/metrics.json -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/.gitignore -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/CHANGELOG.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/CONTRIBUTING.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/LICENSE -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/LICENSE_weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/LICENSE_weights -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/MANIFEST.in -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/Makefile -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/README.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/assets/bach.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/assets/bach.mp3 -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/assets/bolero_ravel.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/assets/bolero_ravel.mp3 -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/data/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/data/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/data/audio.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/data/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/data/audio_utils.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/data/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/data/zip.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/environment.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/grids/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/grids/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/losses/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/losses/balancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/losses/balancer.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/losses/sisnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/losses/sisnr.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/losses/specloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/losses/specloss.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/losses/stftloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/losses/stftloss.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/metrics/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/metrics/fad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/metrics/fad.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/metrics/kld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/metrics/kld.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/metrics/rvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/metrics/rvm.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/metrics/visqol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/metrics/visqol.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/audiogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/audiogen.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/builders.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/encodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/encodec.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/lm.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/loaders.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/musicgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/musicgen.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/models/unet.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/modules/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/modules/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/modules/chroma.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/modules/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/modules/conv.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/modules/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/modules/lstm.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/modules/rope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/modules/rope.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/modules/seanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/modules/seanet.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/optim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/optim/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/optim/dadam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/optim/dadam.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/optim/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/optim/ema.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/optim/fsdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/optim/fsdp.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/quantization/vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/quantization/vq.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/solvers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/solvers/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/solvers/audiogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/solvers/audiogen.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/solvers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/solvers/base.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/solvers/builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/solvers/builders.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/solvers/musicgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/solvers/musicgen.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/train.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/autocast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/autocast.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/best_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/best_state.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/cache.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/checkpoint.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/cluster.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/deadlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/deadlock.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/export.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/notebook.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/profiler.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/audiocraft/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/audiocraft/utils/utils.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/conditioner/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/conditioner/none.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/config.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/dset/audio/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/dset/audio/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/dset/audio/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/dset/audio/example.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/dset/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/dset/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/model/lm/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/model/lm/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/model/none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/model/none.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/model/score/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/model/score/basic.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/solver/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/solver/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/teams/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/teams/default.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/config/teams/labs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/config/teams/labs.yaml -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/dataset/example/electro_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/dataset/example/electro_1.json -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/dataset/example/electro_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/dataset/example/electro_1.mp3 -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/dataset/example/electro_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/dataset/example/electro_2.json -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/dataset/example/electro_2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/dataset/example/electro_2.mp3 -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/demos/audiogen_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/demos/audiogen_demo.ipynb -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/demos/musicgen_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/demos/musicgen_app.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/demos/musicgen_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/demos/musicgen_demo.ipynb -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/AUDIOGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/AUDIOGEN.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/CONDITIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/CONDITIONING.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/DATASETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/DATASETS.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/ENCODEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/ENCODEC.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/MBD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/MBD.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/METRICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/METRICS.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/MUSICGEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/MUSICGEN.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/docs/TRAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/docs/TRAINING.md -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/egs/example/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/egs/example/data.jsonl -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/mypy.ini -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/requirements.txt -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/mos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/mos.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/resample_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/resample_dataset.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/static/style.css -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/templates/base.html -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/templates/index.html -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/templates/login.html -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/templates/results.html -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/scripts/templates/survey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/scripts/templates/survey.html -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/setup.cfg -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/setup.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/adversarial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/adversarial/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/common_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/common_utils/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/data/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/data/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/data/test_audio.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/data/test_audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/data/test_audio_utils.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/losses/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/losses/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/losses/test_losses.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/models/test_audiogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/models/test_audiogen.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/models/test_musicgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/models/test_musicgen.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/modules/__init__.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/modules/test_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/modules/test_conv.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/modules/test_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/modules/test_lstm.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/modules/test_rope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/modules/test_rope.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/modules/test_seanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/modules/test_seanet.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/quantization/test_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/quantization/test_vq.py -------------------------------------------------------------------------------- /data/t2/pred/repair_strict/repo/tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/pred/repair_strict/repo/tests/utils/__init__.py -------------------------------------------------------------------------------- /data/t2/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/source -------------------------------------------------------------------------------- /data/t2/target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t2/target -------------------------------------------------------------------------------- /data/t3/pred/codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/t3/pred/codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /data/t3/pred/codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t3/pred/codeplan/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t3/pred/codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan/diff.html -------------------------------------------------------------------------------- /data/t3/pred/codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan/metrics.json -------------------------------------------------------------------------------- /data/t3/pred/codeplan/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan/repo -------------------------------------------------------------------------------- /data/t3/pred/codeplan_no_context/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan_no_context/blocks/matched.txt -------------------------------------------------------------------------------- /data/t3/pred/codeplan_no_context/blocks/missed.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /data/t3/pred/codeplan_no_context/blocks/spurious.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan_no_context/blocks/spurious.txt -------------------------------------------------------------------------------- /data/t3/pred/codeplan_no_context/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan_no_context/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t3/pred/codeplan_no_context/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan_no_context/diff.html -------------------------------------------------------------------------------- /data/t3/pred/codeplan_no_context/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan_no_context/metrics.json -------------------------------------------------------------------------------- /data/t3/pred/codeplan_no_context/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/codeplan_no_context/repo -------------------------------------------------------------------------------- /data/t3/pred/coeditor_codeplan/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_codeplan/blocks/matched.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_codeplan/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_codeplan/blocks/missed.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_codeplan/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t3/pred/coeditor_codeplan/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_codeplan/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_codeplan/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_codeplan/diff.html -------------------------------------------------------------------------------- /data/t3/pred/coeditor_codeplan/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_codeplan/metrics.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_codeplan/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_codeplan/repo -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/diff.html -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/metrics.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/.gitignore -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/CITATION.cff -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/CONTRIBUTING.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/LICENSE -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/README.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/SECURITY.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/SUPPORT.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/assets/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/assets/overview.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/assets/prompt_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/assets/prompt_flow.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/assets/screenshot_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/assets/screenshot_a.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/assets/screenshot_q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/assets/screenshot_q.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/awesome_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/awesome_chat.py -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/config.azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/config.azure.yaml -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/config.gradio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/config.gradio.yaml -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/config.yaml -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/data/p0_models.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/data/p0_models.jsonl -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/get_token_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/get_token_ids.py -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/lite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/lite.yaml -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/models/download.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/models/download.ps1 -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/models/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/models/download.sh -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/models_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/models_server.py -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/public/examples/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/public/examples/a.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/public/examples/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/public/examples/b.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/public/examples/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/public/examples/c.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/public/examples/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/public/examples/d.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/public/examples/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/public/examples/e.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/public/examples/f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/public/examples/f.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/public/examples/g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/public/examples/g.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/requirements.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/server/run_gradio_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/server/run_gradio_demo.py -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/electron/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/electron/.npmrc -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/electron/main.js -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/electron/package.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/electron/preload.js -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/index.html -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/package.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/postcss.config.js -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/public/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/public/audio.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/public/favicon.ico -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/public/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/public/video.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/App.vue -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/api/chatgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/api/chatgpt.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/api/hugginggpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/api/hugginggpt.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/assets/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/assets/audio.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/assets/chatgpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/assets/chatgpt.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/assets/clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/assets/clip.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/assets/favicon.ico -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/assets/logo.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/assets/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/assets/setting.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/assets/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/assets/tailwind.css -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/config/index.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/main.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/prompt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/prompt/index.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/router/index.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/types/index.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/src/views/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/src/views/home.vue -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/tailwind.config.js -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/tsconfig.config.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/tsconfig.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair/repo/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair/repo/web/vite.config.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/blocks/matched.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/blocks/missed.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/diff.html -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/metrics.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/.gitignore -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/CITATION.cff -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/CONTRIBUTING.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/LICENSE -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/README.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/SECURITY.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/SUPPORT.md -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/assets/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/assets/overview.jpg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/server/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/server/config.yaml -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/server/lite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/server/lite.yaml -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/electron/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/electron/.npmrc -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/electron/main.js -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/index.html -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/package.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/postcss.config.js -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/public/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/public/audio.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/public/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/public/video.svg -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/src/App.vue -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/src/main.ts -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/tsconfig.json -------------------------------------------------------------------------------- /data/t3/pred/coeditor_repair_strict/repo/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/coeditor_repair_strict/repo/web/vite.config.ts -------------------------------------------------------------------------------- /data/t3/pred/repair/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair/blocks/matched.txt -------------------------------------------------------------------------------- /data/t3/pred/repair/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair/blocks/missed.txt -------------------------------------------------------------------------------- /data/t3/pred/repair/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t3/pred/repair/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t3/pred/repair/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair/diff.html -------------------------------------------------------------------------------- /data/t3/pred/repair/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair/metrics.json -------------------------------------------------------------------------------- /data/t3/pred/repair/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair/repo -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/blocks/matched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/blocks/matched.txt -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/blocks/missed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/blocks/missed.txt -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/blocks/spurious.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/blocks/untouched.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/blocks/untouched.txt -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/diff.html -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/metrics.json -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/.gitignore -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/CITATION.cff -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/CONTRIBUTING.md -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/LICENSE -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/README.md -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/SECURITY.md -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/SUPPORT.md -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/assets/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/assets/overview.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/assets/prompt_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/assets/prompt_flow.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/assets/screenshot_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/assets/screenshot_a.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/assets/screenshot_q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/assets/screenshot_q.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/awesome_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/awesome_chat.py -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/config.azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/config.azure.yaml -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/config.gradio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/config.gradio.yaml -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/config.yaml -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/data/p0_models.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/data/p0_models.jsonl -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/get_token_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/get_token_ids.py -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/lite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/lite.yaml -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/models/download.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/models/download.ps1 -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/models/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/models/download.sh -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/models_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/models_server.py -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/public/examples/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/public/examples/a.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/public/examples/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/public/examples/b.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/public/examples/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/public/examples/c.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/public/examples/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/public/examples/d.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/public/examples/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/public/examples/e.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/public/examples/f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/public/examples/f.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/public/examples/g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/public/examples/g.jpg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/requirements.txt -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/server/run_gradio_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/server/run_gradio_demo.py -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/electron/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/electron/.npmrc -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/electron/main.js -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/electron/package.json -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/electron/preload.js -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/index.html -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/package.json -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/postcss.config.js -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/public/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/public/audio.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/public/favicon.ico -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/public/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/public/video.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/App.vue -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/api/chatgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/api/chatgpt.ts -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/api/hugginggpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/api/hugginggpt.ts -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/audio.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/chatgpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/chatgpt.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/clip.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/favicon.ico -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/huggingface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/huggingface.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/logo.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/setting.svg -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/assets/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/assets/tailwind.css -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/components/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/components/Loading.vue -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/config/index.ts -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/main.ts -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/prompt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/prompt/index.ts -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/router/index.ts -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/types/index.ts -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/src/views/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/src/views/home.vue -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/tailwind.config.js -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/tsconfig.config.json -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/tsconfig.json -------------------------------------------------------------------------------- /data/t3/pred/repair_strict/repo/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/pred/repair_strict/repo/web/vite.config.ts -------------------------------------------------------------------------------- /data/t3/source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/source -------------------------------------------------------------------------------- /data/t3/target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/data/t3/target -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | evaluate 3 | textdistance 4 | joblib 5 | -------------------------------------------------------------------------------- /scripts/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/scripts/eval.py -------------------------------------------------------------------------------- /scripts/git_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/scripts/git_utils.py -------------------------------------------------------------------------------- /scripts/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/scripts/metrics.py -------------------------------------------------------------------------------- /scripts/pp_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CodePlan/HEAD/scripts/pp_diff.py --------------------------------------------------------------------------------