├── .changeset ├── README.md ├── angry-lizards-count.md ├── chilly-cats-appear.md ├── config.json ├── eleven-socks-melt.md ├── fix-cve-2025-66478.md ├── green-bugs-drive.md ├── grumpy-plums-wave.md ├── hot-starfishes-explode.md ├── next-release.md ├── nice-bats-explain.md ├── real-cups-design.md ├── secure-nextjs-override.md └── stupid-cameras-hope.md ├── .cursor └── rules │ └── coding-style.mdc ├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── hub.md │ ├── pl.md │ └── user-bug.md ├── actions │ └── install │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── cleanup-vercel-deployments.yml │ ├── hub-scripts-image.yaml │ ├── metaforecast-image.yaml │ ├── prisma-migrate-preview.yml │ ├── prisma-migrate-prod.yml │ ├── release.yml │ └── reset-preview-db.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── fermi-contest-2025-02 │ ├── .gitignore │ ├── README.md │ ├── contest-description.md │ ├── data │ │ ├── evaluation-report.md │ │ ├── evaluation-results.json │ │ ├── manual-scores.json │ │ └── submissions.json │ ├── next-env.d.ts │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── app │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── lib │ │ │ │ └── data.ts │ │ │ ├── page.tsx │ │ │ ├── results │ │ │ │ └── page.tsx │ │ │ └── submissions │ │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── collect.ts │ │ ├── config.ts │ │ ├── evaluator.ts │ │ ├── index.ts │ │ ├── scripts │ │ │ ├── generate-report.ts │ │ │ ├── manual-compare.ts │ │ │ └── update-scores.ts │ │ └── types.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ └── vercel.json ├── hub │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── docs │ │ ├── cli.md │ │ ├── evals.md │ │ └── nextjs.md │ ├── esbuild.cjs │ ├── jest.config.mjs │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── ops │ │ ├── Dockerfile │ │ └── chart │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ └── script-deployments.yaml │ │ │ └── values.yaml │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── openapi-schema.json │ ├── src │ │ ├── ai │ │ │ ├── components │ │ │ │ └── LlmConfigDisplay.tsx │ │ │ ├── data │ │ │ │ ├── analytics.ts │ │ │ │ ├── loadWorkflows.ts │ │ │ │ ├── storage.ts │ │ │ │ ├── utils.ts │ │ │ │ ├── v1_0.ts │ │ │ │ └── v2_0.ts │ │ │ └── utils.ts │ │ ├── app │ │ │ ├── (frontpage) │ │ │ │ ├── definitions │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── epistemic-agents │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── evals │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── groups │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── question-sets │ │ │ │ │ ├── LayoutActions.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── variables │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── about │ │ │ │ └── page.tsx │ │ │ ├── admin │ │ │ │ ├── dev │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── search │ │ │ │ │ └── page.tsx │ │ │ │ ├── seed │ │ │ │ │ ├── actions.ts │ │ │ │ │ └── page.tsx │ │ │ │ └── upgrade-versions │ │ │ │ │ ├── UpgradeVersionsPage.tsx │ │ │ │ │ ├── compare │ │ │ │ │ ├── UpgradeButton.tsx │ │ │ │ │ ├── UpgradeableModel.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── ai │ │ │ │ ├── AiDashboard.tsx │ │ │ │ ├── Badge.tsx │ │ │ │ ├── LogsView.tsx │ │ │ │ ├── README.md │ │ │ │ ├── Sidebar.tsx │ │ │ │ ├── SquigglePlaygroundForWorkflow.tsx │ │ │ │ ├── StepStatusIcon.tsx │ │ │ │ ├── WorkflowSummaryList │ │ │ │ │ ├── WorkflowListAdminControls.tsx │ │ │ │ │ ├── WorkflowName.tsx │ │ │ │ │ ├── WorkflowStatusIcon.tsx │ │ │ │ │ ├── WorkflowSummaryItem.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── WorkflowViewer │ │ │ │ │ ├── ArtifactDisplay.tsx │ │ │ │ │ ├── ArtifactList.tsx │ │ │ │ │ ├── ArtifactMessages.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── PublishWorkflowButton.tsx │ │ │ │ │ ├── StepListItem.tsx │ │ │ │ │ ├── StepView.tsx │ │ │ │ │ ├── WorkflowSteps.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── analytics │ │ │ │ │ ├── ClientLayout.tsx │ │ │ │ │ ├── StepErrorList.tsx │ │ │ │ │ ├── code-errors │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── step-errors │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── api │ │ │ │ │ ├── create │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── system-prompt │ │ │ │ │ │ └── route.ts │ │ │ │ ├── page.tsx │ │ │ │ ├── useSquiggleWorkflows.tsx │ │ │ │ └── utils.ts │ │ │ ├── api │ │ │ │ ├── auth │ │ │ │ │ └── [...nextauth] │ │ │ │ │ │ └── route.ts │ │ │ │ ├── find-epistemic-agents │ │ │ │ │ └── route.ts │ │ │ │ ├── find-evaluations │ │ │ │ │ └── route.ts │ │ │ │ ├── find-owners │ │ │ │ │ └── route.ts │ │ │ │ ├── find-relative-values │ │ │ │ │ └── route.ts │ │ │ │ ├── get-group-models │ │ │ │ │ └── route.ts │ │ │ │ ├── get-source │ │ │ │ │ └── route.ts │ │ │ │ ├── runSquiggle │ │ │ │ │ └── route.ts │ │ │ │ └── search │ │ │ │ │ ├── route.ts │ │ │ │ │ └── schema.ts │ │ │ ├── benchmarks │ │ │ │ └── page.tsx │ │ │ ├── epistemic-agents │ │ │ │ ├── [id] │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── create │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── manifold │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── evals │ │ │ │ ├── EpistemicAgentsHelp.tsx │ │ │ │ ├── EvaluationsHelp.tsx │ │ │ │ ├── QuestionSetsHelp.tsx │ │ │ │ ├── compare │ │ │ │ │ ├── StickyComparisonHeader.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── eval │ │ │ │ │ └── [id] │ │ │ │ │ │ ├── RunSquiggle.tsx │ │ │ │ │ │ ├── not-found.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ └── layout.tsx │ │ │ ├── groups │ │ │ │ └── [slug] │ │ │ │ │ ├── GroupNav.tsx │ │ │ │ │ ├── invite-link │ │ │ │ │ ├── AcceptGroupInvitePage.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── members │ │ │ │ │ ├── AddUserToGroupAction.tsx │ │ │ │ │ ├── DeleteMembershipAction.tsx │ │ │ │ │ ├── GroupMemberCard.tsx │ │ │ │ │ ├── GroupMemberList.tsx │ │ │ │ │ ├── GroupReusableInviteSection.tsx │ │ │ │ │ ├── MembershipRoleButton.tsx │ │ │ │ │ ├── SetMembershipRoleAction.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── icon.png │ │ │ ├── layout.tsx │ │ │ ├── models │ │ │ │ └── [owner] │ │ │ │ │ └── [slug] │ │ │ │ │ ├── DeleteModelAction.tsx │ │ │ │ │ ├── FallbackLayout.tsx │ │ │ │ │ ├── ModelEntityNodes.tsx │ │ │ │ │ ├── ModelLayout.tsx │ │ │ │ │ ├── ModelPrivacyControls.tsx │ │ │ │ │ ├── ModelSettingsButton.tsx │ │ │ │ │ ├── MoveModelAction.tsx │ │ │ │ │ ├── UpdateModelSlugAction.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── relative-values │ │ │ │ │ └── [variableName] │ │ │ │ │ │ ├── CacheMenu │ │ │ │ │ │ ├── BuildRelativeValuesCacheAction.tsx │ │ │ │ │ │ ├── ClearRelativeValuesCacheAction.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── RelativeValuesModelLayout.tsx │ │ │ │ │ │ ├── Tabs.tsx │ │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── loading.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── plot │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── revisions │ │ │ │ │ ├── ModelRevisionsList.tsx │ │ │ │ │ ├── [revisionId] │ │ │ │ │ │ ├── ModelRevisionView.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── useFixModelUrlCasing.ts │ │ │ │ │ ├── variables │ │ │ │ │ └── [variableName] │ │ │ │ │ │ ├── VariableRevisionsPanel.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── revisions │ │ │ │ │ │ └── [revisionId] │ │ │ │ │ │ ├── VariableRevisionPage.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── view │ │ │ │ │ ├── ViewSquiggleSnippet.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── new │ │ │ │ ├── definition │ │ │ │ │ ├── NewDefinition.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── group │ │ │ │ │ ├── NewGroup.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── model │ │ │ │ │ ├── NewModel.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── not-found.tsx │ │ │ ├── privacy │ │ │ │ └── page.tsx │ │ │ ├── question-sets │ │ │ │ ├── [id] │ │ │ │ │ ├── not-found.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── create │ │ │ │ │ ├── github │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── metaforecast │ │ │ │ │ ├── CreateFromMetaforecastForm.tsx │ │ │ │ │ ├── ManifoldMarketsList.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── relative-values │ │ │ │ └── [owner] │ │ │ │ │ └── [slug] │ │ │ │ │ ├── DefinitionLayout.tsx │ │ │ │ │ ├── DeleteRelativeValuesDefinitionAction.tsx │ │ │ │ │ ├── RelativeValuesDefinitionPage.tsx │ │ │ │ │ ├── edit │ │ │ │ │ ├── EditRelativeValuesDefinition.tsx │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── settings │ │ │ │ └── choose-username │ │ │ │ │ ├── ChooseUsername.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── status │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── terms │ │ │ │ └── page.tsx │ │ │ └── users │ │ │ │ └── [username] │ │ │ │ ├── UserNav.tsx │ │ │ │ ├── definitions │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── groups │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── variables │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── EntityCard.tsx │ │ │ ├── EntityInfo.tsx │ │ │ ├── EntityLayout.tsx │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── ExitConfirmationWrapper │ │ │ │ ├── ConfirmNavigationModal.tsx │ │ │ │ ├── context.ts │ │ │ │ ├── hooks.ts │ │ │ │ └── index.tsx │ │ │ ├── FrontpageNav │ │ │ │ ├── FrontpageNavDesktopHeader.tsx │ │ │ │ ├── MobileFrontpageNavHeaderText.tsx │ │ │ │ └── index.tsx │ │ │ ├── GlobalSearch │ │ │ │ ├── SearchResult.tsx │ │ │ │ ├── SearchResultBox.tsx │ │ │ │ ├── SearchResultGroup.tsx │ │ │ │ ├── SearchResultModel.tsx │ │ │ │ ├── SearchResultRelativeValuesDefinition.tsx │ │ │ │ ├── SearchResultTItle.tsx │ │ │ │ ├── SearchResultUser.tsx │ │ │ │ ├── Snippet.tsx │ │ │ │ ├── TextSnippet.tsx │ │ │ │ └── index.tsx │ │ │ ├── GroupLink.tsx │ │ │ ├── LoadMore.tsx │ │ │ ├── LoadMoreViaSearchParam.tsx │ │ │ ├── NewModelButton.tsx │ │ │ ├── NoEntitiesCard.tsx │ │ │ ├── ReactRoot.tsx │ │ │ ├── SelectGroup.tsx │ │ │ ├── SelectOwner.tsx │ │ │ ├── SelectUser.tsx │ │ │ ├── UsernameLink.tsx │ │ │ ├── WithAuth │ │ │ │ ├── RedirectToLogin.tsx │ │ │ │ └── index.tsx │ │ │ ├── admin │ │ │ │ ├── AdminControls.tsx │ │ │ │ └── AdminProvider.tsx │ │ │ ├── exports │ │ │ │ ├── EditRelativeValueExports.tsx │ │ │ │ └── SelectRelativeValuesDefinition.tsx │ │ │ ├── layout │ │ │ │ ├── FullLayoutWithPadding.tsx │ │ │ │ ├── MainAreaLayout.tsx │ │ │ │ ├── NarrowPageLayout.tsx │ │ │ │ ├── RootLayout │ │ │ │ │ ├── DesktopUserControls.tsx │ │ │ │ │ ├── DropdownWithArrow.tsx │ │ │ │ │ ├── MyGroupsMenu.tsx │ │ │ │ │ ├── SiteFooter.tsx │ │ │ │ │ ├── SiteFooterIfNecessary.tsx │ │ │ │ │ ├── TopMenu.tsx │ │ │ │ │ ├── TopMenuLink.tsx │ │ │ │ │ ├── UserControlsMenu.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useForceChooseUsername.ts │ │ │ │ └── WithNavMenuLayout.tsx │ │ │ └── ui │ │ │ │ ├── Card.tsx │ │ │ │ ├── CloseDropdownOnInvariantChange.tsx │ │ │ │ ├── DotsDropdown.tsx │ │ │ │ ├── DotsDropdownButton.tsx │ │ │ │ ├── DropdownButton.tsx │ │ │ │ ├── DropdownMenuNextLinkItem.tsx │ │ │ │ ├── EntityTab.tsx │ │ │ │ ├── ErrorBox.tsx │ │ │ │ ├── ExplanationBox.tsx │ │ │ │ ├── FormModal.tsx │ │ │ │ ├── Headers.tsx │ │ │ │ ├── KeyValue.tsx │ │ │ │ ├── Link.tsx │ │ │ │ ├── LinkButton.tsx │ │ │ │ ├── ModalHelp.tsx │ │ │ │ ├── PageMenu.tsx │ │ │ │ ├── SafeActionButton.tsx │ │ │ │ ├── SafeActionDropdownAction.tsx │ │ │ │ ├── SafeActionFormModal.tsx │ │ │ │ ├── SlugFormField.tsx │ │ │ │ ├── SmallHelp.tsx │ │ │ │ ├── StyledA.tsx │ │ │ │ ├── StyledDefinitionLink.tsx │ │ │ │ ├── StyledLink.tsx │ │ │ │ └── StyledTabLink.tsx │ │ ├── evals │ │ │ ├── actions │ │ │ │ ├── createManifoldEpistemicAgent.ts │ │ │ │ ├── createQuestionSetAction.ts │ │ │ │ ├── createQuestionSetFromMetaforecastAction.ts │ │ │ │ ├── createSquiggleAiEpistemicAgent.ts │ │ │ │ ├── deleteQuestionSet.ts │ │ │ │ └── evaluateQuestionSet.ts │ │ │ ├── components │ │ │ │ ├── CompareEvaluationsAction.tsx │ │ │ │ ├── CreateEpistemicAgentButton.tsx │ │ │ │ ├── CreateEpistemicAgentModal.tsx │ │ │ │ ├── DeleteQuestionSetAction.tsx │ │ │ │ ├── EvaluateQuestionSetAction.tsx │ │ │ │ ├── EvaluationDetails.tsx │ │ │ │ ├── EvaluationStateDisplay.tsx │ │ │ │ ├── EvaluationsTable.tsx │ │ │ │ ├── QuestionItem.tsx │ │ │ │ ├── QuestionSetActionsButton.tsx │ │ │ │ ├── QuestionsFieldArray.tsx │ │ │ │ └── SelectEpistemicAgent.tsx │ │ │ ├── data │ │ │ │ ├── detailsEvals.ts │ │ │ │ ├── epistemicAgents.ts │ │ │ │ ├── questionSets.ts │ │ │ │ ├── questions.ts │ │ │ │ └── summaryEvals.ts │ │ │ ├── lib │ │ │ │ ├── processEvaluation.ts │ │ │ │ ├── questionMetadata.ts │ │ │ │ └── runners.ts │ │ │ └── types.ts │ │ ├── groups │ │ │ ├── actions │ │ │ │ ├── acceptReusableGroupInviteTokenAction.ts │ │ │ │ ├── addUserToGroupAction.ts │ │ │ │ ├── createGroupAction.ts │ │ │ │ ├── createReusableGroupInviteTokenAction.ts │ │ │ │ ├── deleteMembershipAction.ts │ │ │ │ ├── deleteReusableGroupInviteTokenAction.ts │ │ │ │ └── updateMembershipRoleAction.ts │ │ │ ├── components │ │ │ │ ├── GroupCard.tsx │ │ │ │ └── GroupList.tsx │ │ │ └── data │ │ │ │ ├── groupCards.ts │ │ │ │ ├── helpers.ts │ │ │ │ └── members.ts │ │ ├── lib │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── hooks │ │ │ │ ├── useAvailableHeight.ts │ │ │ │ ├── useClientOnlyRender.ts │ │ │ │ ├── usePaginator.ts │ │ │ │ ├── useSafeActionForm.ts │ │ │ │ └── useUpdateSearchParams.ts │ │ │ ├── ownerIcon.ts │ │ │ ├── routes.ts │ │ │ ├── server │ │ │ │ ├── actionClient.ts │ │ │ │ ├── auth.ts │ │ │ │ ├── cli.ts │ │ │ │ ├── dataHelpers.ts │ │ │ │ ├── globalStatistics.ts │ │ │ │ ├── prisma.ts │ │ │ │ └── runSquiggle.ts │ │ │ ├── sleep.ts │ │ │ ├── typeIcon.ts │ │ │ ├── types.ts │ │ │ └── zodUtils.ts │ │ ├── metaforecast-questions │ │ │ └── data │ │ │ │ └── manifold-questions.ts │ │ ├── migrations │ │ │ ├── 20241012155427_workflow_format.ts │ │ │ └── README.md │ │ ├── models │ │ │ ├── actions │ │ │ │ ├── adminUpdateModelVersionAction.ts │ │ │ │ ├── createModelAction.ts │ │ │ │ ├── deleteModelAction.ts │ │ │ │ ├── loadModelCardAction.ts │ │ │ │ ├── moveModelAction.ts │ │ │ │ ├── updateModelPrivacyAction.ts │ │ │ │ ├── updateModelSlugAction.ts │ │ │ │ └── updateSquiggleSnippetModelAction.ts │ │ │ ├── authHelpers.ts │ │ │ ├── clientUtils.ts │ │ │ ├── components │ │ │ │ ├── ModelCard.tsx │ │ │ │ ├── ModelList.tsx │ │ │ │ └── ModelsHelp.tsx │ │ │ └── data │ │ │ │ ├── builds.ts │ │ │ │ ├── byVersion.ts │ │ │ │ ├── cards.ts │ │ │ │ ├── full.ts │ │ │ │ ├── fullRevision.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── revisions.ts │ │ │ │ └── writeableModel.ts │ │ ├── owners │ │ │ └── data │ │ │ │ ├── auth.ts │ │ │ │ ├── findOwners.ts │ │ │ │ └── owner.ts │ │ ├── public │ │ │ ├── logo-img.png │ │ │ └── logo.png │ │ ├── relative-values │ │ │ ├── actions │ │ │ │ ├── buildRelativeValuesCacheAction.ts │ │ │ │ ├── clearRelativeValuesCacheAction.ts │ │ │ │ ├── common.ts │ │ │ │ ├── createRelativeValuesDefinitionAction.ts │ │ │ │ ├── deleteRelativeValuesDefinitionAction.tsx │ │ │ │ └── updateRelativeValuesDefinitionAction.ts │ │ │ ├── components │ │ │ │ ├── RelativeValuesDefinitionCard.tsx │ │ │ │ ├── RelativeValuesDefinitionForm │ │ │ │ │ ├── FormShape.tsx │ │ │ │ │ ├── HTMLForm.tsx │ │ │ │ │ ├── JSONForm.tsx │ │ │ │ │ ├── SelectCluster.tsx │ │ │ │ │ ├── SelectRecommendedUnit.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── RelativeValuesDefinitionList.tsx │ │ │ │ ├── RelativeValuesDefinitionRevision.tsx │ │ │ │ ├── common │ │ │ │ │ ├── ClusterIcon.tsx │ │ │ │ │ └── ClusterInfo.tsx │ │ │ │ ├── ui │ │ │ │ │ ├── FormHeader.tsx │ │ │ │ │ └── icons │ │ │ │ │ │ ├── ArrowDownIcon.tsx │ │ │ │ │ │ ├── ArrowLeftIcon.tsx │ │ │ │ │ │ ├── ArrowRightIcon.tsx │ │ │ │ │ │ ├── ArrowUpIcon.tsx │ │ │ │ │ │ ├── ChipIcon.tsx │ │ │ │ │ │ ├── CompassIcon.tsx │ │ │ │ │ │ ├── FullGridIcon.tsx │ │ │ │ │ │ ├── HalfGridIcon.tsx │ │ │ │ │ │ ├── Icon.tsx │ │ │ │ │ │ └── ScaleIcon.tsx │ │ │ │ └── views │ │ │ │ │ ├── CellBox.tsx │ │ │ │ │ ├── ClusterFilter.tsx │ │ │ │ │ ├── GridView │ │ │ │ │ ├── AxisMenu.tsx │ │ │ │ │ ├── GridModeControls.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Header.tsx │ │ │ │ │ ├── ListView │ │ │ │ │ ├── ColumnHeader.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── sidebar.tsx │ │ │ │ │ ├── PlotView │ │ │ │ │ ├── ForcePlot.tsx │ │ │ │ │ ├── ItemTooltip.tsx │ │ │ │ │ ├── ValueAndUncertaintyPlot.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RelativeCell │ │ │ │ │ ├── ErrorCell.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RelativeValuesProvider.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useFilteredItems.ts │ │ │ │ │ └── useSortedItems.ts │ │ │ │ │ ├── numberShower.ts │ │ │ │ │ └── types.ts │ │ │ ├── data │ │ │ │ ├── cards.ts │ │ │ │ ├── exports.ts │ │ │ │ ├── findRelativeValuesForSelect.ts │ │ │ │ ├── full.ts │ │ │ │ └── fullExport.ts │ │ │ ├── lib │ │ │ │ └── utils.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── values │ │ │ │ ├── ModelEvaluator.ts │ │ │ │ ├── types.ts │ │ │ │ └── value.ts │ │ ├── scripts │ │ │ ├── buildRecentModelRevision │ │ │ │ ├── createVariableRevision.ts │ │ │ │ ├── main.ts │ │ │ │ └── worker.ts │ │ │ └── process-pending-evaluations.ts │ │ ├── search │ │ │ ├── actions │ │ │ │ └── adminRebuildSearchIndexAction.ts │ │ │ └── helpers.ts │ │ ├── squiggle │ │ │ └── components │ │ │ │ ├── EditSquiggleSnippetModel.tsx │ │ │ │ ├── ImportTooltip.tsx │ │ │ │ ├── SaveButton.tsx │ │ │ │ ├── SaveDialog.tsx │ │ │ │ └── SquiggleSnippetDraftDialog.tsx │ │ ├── styles │ │ │ └── main.css │ │ ├── types.d.ts │ │ ├── users │ │ │ ├── actions │ │ │ │ └── setUsernameAction.ts │ │ │ ├── auth.ts │ │ │ └── data │ │ │ │ └── layoutUser.ts │ │ └── variables │ │ │ ├── components │ │ │ ├── VariableCard.tsx │ │ │ ├── VariableList.tsx │ │ │ └── VariablesDropdown.tsx │ │ │ └── data │ │ │ ├── fullVariableRevision.ts │ │ │ ├── variableCards.ts │ │ │ └── variableRevisions.ts │ ├── tailwind.config.ts │ ├── test │ │ └── setup-db.ts │ ├── tsconfig.json │ ├── turbo.json │ └── vercel.json ├── metaforecast │ ├── .dockerignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── .vscode │ │ └── settings.json │ ├── LICENSE.md │ ├── README.md │ ├── codegen.yml │ ├── docs │ │ ├── coding-style.md │ │ ├── configuration.md │ │ ├── graphql.md │ │ ├── infra.md │ │ └── roadmap.md │ ├── env.example │ ├── graphql.config.yaml │ ├── input │ │ └── xrisk-questions.json │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── ops │ │ ├── Dockerfile │ │ ├── chart │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ └── jobs.yaml │ │ │ └── values.yaml │ │ └── tf │ │ │ ├── .gitignore │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── icons │ │ │ ├── favicon.svg │ │ │ ├── logo.svg │ │ │ └── logo2.svg │ │ ├── screenshot-cli.png │ │ └── screenshot-frontpage.png │ ├── schema.graphql │ ├── scripts │ │ ├── README.md │ │ ├── download-all.mjs │ │ ├── download-first-seen-today.mjs │ │ └── iframe-snippet.md │ ├── specification.json │ ├── src │ │ ├── Global.d.ts │ │ ├── _middleware.ts │ │ ├── app │ │ │ ├── (nav) │ │ │ │ ├── NavMenu.tsx │ │ │ │ ├── QueryForm.tsx │ │ │ │ ├── QuestionCardsList.tsx │ │ │ │ ├── SearchForm.tsx │ │ │ │ ├── SearchScreen.tsx │ │ │ │ ├── SearchUIProvider.tsx │ │ │ │ ├── ShowMore.tsx │ │ │ │ ├── about │ │ │ │ │ └── page.tsx │ │ │ │ ├── common.ts │ │ │ │ ├── dashboards │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── view │ │ │ │ │ │ └── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── queries.graphql │ │ │ │ ├── questions │ │ │ │ │ └── [id] │ │ │ │ │ │ ├── EmbedSection.tsx │ │ │ │ │ │ ├── Section.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── loading.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── status │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── queries.graphql │ │ │ │ └── tools │ │ │ │ │ ├── capture.png │ │ │ │ │ ├── dashboard.png │ │ │ │ │ ├── frontpage.png │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── twitter.png │ │ │ ├── (raw) │ │ │ │ ├── dashboards │ │ │ │ │ └── embed │ │ │ │ │ │ └── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── questions │ │ │ │ │ └── embed │ │ │ │ │ │ └── [id] │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── recursion │ │ │ │ │ └── page.tsx │ │ │ │ └── secretEmbed │ │ │ │ │ └── page.tsx │ │ │ ├── Root.tsx │ │ │ ├── api │ │ │ │ └── graphql │ │ │ │ │ └── route.ts │ │ │ ├── icon.svg │ │ │ └── layout.tsx │ │ ├── backend │ │ │ ├── cli │ │ │ │ ├── commands │ │ │ │ │ ├── all.ts │ │ │ │ │ ├── elastic.ts │ │ │ │ │ ├── frontpage.ts │ │ │ │ │ ├── platform-commands.ts │ │ │ │ │ └── shell.ts │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── dbUtils.ts │ │ │ ├── frontpage.ts │ │ │ ├── manual │ │ │ │ ├── count-uniq-history-entries.ts │ │ │ │ ├── pullSuperforecastsManually.sh │ │ │ │ └── setCookies.sh │ │ │ ├── platformRegistry.ts │ │ │ ├── platformUtils.ts │ │ │ ├── platforms │ │ │ │ ├── _example.ts │ │ │ │ ├── betfair.ts │ │ │ │ ├── fantasyscotus.ts │ │ │ │ ├── foretold.ts │ │ │ │ ├── givewellopenphil.ts │ │ │ │ ├── goodjudgment.ts │ │ │ │ ├── goodjudgmentopen.ts │ │ │ │ ├── guesstimate.ts │ │ │ │ ├── infer.ts │ │ │ │ ├── insight.ts │ │ │ │ ├── kalshi.ts │ │ │ │ ├── manifold │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── apiSchema.ts │ │ │ │ │ ├── extendedTables.ts │ │ │ │ │ ├── fetch.ts │ │ │ │ │ ├── fetchAndStore.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── marketsToQuestions.ts │ │ │ │ ├── metaculus │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── api2.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── polymarket │ │ │ │ │ ├── gamma.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── predictit.ts │ │ │ │ ├── rootclaim.ts │ │ │ │ ├── smarkets.ts │ │ │ │ ├── wildeford.ts │ │ │ │ └── xrisk.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── elastic.ts │ │ │ │ ├── fetchUtils.ts │ │ │ │ ├── getSecrets.ts │ │ │ │ ├── hash.ts │ │ │ │ ├── measureTime.ts │ │ │ │ ├── misc │ │ │ │ ├── process-forecasts-into-elicit.ts │ │ │ │ ├── process-forecasts-template.ts │ │ │ │ └── test.ts │ │ │ │ ├── sleep.ts │ │ │ │ └── toMarkdown.ts │ │ ├── common │ │ │ └── types.ts │ │ ├── graphql │ │ │ ├── builder.ts │ │ │ ├── introspection.json │ │ │ ├── print-schema.ts │ │ │ └── schema │ │ │ │ ├── dashboards.ts │ │ │ │ ├── frontpage.ts │ │ │ │ ├── index.ts │ │ │ │ ├── platforms.ts │ │ │ │ ├── questions.ts │ │ │ │ └── search.ts │ │ ├── styles │ │ │ └── main.css │ │ ├── utils.ts │ │ └── web │ │ │ ├── common │ │ │ ├── BoxedLink.tsx │ │ │ ├── Button.tsx │ │ │ ├── Card.tsx │ │ │ ├── Collapsible.tsx │ │ │ ├── CopyParagraph.tsx │ │ │ ├── CopyText.tsx │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── InfoBox.tsx │ │ │ ├── LineHeader.tsx │ │ │ ├── MultiSelectPlatform.tsx │ │ │ └── Spinner.tsx │ │ │ ├── dashboards │ │ │ └── queries.graphql │ │ │ ├── display │ │ │ ├── ButtonsForStars.tsx │ │ │ ├── DashboardCreator.tsx │ │ │ └── SliderElement.tsx │ │ │ ├── fragments.graphql │ │ │ ├── icons │ │ │ ├── Favicon.tsx │ │ │ ├── Logo.tsx │ │ │ ├── Logo2.tsx │ │ │ └── index.ts │ │ │ ├── questions │ │ │ ├── components │ │ │ │ ├── CaptureQuestion.tsx │ │ │ │ ├── HistoryChart │ │ │ │ │ ├── InnerChart.tsx │ │ │ │ │ ├── InnerChartPlaceholder.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── utils.ts │ │ │ │ ├── IndicatorsTable.tsx │ │ │ │ ├── PlatformLink.tsx │ │ │ │ ├── QuestionCard │ │ │ │ │ ├── QuestionFooter.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── QuestionChartOrVisualization.tsx │ │ │ │ ├── QuestionInfoRow.tsx │ │ │ │ ├── QuestionOptions.tsx │ │ │ │ ├── QuestionTitle.tsx │ │ │ │ └── Stars.tsx │ │ │ ├── queries.graphql │ │ │ └── utils.ts │ │ │ ├── urql.ts │ │ │ ├── utils.ts │ │ │ └── worker │ │ │ ├── searchWithElastic.ts │ │ │ └── uploadToImgur.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ └── vercel.json └── website │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── favicon.ico │ └── img │ │ ├── squiggle-logo.png │ │ └── squiggleAI.png │ ├── src │ ├── app │ │ ├── (home) │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── _meta.ts │ │ ├── api │ │ │ ├── documentation-bundle │ │ │ │ └── route.ts │ │ │ └── search │ │ │ │ └── route.ts │ │ ├── docs │ │ │ ├── [[...slug]] │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ ├── layout.tsx │ │ ├── playground │ │ │ ├── ClientPlayground.tsx │ │ │ ├── ShareButton.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ └── source.ts │ ├── components │ │ ├── DemoProjectStateViewer.tsx │ │ ├── Footer.tsx │ │ ├── HomepageFeatures.tsx │ │ ├── Resettable.tsx │ │ └── SquiggleEditor.tsx │ ├── layout.config.tsx │ ├── styles │ │ └── main.css │ └── utils │ │ └── useAvailableHeight.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── turbo.json │ └── vercel.json ├── evaluations ├── .eslintrc.js ├── README.md ├── package.json └── src │ ├── evaluate-quality.ts │ └── simple-evals.ts ├── import-sorter.json ├── internal-packages ├── ai │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── __tests__ │ │ ├── searchReplace_test.ts │ │ └── squiggleCodeWarnings_test.ts │ ├── babel.config.cjs │ ├── examples │ │ ├── bugs.squiggle │ │ └── housing.squiggle │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── Artifact.ts │ │ ├── Code.ts │ │ ├── LLMClient │ │ │ ├── AnthropicProvider.ts │ │ │ ├── LLMError.ts │ │ │ ├── OpenAIProvider.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── LLMStepInstance.ts │ │ ├── LLMStepTemplate.ts │ │ ├── Logger.ts │ │ ├── generateSummary.ts │ │ ├── index.ts │ │ ├── modelConfigs.ts │ │ ├── prompts.ts │ │ ├── scripts │ │ │ ├── fine-tuning-setup.ts │ │ │ ├── fine-tuning │ │ │ │ ├── favoriteExamples.ts │ │ │ │ └── setup.ts │ │ │ └── tests │ │ │ │ ├── create.ts │ │ │ │ └── edit.ts │ │ ├── serialization.ts │ │ ├── server.ts │ │ ├── squiggle │ │ │ ├── formatSquiggleCode.ts │ │ │ ├── processSquiggleCode.ts │ │ │ ├── searchReplace.ts │ │ │ ├── squiggleAutomaticChanges.ts │ │ │ ├── squiggleCodeWarnings.ts │ │ │ └── squiggleErrorSuggestions.ts │ │ ├── steps │ │ │ ├── adjustToFeedbackStep.ts │ │ │ ├── fixCodeUntilItRunsStep.ts │ │ │ ├── generateCodeStep.ts │ │ │ ├── matchStyleGuideStep.ts │ │ │ ├── registry.ts │ │ │ └── runAndFormatCodeStep.ts │ │ ├── types.ts │ │ └── workflows │ │ │ ├── Workflow.ts │ │ │ ├── WorkflowGuardHelpers.ts │ │ │ ├── WorkflowTemplate.ts │ │ │ ├── controllers.ts │ │ │ ├── createSquiggleWorkflowTemplate.ts │ │ │ ├── fixSquiggleWorkflowTemplate.ts │ │ │ ├── registry.ts │ │ │ └── streaming.ts │ └── tsconfig.json ├── configs │ ├── package.json │ ├── tsconfig.base.json │ └── tsconfig.nextjs.json ├── content │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── content-collections.ts │ ├── content │ │ ├── api │ │ │ ├── Boolean.mdx │ │ │ ├── Calculator.mdx │ │ │ ├── Common.mdx │ │ │ ├── Danger.mdx │ │ │ ├── Date.mdx │ │ │ ├── Dict.mdx │ │ │ ├── Dist.mdx │ │ │ ├── Duration.mdx │ │ │ ├── Input.mdx │ │ │ ├── List.mdx │ │ │ ├── Math.mdx │ │ │ ├── MixedSet.mdx │ │ │ ├── Number.mdx │ │ │ ├── Plot.mdx │ │ │ ├── PointSet.mdx │ │ │ ├── RelativeValues.mdx │ │ │ ├── SampleSet.mdx │ │ │ ├── Scale.mdx │ │ │ ├── Spec.mdx │ │ │ ├── String.mdx │ │ │ ├── Sym.mdx │ │ │ ├── System.mdx │ │ │ ├── Table.mdx │ │ │ └── Tag.mdx │ │ ├── docs │ │ │ ├── Changelog │ │ │ │ ├── index.mdx │ │ │ │ ├── meta.json │ │ │ │ ├── v0.10.0.mdx │ │ │ │ ├── v0.5.0.mdx │ │ │ │ ├── v0.5.1.mdx │ │ │ │ ├── v0.6.0.mdx │ │ │ │ ├── v0.7.0.mdx │ │ │ │ ├── v0.8.0.mdx │ │ │ │ ├── v0.8.4.mdx │ │ │ │ ├── v0.8.5.mdx │ │ │ │ ├── v0.8.6.mdx │ │ │ │ ├── v0.9.0.mdx │ │ │ │ ├── v0.9.2.mdx │ │ │ │ ├── v0.9.3.mdx │ │ │ │ ├── v0.9.4.mdx │ │ │ │ └── v0.9.5.mdx │ │ │ ├── Discussions │ │ │ │ └── Three-Formats-Of-Distributions.md │ │ │ ├── Ecosystem │ │ │ │ ├── BasicPrompt.mdx │ │ │ │ ├── Gallery.md │ │ │ │ ├── LLMStyleGuide.mdx │ │ │ │ ├── LanguageModels.md │ │ │ │ ├── SquiggleAI.md │ │ │ │ ├── Tooling.md │ │ │ │ └── meta.json │ │ │ ├── Guides │ │ │ │ ├── BasicTypes.mdx │ │ │ │ ├── Bugs.mdx │ │ │ │ ├── ControlFlow.mdx │ │ │ │ ├── Debugging.mdx │ │ │ │ ├── DistributionCreation.mdx │ │ │ │ ├── DistributionFunctions.mdx │ │ │ │ ├── Functions.mdx │ │ │ │ ├── Gotchas.mdx │ │ │ │ ├── LanguageFeatures.mdx │ │ │ │ ├── Roadmap.md │ │ │ │ └── meta.json │ │ │ ├── Internal │ │ │ │ ├── Grammar.md │ │ │ │ ├── Invariants.md │ │ │ │ ├── Processing-Confidence-Intervals.md │ │ │ │ ├── Runners.mdx │ │ │ │ ├── SqProject.mdx │ │ │ │ └── meta.json │ │ │ ├── index.mdx │ │ │ └── meta.json │ │ └── squiggleAiLibraries │ │ │ ├── helpers.yaml │ │ │ └── sTest.yaml │ ├── package.json │ ├── src │ │ ├── apiUtils.ts │ │ ├── collections │ │ │ ├── apiDocs.ts │ │ │ ├── docs.ts │ │ │ ├── meta.ts │ │ │ ├── rawApiDocs.ts │ │ │ ├── squiggleAiLibraries.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ └── prompts.ts │ ├── tsconfig.json │ └── turbo.json ├── hub-api-client │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── hub-db │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── prisma │ │ ├── migrations │ │ │ ├── 20230407020600_init │ │ │ │ └── migration.sql │ │ │ ├── 20230503054147_next_auth │ │ │ │ └── migration.sql │ │ │ ├── 20230503235043_username │ │ │ │ └── migration.sql │ │ │ ├── 20230505231412_models │ │ │ │ └── migration.sql │ │ │ ├── 20230506000717_snippet_code │ │ │ │ └── migration.sql │ │ │ ├── 20230506192233_rename_owner_id │ │ │ │ └── migration.sql │ │ │ ├── 20230506210326_model_slug │ │ │ │ └── migration.sql │ │ │ ├── 20230507011709_one_to_one_models │ │ │ │ └── migration.sql │ │ │ ├── 20230517185410_revisions │ │ │ │ └── migration.sql │ │ │ ├── 20230519040512_description │ │ │ │ └── migration.sql │ │ │ ├── 20230528044124_definitions │ │ │ │ └── migration.sql │ │ │ ├── 20230602000759_model_current_revision │ │ │ │ └── migration.sql │ │ │ ├── 20230602204039_recommended_unit │ │ │ │ └── migration.sql │ │ │ ├── 20230617194219_remove_revision_descriptions │ │ │ │ └── migration.sql │ │ │ ├── 20230628225944_citext │ │ │ │ └── migration.sql │ │ │ ├── 20230731052958_definition_current_revision │ │ │ │ └── migration.sql │ │ │ ├── 20230807215536_private_models │ │ │ │ └── migration.sql │ │ │ ├── 20230809204921_relation_indices │ │ │ │ └── migration.sql │ │ │ ├── 20230823211259_squiggle_version │ │ │ │ └── migration.sql │ │ │ ├── 20230914022115_rename_legacy_owner_id │ │ │ │ └── migration.sql │ │ │ ├── 20230914033258_groups_intermediate_schema │ │ │ │ └── migration.sql │ │ │ ├── 20230914043126_groups_deployed │ │ │ │ └── migration.sql │ │ │ ├── 20230914180005_drop_legacy_pre_group_fields │ │ │ │ └── migration.sql │ │ │ ├── 20230929014107_revision_author │ │ │ │ └── migration.sql │ │ │ ├── 20231107200459_revision_comments │ │ │ │ └── migration.sql │ │ │ ├── 20231108220823_model_exports │ │ │ │ └── migration.sql │ │ │ ├── 20231115210333_add_variable_type │ │ │ │ └── migration.sql │ │ │ ├── 20231117025418_model_export_docstring │ │ │ │ └── migration.sql │ │ │ ├── 20231123202517_reusable_invite_token │ │ │ │ └── migration.sql │ │ │ ├── 20231208194502_searchable │ │ │ │ └── migration.sql │ │ │ ├── 20240217215104_squiggle_snippet_seed │ │ │ │ └── migration.sql │ │ │ ├── 20240323172615_squiggle_snippet_default_env │ │ │ │ └── migration.sql │ │ │ ├── 20240405224331_model_export_is_current │ │ │ │ └── migration.sql │ │ │ ├── 20240407144130_model_revision_build │ │ │ │ └── migration.sql │ │ │ ├── 20240412183853_mode_export_to_variables │ │ │ │ └── migration.sql │ │ │ ├── 20240413012803_variable_current_revision_id │ │ │ │ └── migration.sql │ │ │ ├── 20240923182234_ai_workflows │ │ │ │ └── migration.sql │ │ │ ├── 20241012155427_workflow_format │ │ │ │ └── migration.sql │ │ │ ├── 20250314190328_evals │ │ │ │ └── migration.sql │ │ │ ├── 20250328205619_eval_renames │ │ │ │ └── migration.sql │ │ │ ├── 20250402000551_eval_owners │ │ │ │ └── migration.sql │ │ │ ├── 20250404001720_required_email │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ └── schema │ │ │ ├── ai.prisma │ │ │ ├── auth.prisma │ │ │ ├── group.prisma │ │ │ ├── model.prisma │ │ │ ├── owner.prisma │ │ │ ├── question.prisma │ │ │ ├── relative-values.prisma │ │ │ ├── schema.prisma │ │ │ ├── search.prisma │ │ │ └── variable.prisma │ ├── src │ │ ├── client.ts │ │ └── index.ts │ └── tsconfig.json ├── hub-linker │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── linker.ts │ │ └── sourceIds.ts │ └── tsconfig.json ├── metaforecast-db │ ├── .gitignore │ ├── package.json │ ├── prisma │ │ ├── migrations │ │ │ ├── 20220407201706_init │ │ │ │ └── migration.sql │ │ │ ├── 20220422193152_frontpage_ids │ │ │ │ └── migration.sql │ │ │ ├── 20220423191830_drop_stars_column │ │ │ │ └── migration.sql │ │ │ ├── 20220423192234_drop_old_frontpage_table │ │ │ │ └── migration.sql │ │ │ ├── 20220425220646_history_relation │ │ │ │ └── migration.sql │ │ │ ├── 20220519104640_new_timestamps │ │ │ │ └── migration.sql │ │ │ ├── 20220520195517_indices │ │ │ │ └── migration.sql │ │ │ ├── 20220526101259_no_timestamp_field │ │ │ │ └── migration.sql │ │ │ ├── 20220603165310_cascade_delete_frontpage │ │ │ │ └── migration.sql │ │ │ ├── 20230808003420_idref_index │ │ │ │ └── migration.sql │ │ │ ├── 20250302172557_2025_03_changes │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ └── schema.prisma │ ├── src │ │ ├── client.ts │ │ └── index.ts │ └── tsconfig.json ├── ops │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── changelog-cleanup.ts │ │ ├── changelog-utils.ts │ │ ├── changelog.cts │ │ ├── constants.cts │ │ ├── lib.ts │ │ ├── package-utils.ts │ │ ├── patch-js.ts │ │ ├── scripts │ │ │ ├── changeset-version.ts │ │ │ ├── cleanup-vercel-deployments.ts │ │ │ ├── generate-website-changelog.ts │ │ │ ├── post-publish.ts │ │ │ ├── publish-all.ts │ │ │ └── test-patch-js.ts │ │ └── website.ts │ └── tsconfig.json └── versioned-components │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── package.json │ ├── src │ ├── SquigglePlaygroundVersionPicker.tsx │ ├── SquiggleVersionShower.tsx │ ├── compareVersions.ts │ ├── hooks.ts │ ├── index.ts │ ├── playground.ts │ ├── predicates.ts │ ├── scripts │ │ └── compareVersions.ts │ ├── tailwind.cts │ ├── versionedSquiggleComponents.ts │ ├── versionedSquiggleLang.ts │ ├── versionedSquigglePackages.tsx │ └── versions.ts │ └── tsconfig.json ├── package.json ├── packages ├── components │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── .storybook │ │ ├── main.ts │ │ └── preview.tsx │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.cjs │ ├── jest.config.js │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── components │ │ │ ├── CodeEditor │ │ │ │ ├── codemirrorHooks.ts │ │ │ │ ├── errorsExtension.ts │ │ │ │ ├── fields.ts │ │ │ │ ├── formatSquiggleExtension.ts │ │ │ │ ├── gutter │ │ │ │ │ ├── focusGutterExtension.tsx │ │ │ │ │ └── gutterExtension.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── languageSupport │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── autocomplete.tsx │ │ │ │ │ ├── highlightingStyle.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── squiggle.grammar │ │ │ │ ├── lineWrappingExtension.ts │ │ │ │ ├── onChangeExtension.ts │ │ │ │ ├── onSubmitExtension.ts │ │ │ │ ├── profilerExtension.ts │ │ │ │ ├── themeExtension.ts │ │ │ │ ├── tooltips │ │ │ │ │ ├── HoverTooltip.tsx │ │ │ │ │ ├── ShowType.tsx │ │ │ │ │ ├── TooltipBox.tsx │ │ │ │ │ ├── TypeTooltip.tsx │ │ │ │ │ ├── ValueTooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── useSquiggleEditorView.ts │ │ │ │ ├── utils.ts │ │ │ │ └── viewNodeExtension.ts │ │ │ ├── PlaygroundSettings.tsx │ │ │ ├── ProjectProvider.ts │ │ │ ├── ProjectStateViewer │ │ │ │ ├── ActionLog.tsx │ │ │ │ ├── CustomEdge.tsx │ │ │ │ ├── CustomNode.tsx │ │ │ │ ├── NodeLabel.tsx │ │ │ │ ├── StateStats.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── SquiggleChart.tsx │ │ │ ├── SquiggleEditor.tsx │ │ │ ├── SquigglePlayground │ │ │ │ ├── LeftPlaygroundPanel │ │ │ │ │ ├── AutorunnerMenuItem.tsx │ │ │ │ │ ├── GlobalSettingsModal.tsx │ │ │ │ │ ├── RunMenuItem.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ResizableTwoPanelLayout.tsx │ │ │ │ └── index.tsx │ │ │ ├── SquiggleViewer │ │ │ │ ├── ItemSettingsMenuItems.tsx │ │ │ │ ├── SqViewNode.tsx │ │ │ │ ├── SquiggleValueChart.tsx │ │ │ │ ├── SquiggleValueMenu.tsx │ │ │ │ ├── SquiggleValuePreview.tsx │ │ │ │ ├── SquiggleValuePreviewRightSide.tsx │ │ │ │ ├── SquiggleValueResultViewer.tsx │ │ │ │ ├── ValueViewer │ │ │ │ │ ├── Body.tsx │ │ │ │ │ ├── Title.tsx │ │ │ │ │ ├── WithContext.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ViewerProvider.tsx │ │ │ │ ├── ZoomedInNavigation.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── keyboardNav │ │ │ │ │ ├── utils.ts │ │ │ │ │ ├── zoomedInSqValue.ts │ │ │ │ │ └── zoomedOutSqValue.ts │ │ │ │ └── utils.ts │ │ │ ├── ViewerWithMenuBar │ │ │ │ ├── Layout.tsx │ │ │ │ ├── Overlay.tsx │ │ │ │ ├── RandomizeSeedButton.tsx │ │ │ │ ├── SimulatingIndicator.tsx │ │ │ │ ├── ViewerBody.tsx │ │ │ │ ├── ViewerMenu.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── useViewerTabShortcuts.ts │ │ │ │ └── utils.ts │ │ │ └── ui │ │ │ │ ├── Alert.tsx │ │ │ │ ├── ErrorBoundary.tsx │ │ │ │ ├── FnDocumentation.tsx │ │ │ │ ├── FormComment.tsx │ │ │ │ ├── FormSection.tsx │ │ │ │ ├── NumberShower.tsx │ │ │ │ ├── PanelWithToolbar │ │ │ │ ├── ToolbarItem.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── SquiggleErrorAlert.tsx │ │ │ │ ├── SquiggleErrorListAlert.tsx │ │ │ │ └── Toggle.tsx │ │ ├── index.ts │ │ ├── lib │ │ │ ├── CodeSyntaxHighlighter.tsx │ │ │ ├── MarkdownViewer.tsx │ │ │ ├── constants.ts │ │ │ ├── d3 │ │ │ │ ├── index.ts │ │ │ │ └── patchedScales.ts │ │ │ ├── distributionUtils.ts │ │ │ ├── draw │ │ │ │ ├── CartesianFrame.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useCanvas.ts │ │ │ │ ├── useCanvasCursor.ts │ │ │ │ ├── useEffectRef.ts │ │ │ │ ├── useForceUpdate.ts │ │ │ │ ├── useInitialWidth.ts │ │ │ │ ├── usePlaygroundSettings.ts │ │ │ │ ├── useProjectActionLogger.ts │ │ │ │ ├── useProjectStateChangeLogger.ts │ │ │ │ ├── useSimulator.ts │ │ │ │ ├── useStabilizeObject.ts │ │ │ │ └── useUncontrolledCode.ts │ │ │ └── utility.ts │ │ ├── stories │ │ │ ├── CodeSyntaxHighlighter.stories.tsx │ │ │ ├── InternalComponents │ │ │ │ ├── FnDocumentation.stories.tsx │ │ │ │ └── PanelWithToolbar.stories.tsx │ │ │ ├── Intro.mdx │ │ │ ├── MarkdownViewer.stories.tsx │ │ │ ├── NumberShower.stories.tsx │ │ │ ├── SquiggleChart.stories.tsx │ │ │ ├── SquiggleChart │ │ │ │ ├── Basic.stories.tsx │ │ │ │ ├── Calculator.stories.tsx │ │ │ │ ├── DistributionSizes.stories.tsx │ │ │ │ ├── Distributions.stories.tsx │ │ │ │ ├── Functions.stories.tsx │ │ │ │ ├── ScatterPlot.stories.tsx │ │ │ │ ├── Specification.stories.tsx │ │ │ │ └── Table.stories.tsx │ │ │ ├── SquiggleEditor.stories.tsx │ │ │ ├── SquiggleErrorAlert.stories.tsx │ │ │ ├── SquigglePlayground.stories.tsx │ │ │ ├── SquigglePlayground │ │ │ │ ├── Imports.stories.tsx │ │ │ │ └── TypeInference.stories.tsx │ │ │ └── SquiggleViewer.stories.tsx │ │ ├── styles │ │ │ ├── common.css │ │ │ └── full.css │ │ ├── tailwind-plugin.cts │ │ └── widgets │ │ │ ├── ArrayWidget.tsx │ │ │ ├── BoolWidget.tsx │ │ │ ├── CalculatorWidget │ │ │ ├── Calculator.tsx │ │ │ ├── CalculatorInput.tsx │ │ │ ├── CalculatorResult.tsx │ │ │ ├── index.tsx │ │ │ ├── types.ts │ │ │ └── useSavedCalculatorState.tsx │ │ │ ├── DateWidget.tsx │ │ │ ├── DictWidget.tsx │ │ │ ├── DistWidget │ │ │ ├── DistProvider.tsx │ │ │ ├── DistributionsChart.tsx │ │ │ ├── SummaryTable.tsx │ │ │ ├── index.tsx │ │ │ └── utils.tsx │ │ │ ├── DurationWidget.tsx │ │ │ ├── LambdaWidget │ │ │ ├── FunctionChart │ │ │ │ ├── AutomaticFunctionChart.tsx │ │ │ │ ├── DistFunctionChart.tsx │ │ │ │ ├── ImageErrors.tsx │ │ │ │ ├── NumericFunctionChart.tsx │ │ │ │ └── utils.ts │ │ │ └── index.tsx │ │ │ ├── NumberWidget.tsx │ │ │ ├── PlotWidget │ │ │ ├── PlotTitle.tsx │ │ │ ├── RelativeValuesGridChart │ │ │ │ ├── RelativeValueCell.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── ScatterChart │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ │ ├── SpecificationWidget.tsx │ │ │ ├── SqTypeWithCount.tsx │ │ │ ├── StringWidget.tsx │ │ │ ├── TableChartWidget.tsx │ │ │ ├── VoidWidget.tsx │ │ │ ├── index.ts │ │ │ ├── registry.ts │ │ │ └── utils.ts │ ├── tailwind.config.ts │ ├── test │ │ ├── FixJSDOMEnvironment.ts │ │ ├── SquiggleEditor.test.tsx │ │ ├── SquigglePlayground.test.tsx │ │ ├── autocompletion.test.ts │ │ ├── autorun.test.tsx │ │ ├── basic.test.tsx │ │ ├── d3.test.ts │ │ ├── grammar.test.ts │ │ ├── highlighting.test.ts │ │ ├── multiplot.test.tsx │ │ ├── setup.ts │ │ └── viewProps.test.tsx │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── turbo.json │ ├── vercel.json │ └── vite.config.js ├── prettier-plugin │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.cjs │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── parser.ts │ │ ├── printer.ts │ │ ├── shared.ts │ │ ├── standalone.ts │ │ └── types.ts │ ├── test │ │ ├── annotations.test.ts │ │ ├── arrays.test.ts │ │ ├── blocks.test.ts │ │ ├── comments.test.ts │ │ ├── decorators.test.ts │ │ ├── dicts.test.ts │ │ ├── expressions.test.ts │ │ ├── helpers.ts │ │ ├── imports.test.ts │ │ ├── lambda.test.ts │ │ ├── let.test.ts │ │ ├── numbers.test.ts │ │ ├── pipes.test.ts │ │ ├── program.test.ts │ │ ├── strings.test.ts │ │ ├── ternary.test.ts │ │ ├── unit_type_signature.test.ts │ │ └── units.test.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── serializer │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.cjs │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── codec.ts │ │ ├── deserialization.ts │ │ ├── index.ts │ │ ├── serialization.ts │ │ └── types.ts │ ├── test │ │ └── main.test.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── squiggle-lang │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── Jstat_test.ts │ │ ├── SqProject │ │ │ ├── basic_test.ts │ │ │ ├── imports_test.ts │ │ │ ├── profiler_test.ts │ │ │ └── tutorial_1_test.ts │ │ ├── SqValue │ │ │ ├── SqLambda_test.ts │ │ │ ├── SqValuePath_test.ts │ │ │ ├── asJS_test.ts │ │ │ ├── context_test.ts │ │ │ └── docstring_test.ts │ │ ├── XYShape_test.ts │ │ ├── analysis │ │ │ ├── ast_test.ts │ │ │ ├── basic_test.ts │ │ │ ├── block_test.ts │ │ │ ├── builtins_test.ts │ │ │ ├── calls_test.ts │ │ │ ├── dict_test.ts │ │ │ ├── let_test.ts │ │ │ ├── list_test.ts │ │ │ └── ternary_test.ts │ │ ├── ast │ │ │ ├── parse_test.ts │ │ │ ├── unit_type_check_test.ts │ │ │ └── whitespace_test.ts │ │ ├── cli │ │ │ ├── parse_test.ts │ │ │ ├── print_ir_test.ts │ │ │ ├── run_test.ts │ │ │ └── usage_test.ts │ │ ├── compile │ │ │ ├── array_test.ts │ │ │ ├── call_test.ts │ │ │ ├── dict_test.ts │ │ │ ├── functions_test.ts │ │ │ ├── program_test.ts │ │ │ ├── refs_test.ts │ │ │ ├── tag_test.ts │ │ │ ├── ternary_test.ts │ │ │ ├── unary_test.ts │ │ │ └── values_test.ts │ │ ├── dists │ │ │ ├── AlgebraicShapeCombination_test.ts │ │ │ ├── Bandwidth_test.ts │ │ │ ├── Dotwise_test.ts │ │ │ ├── GenericDist_test.ts │ │ │ ├── Invariants │ │ │ │ ├── AlgebraicCombination_test.ts │ │ │ │ └── Means_test.ts │ │ │ ├── KDE_test.ts │ │ │ ├── LogKde_Test.ts │ │ │ ├── Mixture_test.ts │ │ │ ├── Scale_test.ts │ │ │ ├── Scoring │ │ │ │ ├── KlDivergence_test.ts │ │ │ │ └── WithScalarAnswer_test.ts │ │ │ ├── SplitContinuousAndDiscrete_test.ts │ │ │ ├── Symbolic_test.ts │ │ │ └── yTransform_test.ts │ │ ├── errors_test.ts │ │ ├── fixtures │ │ │ ├── distFixtures.ts │ │ │ ├── imports │ │ │ │ ├── lib.squiggle │ │ │ │ ├── lib2.squiggle │ │ │ │ └── main.squiggle │ │ │ └── relative-imports │ │ │ │ ├── common.squiggle │ │ │ │ ├── dir1 │ │ │ │ ├── common.squiggle │ │ │ │ └── lib.squiggle │ │ │ │ ├── dir2 │ │ │ │ ├── common.squiggle │ │ │ │ └── lib.squiggle │ │ │ │ └── main.squiggle │ │ ├── helpers │ │ │ ├── analysisHelpers.ts │ │ │ ├── cliHelpers.ts │ │ │ ├── compileHelpers.ts │ │ │ ├── distHelpers.ts │ │ │ ├── helpers.ts │ │ │ ├── projectHelpers.ts │ │ │ ├── reducerHelpers.ts │ │ │ ├── toBeOkOutput.ts │ │ │ └── toEqualSqValue.ts │ │ ├── library │ │ │ ├── FrType_test.ts │ │ │ ├── builtin_test.ts │ │ │ ├── calculator_test.ts │ │ │ ├── danger_test.ts │ │ │ ├── dict_test.ts │ │ │ ├── distOperations_test.ts │ │ │ ├── dist_test.ts │ │ │ ├── examples_test.ts │ │ │ ├── list_test.ts │ │ │ ├── math_test.ts │ │ │ ├── mixture_test.ts │ │ │ ├── number_test.ts │ │ │ ├── plot_test.ts │ │ │ ├── pointset_test.ts │ │ │ ├── sampleSet_test.ts │ │ │ ├── scalars_test.ts │ │ │ ├── scale_test.ts │ │ │ ├── scoring_test.ts │ │ │ ├── string_test.ts │ │ │ ├── sym_test.ts │ │ │ ├── tableChart_Test.ts │ │ │ └── tag_test.ts │ │ ├── public_smoke_test.ts │ │ ├── reducer │ │ │ ├── IError_test.ts │ │ │ ├── annotations_test.ts │ │ │ ├── array_test.ts │ │ │ ├── decorators_test.ts │ │ │ ├── exports_test.ts │ │ │ ├── frInput_test.ts │ │ │ ├── functionAssignment_test.ts │ │ │ ├── functionTricks_test.ts │ │ │ ├── inspect_test.ts │ │ │ ├── seeds_test.ts │ │ │ ├── stack_test.ts │ │ │ ├── stacktrace_test.ts │ │ │ ├── ternary_test.ts │ │ │ └── various_test.ts │ │ ├── serialization_test.ts │ │ ├── types │ │ │ ├── tDictWithArbitraryKeys_test.ts │ │ │ ├── tIntrinsic_test.ts │ │ │ └── tTuple_test.ts │ │ ├── utility │ │ │ ├── FormattedNumber_test.ts │ │ │ ├── MixedSet_test.ts │ │ │ ├── RangeSet_test.ts │ │ │ ├── compactTreeString_test.ts │ │ │ └── math_test.ts │ │ └── value │ │ │ ├── domain_test.ts │ │ │ └── value_test.ts │ ├── babel.config.cjs │ ├── bin │ │ └── squiggle.js │ ├── examples │ │ ├── decay.squiggle │ │ ├── givedirectly.squiggle │ │ └── wholenumberassignmentevaluation.squiggle │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── PointSet │ │ │ ├── AlgebraicShapeCombination.ts │ │ │ ├── Common.ts │ │ │ ├── Continuous.ts │ │ │ ├── Discrete.ts │ │ │ ├── Mixed.ts │ │ │ ├── MixedPoint.ts │ │ │ ├── PointSet.ts │ │ │ └── PointSetDist_Scoring.ts │ │ ├── XYShape.ts │ │ ├── analysis │ │ │ ├── Node.ts │ │ │ ├── NodeArray.ts │ │ │ ├── NodeBlock.ts │ │ │ ├── NodeBoolean.ts │ │ │ ├── NodeBracketLookup.ts │ │ │ ├── NodeCall.ts │ │ │ ├── NodeDecorator.ts │ │ │ ├── NodeDefunStatement.ts │ │ │ ├── NodeDict.ts │ │ │ ├── NodeDotLookup.ts │ │ │ ├── NodeExponentialUnitType.ts │ │ │ ├── NodeFloat.ts │ │ │ ├── NodeIdentifier.ts │ │ │ ├── NodeIdentifierDefinition.ts │ │ │ ├── NodeImport.ts │ │ │ ├── NodeInfixCall.ts │ │ │ ├── NodeInfixUnitType.ts │ │ │ ├── NodeKeyValue.ts │ │ │ ├── NodeLambda.ts │ │ │ ├── NodeLambdaParameter.ts │ │ │ ├── NodeLetStatement.ts │ │ │ ├── NodePipe.ts │ │ │ ├── NodeProgram.ts │ │ │ ├── NodeString.ts │ │ │ ├── NodeTernary.ts │ │ │ ├── NodeUnaryCall.ts │ │ │ ├── NodeUnitName.ts │ │ │ ├── NodeUnitTypeSignature.ts │ │ │ ├── NodeUnitValue.ts │ │ │ ├── context.ts │ │ │ ├── index.ts │ │ │ ├── toString.ts │ │ │ ├── types.ts │ │ │ └── unitTypeChecker.ts │ │ ├── ast │ │ │ ├── asserts.ts │ │ │ ├── operators.ts │ │ │ ├── parse.ts │ │ │ ├── peggyHelpers.ts │ │ │ ├── peggyParser.peggy │ │ │ ├── serialize.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── cli │ │ │ ├── CliPrinter.ts │ │ │ ├── colors.ts │ │ │ ├── commands │ │ │ │ ├── parse.ts │ │ │ │ ├── playground.ts │ │ │ │ ├── print-ir.ts │ │ │ │ └── run.tsx │ │ │ ├── index.ts │ │ │ ├── makeProgram.ts │ │ │ └── utils.ts │ │ ├── compiler │ │ │ ├── compileExpression.ts │ │ │ ├── compileImport.ts │ │ │ ├── compileStatement.ts │ │ │ ├── constants.ts │ │ │ ├── context.ts │ │ │ ├── index.ts │ │ │ ├── serialize.ts │ │ │ ├── toString.ts │ │ │ └── types.ts │ │ ├── custom-types │ │ │ └── index.d.ts │ │ ├── dists │ │ │ ├── BaseDist.ts │ │ │ ├── DistError.ts │ │ │ ├── PointSetDist.ts │ │ │ ├── SampleSetDist │ │ │ │ ├── bandwidth.ts │ │ │ │ ├── index.ts │ │ │ │ ├── kde.ts │ │ │ │ ├── logKde.ts │ │ │ │ ├── samplesToPointSetDist.ts │ │ │ │ └── splitContinuousAndDiscrete.ts │ │ │ ├── SymbolicDist │ │ │ │ ├── BaseSymbolicDist.ts │ │ │ │ ├── Bernoulli.ts │ │ │ │ ├── Beta.ts │ │ │ │ ├── Binomial.ts │ │ │ │ ├── Cauchy.ts │ │ │ │ ├── Exponential.ts │ │ │ │ ├── Gamma.ts │ │ │ │ ├── Logistic.ts │ │ │ │ ├── Lognormal.ts │ │ │ │ ├── Normal.ts │ │ │ │ ├── PointMass.ts │ │ │ │ ├── Poisson.ts │ │ │ │ ├── Triangular.ts │ │ │ │ ├── Uniform.ts │ │ │ │ └── index.ts │ │ │ ├── distOperations │ │ │ │ ├── algebraicCombination.ts │ │ │ │ ├── binaryOperations.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logScore.ts │ │ │ │ ├── mixture.ts │ │ │ │ ├── pointwiseCombination.ts │ │ │ │ └── scaleOperations.ts │ │ │ └── env.ts │ │ ├── errors │ │ │ ├── IError.ts │ │ │ └── messages.ts │ │ ├── fr │ │ │ ├── boolean.ts │ │ │ ├── calculator.ts │ │ │ ├── common.ts │ │ │ ├── danger.ts │ │ │ ├── date.ts │ │ │ ├── dict.ts │ │ │ ├── dist.ts │ │ │ ├── distUtil.ts │ │ │ ├── duration.ts │ │ │ ├── genericDist.ts │ │ │ ├── input.ts │ │ │ ├── list.ts │ │ │ ├── math.ts │ │ │ ├── mixedSet.ts │ │ │ ├── mixture.ts │ │ │ ├── number.ts │ │ │ ├── plot.ts │ │ │ ├── pointset.ts │ │ │ ├── relativeValues.ts │ │ │ ├── sampleset.ts │ │ │ ├── scale.ts │ │ │ ├── scoring.ts │ │ │ ├── specification.ts │ │ │ ├── string.ts │ │ │ ├── sym.ts │ │ │ ├── system.ts │ │ │ ├── table.ts │ │ │ ├── tag.ts │ │ │ └── units.ts │ │ ├── index.ts │ │ ├── library │ │ │ ├── FrInput.ts │ │ │ ├── FrType.ts │ │ │ ├── index.ts │ │ │ ├── numericConstants.ts │ │ │ ├── registry │ │ │ │ ├── core.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ └── squiggleDefinition.ts │ │ │ └── version.ts │ │ ├── magicNumbers.ts │ │ ├── operation.ts │ │ ├── operationError.ts │ │ ├── public │ │ │ ├── SqError.ts │ │ │ ├── SqLinker.ts │ │ │ ├── SqProject │ │ │ │ ├── ProjectState.ts │ │ │ │ ├── SqModule.ts │ │ │ │ ├── SqModuleOutput.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── SqValue │ │ │ │ ├── SqArray.ts │ │ │ │ ├── SqCalculator.ts │ │ │ │ ├── SqDict.ts │ │ │ │ ├── SqDistribution │ │ │ │ │ ├── SqDistributionError.ts │ │ │ │ │ ├── SqPointSet.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── SqDomain.ts │ │ │ │ ├── SqInput.ts │ │ │ │ ├── SqLambda.ts │ │ │ │ ├── SqPlot.ts │ │ │ │ ├── SqScale.ts │ │ │ │ ├── SqSpecification.ts │ │ │ │ ├── SqTableChart.ts │ │ │ │ ├── SqTags.ts │ │ │ │ └── index.ts │ │ │ ├── SqValueContext.ts │ │ │ ├── SqValuePath.ts │ │ │ └── parse.ts │ │ ├── reducer │ │ │ ├── FrameStack.ts │ │ │ ├── Reducer.ts │ │ │ ├── RunProfile.ts │ │ │ ├── Stack.ts │ │ │ ├── StackTrace.ts │ │ │ ├── index.ts │ │ │ └── lambda │ │ │ │ ├── BuiltinLambda.ts │ │ │ │ ├── FnDefinition.ts │ │ │ │ ├── FnInput.ts │ │ │ │ ├── UserDefinedLambda.ts │ │ │ │ └── index.ts │ │ ├── rng │ │ │ ├── alea.ts │ │ │ ├── index.ts │ │ │ ├── native.ts │ │ │ └── types.ts │ │ ├── run.ts │ │ ├── runners │ │ │ ├── AnyWorkerRunner.ts │ │ │ ├── BaseRunner.ts │ │ │ ├── EmbeddedRunner.ts │ │ │ ├── EmbeddedWithSerializationRunner.ts │ │ │ ├── NodeWorkerRunner.ts │ │ │ ├── PoolRunner.ts │ │ │ ├── WebWorkerRunner.ts │ │ │ ├── WithCacheLoaderRunner.ts │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── serialization.ts │ │ │ └── worker.ts │ │ ├── scripts │ │ │ ├── README.md │ │ │ ├── bench-map-reduce.ts │ │ │ ├── bench-map.ts │ │ │ ├── bench-sampleset-to-pointset.ts │ │ │ └── conversion │ │ │ │ ├── generators.ts │ │ │ │ ├── index.ts │ │ │ │ └── lib.ts │ │ ├── serialization │ │ │ ├── deserializeLambda.ts │ │ │ ├── serializeLambda.ts │ │ │ └── squiggle.ts │ │ ├── sq.ts │ │ ├── types │ │ │ ├── TArray.ts │ │ │ ├── TDateRange.ts │ │ │ ├── TDict.ts │ │ │ ├── TDictWithArbitraryKeys.ts │ │ │ ├── TDist.ts │ │ │ ├── TIntrinsic.ts │ │ │ ├── TNumberRange.ts │ │ │ ├── TTuple.ts │ │ │ ├── TTypedLambda.ts │ │ │ ├── TUnion.ts │ │ │ ├── Type.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ └── serialize.ts │ │ ├── utility │ │ │ ├── E_A.ts │ │ │ ├── E_A_Floats.ts │ │ │ ├── E_A_Sorted.ts │ │ │ ├── FormattedNumber.ts │ │ │ ├── MixedSet.ts │ │ │ ├── NumberSet.ts │ │ │ ├── RangeSet.ts │ │ │ ├── SDate.ts │ │ │ ├── SDuration.ts │ │ │ ├── compactTreeString.ts │ │ │ ├── immutable.ts │ │ │ ├── math.ts │ │ │ ├── result.ts │ │ │ ├── sExpr.ts │ │ │ ├── seedGenerator.ts │ │ │ ├── seedWords.ts │ │ │ ├── sparklines.ts │ │ │ └── typeHelpers.ts │ │ ├── value │ │ │ ├── BaseValue.ts │ │ │ ├── VArray.ts │ │ │ ├── VBool.ts │ │ │ ├── VCalculator.ts │ │ │ ├── VDate.ts │ │ │ ├── VDict.ts │ │ │ ├── VDist.ts │ │ │ ├── VDomain.ts │ │ │ ├── VDuration.ts │ │ │ ├── VInput.ts │ │ │ ├── VNumber.ts │ │ │ ├── VPlot.ts │ │ │ ├── VScale.ts │ │ │ ├── VSpecification.ts │ │ │ ├── VString.ts │ │ │ ├── VTableChart.ts │ │ │ ├── VVoid.ts │ │ │ ├── annotations.ts │ │ │ ├── deserializeValue.ts │ │ │ ├── index.ts │ │ │ ├── mixins.ts │ │ │ ├── simpleValue.ts │ │ │ ├── vLambda.ts │ │ │ ├── valueTags.ts │ │ │ └── valueTagsUtils.ts │ │ └── yTransform.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── turbo.json ├── textmate-grammar │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── squiggle.js.yaml │ │ └── squiggle.tmLanguage.yaml │ └── tests │ │ └── main.squiggle ├── ui │ ├── .gitignore │ ├── .prettierignore │ ├── .storybook │ │ ├── main.ts │ │ └── preview.tsx │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── components │ │ │ ├── Button.tsx │ │ │ ├── ButtonWithDropdown.tsx │ │ │ ├── Dropdown │ │ │ │ ├── DropdownContext.ts │ │ │ │ ├── DropdownMenu.tsx │ │ │ │ ├── DropdownMenuActionItem.tsx │ │ │ │ ├── DropdownMenuAsyncActionItem.tsx │ │ │ │ ├── DropdownMenuHeader.tsx │ │ │ │ ├── DropdownMenuItemLayout.tsx │ │ │ │ ├── DropdownMenuLinkItem.tsx │ │ │ │ ├── DropdownMenuModalActionItem.tsx │ │ │ │ ├── DropdownMenuSeparator.tsx │ │ │ │ └── index.tsx │ │ │ ├── Modal.tsx │ │ │ ├── MouseTooltip.tsx │ │ │ ├── StyledTab.tsx │ │ │ ├── Table │ │ │ │ └── Table.tsx │ │ │ ├── TailwindProvider.tsx │ │ │ ├── TextTooltip.tsx │ │ │ ├── Tooltip.tsx │ │ │ └── WithToasts │ │ │ │ └── index.tsx │ │ ├── forms │ │ │ ├── common │ │ │ │ ├── ControlledFormField.tsx │ │ │ │ ├── ControlledFormInput.tsx │ │ │ │ ├── FormField.tsx │ │ │ │ ├── FormFieldLayout.tsx │ │ │ │ ├── FormInput.tsx │ │ │ │ ├── WithRHFError.tsx │ │ │ │ └── types.ts │ │ │ ├── fields │ │ │ │ ├── CheckboxFormField.tsx │ │ │ │ ├── ColorFormField.tsx │ │ │ │ ├── NumberFormField.tsx │ │ │ │ ├── RadioFormField.tsx │ │ │ │ ├── SelectFormField.tsx │ │ │ │ ├── SelectStringFormField.tsx │ │ │ │ ├── TextAreaFormField.tsx │ │ │ │ └── TextFormField.tsx │ │ │ └── styled │ │ │ │ ├── StyledCheckbox.tsx │ │ │ │ ├── StyledColorInput.tsx │ │ │ │ ├── StyledInput.tsx │ │ │ │ ├── StyledRadio.tsx │ │ │ │ └── StyledTextArea.tsx │ │ ├── generateProvider.tsx │ │ ├── hooks │ │ │ ├── react-use.ts │ │ │ └── useGlobalShortcut.ts │ │ ├── icons │ │ │ ├── CheckCircleIcon.tsx │ │ │ ├── DieIcons.tsx │ │ │ ├── DotsHorizontalIcon.tsx │ │ │ ├── EditIcon.tsx │ │ │ ├── EmptyIcon.tsx │ │ │ ├── ErrorIcon.tsx │ │ │ ├── ExternalLinkIcon.tsx │ │ │ ├── FocusIcon.tsx │ │ │ ├── HeroIcons.tsx │ │ │ ├── Icon.tsx │ │ │ ├── PlusIcon.tsx │ │ │ ├── RefreshIcon.tsx │ │ │ ├── SignOutIcon.tsx │ │ │ ├── TrashIcon.tsx │ │ │ ├── TriangleIcon.tsx │ │ │ └── XIcon.tsx │ │ ├── index.ts │ │ ├── stories │ │ │ ├── Button.stories.tsx │ │ │ ├── ButtonWithDropdown.stories.tsx │ │ │ ├── Dropdown.stories.tsx │ │ │ ├── Forms.mdx │ │ │ ├── Forms │ │ │ │ ├── CheckboxFormField.stories.tsx │ │ │ │ ├── ColorFormField.stories.tsx │ │ │ │ ├── NumberFormField.stories.tsx │ │ │ │ ├── RadioFormField.stories.tsx │ │ │ │ ├── SelectFormField.stories.tsx │ │ │ │ ├── SelectStringFormField.stories.tsx │ │ │ │ ├── StyledInput.stories.tsx │ │ │ │ ├── StyledTextArea.stories.tsx │ │ │ │ ├── TextAreaFormField.stories.tsx │ │ │ │ ├── TextFormField.stories.tsx │ │ │ │ └── withRHF.tsx │ │ │ ├── Icons.mdx │ │ │ ├── Icons │ │ │ │ ├── CodeBracketSquareIcon.stories.tsx │ │ │ │ ├── DieIcon.stories.tsx │ │ │ │ ├── DotsHorizontalIcon.stories.tsx │ │ │ │ ├── ExternalLinkIcon.stories.tsx │ │ │ │ ├── FocusIcon.stories.tsx │ │ │ │ ├── PlusIcon.stories.tsx │ │ │ │ ├── RefreshIcon.stories.tsx │ │ │ │ ├── SignOutIcon.stories.tsx │ │ │ │ ├── TrashIcon.stories.tsx │ │ │ │ ├── TriangleIcon.stories.tsx │ │ │ │ └── XIcon.stories.tsx │ │ │ ├── MouseTooltip.stories.tsx │ │ │ ├── StyledTab.stories.tsx │ │ │ ├── Table.stories.tsx │ │ │ ├── TextTooltip.stories.tsx │ │ │ ├── Toast.stories.tsx │ │ │ └── helpers.tsx │ │ └── styles │ │ │ └── full.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── turbo.json │ ├── vercel.json │ └── vite.config.js └── vscode-ext │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── .vscode │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── images │ ├── extension-screenshot.png │ ├── vs-code-install.png │ └── vs-code-settings.png │ ├── language-configuration.json │ ├── overrides │ └── jest │ │ └── index.d.ts │ ├── package.json │ ├── src │ ├── client │ │ ├── client.ts │ │ ├── extension.ts │ │ ├── highlight.ts │ │ ├── preview.ts │ │ └── utils.ts │ ├── server │ │ └── server.ts │ └── webview │ │ ├── index.tsx │ │ ├── main.css │ │ └── vscode.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── patches └── react-select@5.10.1.patch ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.js ├── skip-dependabot.sh ├── turbo.json └── turbo └── generators ├── config.ts ├── package.json └── templates └── internal-package ├── index.ts.hbs ├── package.json.hbs └── tsconfig.json.hbs /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/angry-lizards-count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/angry-lizards-count.md -------------------------------------------------------------------------------- /.changeset/chilly-cats-appear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/chilly-cats-appear.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/eleven-socks-melt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/eleven-socks-melt.md -------------------------------------------------------------------------------- /.changeset/fix-cve-2025-66478.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/fix-cve-2025-66478.md -------------------------------------------------------------------------------- /.changeset/green-bugs-drive.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@quri/squiggle-ai": patch 3 | --- 4 | 5 | feat: Add simple-evals script 6 | -------------------------------------------------------------------------------- /.changeset/grumpy-plums-wave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/grumpy-plums-wave.md -------------------------------------------------------------------------------- /.changeset/hot-starfishes-explode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/hot-starfishes-explode.md -------------------------------------------------------------------------------- /.changeset/next-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/next-release.md -------------------------------------------------------------------------------- /.changeset/nice-bats-explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/nice-bats-explain.md -------------------------------------------------------------------------------- /.changeset/real-cups-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/real-cups-design.md -------------------------------------------------------------------------------- /.changeset/secure-nextjs-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.changeset/secure-nextjs-override.md -------------------------------------------------------------------------------- /.changeset/stupid-cameras-hope.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@quri/squiggle-ai": patch 3 | --- 4 | 5 | Update Claude Sonnet 3.7 -> 4.5 6 | -------------------------------------------------------------------------------- /.cursor/rules/coding-style.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.cursor/rules/coding-style.mdc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/ISSUE_TEMPLATE/hub.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/ISSUE_TEMPLATE/pl.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/user-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/ISSUE_TEMPLATE/user-bug.md -------------------------------------------------------------------------------- /.github/actions/install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/actions/install/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cleanup-vercel-deployments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/cleanup-vercel-deployments.yml -------------------------------------------------------------------------------- /.github/workflows/hub-scripts-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/hub-scripts-image.yaml -------------------------------------------------------------------------------- /.github/workflows/metaforecast-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/metaforecast-image.yaml -------------------------------------------------------------------------------- /.github/workflows/prisma-migrate-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/prisma-migrate-preview.yml -------------------------------------------------------------------------------- /.github/workflows/prisma-migrate-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/prisma-migrate-prod.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reset-preview-db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.github/workflows/reset-preview-db.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/README.md -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /.next 3 | -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/README.md -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/data/submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/data/submissions.json -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/next-env.d.ts -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/package.json -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/postcss.config.js -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/app/globals.css -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/app/lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/app/lib/data.ts -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/app/page.tsx -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/collect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/collect.ts -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/config.ts -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/evaluator.ts -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/index.ts -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/src/types.ts -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/tailwind.config.js -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/tsconfig.json -------------------------------------------------------------------------------- /apps/fermi-contest-2025-02/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/fermi-contest-2025-02/vercel.json -------------------------------------------------------------------------------- /apps/hub/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/.eslintrc.json -------------------------------------------------------------------------------- /apps/hub/.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | -------------------------------------------------------------------------------- /apps/hub/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /.next 3 | ops 4 | -------------------------------------------------------------------------------- /apps/hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/README.md -------------------------------------------------------------------------------- /apps/hub/docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/docs/cli.md -------------------------------------------------------------------------------- /apps/hub/docs/evals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/docs/evals.md -------------------------------------------------------------------------------- /apps/hub/docs/nextjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/docs/nextjs.md -------------------------------------------------------------------------------- /apps/hub/esbuild.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/esbuild.cjs -------------------------------------------------------------------------------- /apps/hub/jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/jest.config.mjs -------------------------------------------------------------------------------- /apps/hub/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/next-env.d.ts -------------------------------------------------------------------------------- /apps/hub/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/next.config.mjs -------------------------------------------------------------------------------- /apps/hub/ops/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/ops/Dockerfile -------------------------------------------------------------------------------- /apps/hub/ops/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/ops/chart/Chart.yaml -------------------------------------------------------------------------------- /apps/hub/ops/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/ops/chart/values.yaml -------------------------------------------------------------------------------- /apps/hub/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/package.json -------------------------------------------------------------------------------- /apps/hub/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/postcss.config.js -------------------------------------------------------------------------------- /apps/hub/public/openapi-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/public/openapi-schema.json -------------------------------------------------------------------------------- /apps/hub/src/ai/components/LlmConfigDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/components/LlmConfigDisplay.tsx -------------------------------------------------------------------------------- /apps/hub/src/ai/data/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/data/analytics.ts -------------------------------------------------------------------------------- /apps/hub/src/ai/data/loadWorkflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/data/loadWorkflows.ts -------------------------------------------------------------------------------- /apps/hub/src/ai/data/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/data/storage.ts -------------------------------------------------------------------------------- /apps/hub/src/ai/data/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/data/utils.ts -------------------------------------------------------------------------------- /apps/hub/src/ai/data/v1_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/data/v1_0.ts -------------------------------------------------------------------------------- /apps/hub/src/ai/data/v2_0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/data/v2_0.ts -------------------------------------------------------------------------------- /apps/hub/src/ai/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/ai/utils.ts -------------------------------------------------------------------------------- /apps/hub/src/app/(frontpage)/evals/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/(frontpage)/evals/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/(frontpage)/evals/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/(frontpage)/evals/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/(frontpage)/groups/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/(frontpage)/groups/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/(frontpage)/groups/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/(frontpage)/groups/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/(frontpage)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/(frontpage)/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/(frontpage)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/(frontpage)/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/(frontpage)/variables/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/(frontpage)/variables/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/about/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/admin/dev/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/admin/dev/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/admin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/admin/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/admin/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/admin/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/admin/search/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/admin/seed/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/admin/seed/actions.ts -------------------------------------------------------------------------------- /apps/hub/src/app/admin/seed/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/admin/seed/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/admin/upgrade-versions/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/admin/upgrade-versions/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/AiDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/AiDashboard.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/Badge.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/LogsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/LogsView.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/README.md -------------------------------------------------------------------------------- /apps/hub/src/app/ai/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/Sidebar.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/StepStatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/StepStatusIcon.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/WorkflowViewer/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/WorkflowViewer/Header.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/WorkflowViewer/StepView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/WorkflowViewer/StepView.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/WorkflowViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/WorkflowViewer/index.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/analytics/ClientLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/analytics/ClientLayout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/analytics/StepErrorList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/analytics/StepErrorList.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/analytics/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/analytics/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/analytics/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/api/create/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/api/create/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/ai/api/system-prompt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/api/system-prompt/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/ai/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/useSquiggleWorkflows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/useSquiggleWorkflows.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/ai/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/ai/utils.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/find-evaluations/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/find-evaluations/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/find-owners/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/find-owners/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/get-group-models/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/get-group-models/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/get-source/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/get-source/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/runSquiggle/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/runSquiggle/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/search/route.ts -------------------------------------------------------------------------------- /apps/hub/src/app/api/search/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/api/search/schema.ts -------------------------------------------------------------------------------- /apps/hub/src/app/benchmarks/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/benchmarks/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/epistemic-agents/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/epistemic-agents/[id]/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/EpistemicAgentsHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/EpistemicAgentsHelp.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/EvaluationsHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/EvaluationsHelp.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/QuestionSetsHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/QuestionSetsHelp.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/compare/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/compare/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/compare/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/compare/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/eval/[id]/RunSquiggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/eval/[id]/RunSquiggle.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/eval/[id]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/eval/[id]/not-found.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/eval/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/eval/[id]/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/evals/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/evals/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/groups/[slug]/GroupNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/groups/[slug]/GroupNav.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/groups/[slug]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/groups/[slug]/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/groups/[slug]/members/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/groups/[slug]/members/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/groups/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/groups/[slug]/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/icon.png -------------------------------------------------------------------------------- /apps/hub/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/models/[owner]/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/models/[owner]/[slug]/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/new/definition/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/new/definition/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/new/group/NewGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/new/group/NewGroup.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/new/group/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/new/group/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/new/model/NewModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/new/model/NewModel.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/new/model/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/new/model/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/not-found.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/privacy/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/question-sets/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/question-sets/[id]/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/question-sets/create/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/question-sets/create/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/question-sets/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/question-sets/create/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/status/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/status/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/status/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/status/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/terms/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/users/[username]/UserNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/users/[username]/UserNav.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/users/[username]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/users/[username]/layout.tsx -------------------------------------------------------------------------------- /apps/hub/src/app/users/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/app/users/[username]/page.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/EntityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/EntityCard.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/EntityInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/EntityInfo.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/EntityLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/EntityLayout.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/FrontpageNav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/FrontpageNav/index.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/GlobalSearch/Snippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/GlobalSearch/Snippet.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/GlobalSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/GlobalSearch/index.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/GroupLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/GroupLink.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/LoadMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/LoadMore.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/NewModelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/NewModelButton.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/NoEntitiesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/NoEntitiesCard.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ReactRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ReactRoot.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/SelectGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/SelectGroup.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/SelectOwner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/SelectOwner.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/SelectUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/SelectUser.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/UsernameLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/UsernameLink.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/WithAuth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/WithAuth/index.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/admin/AdminControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/admin/AdminControls.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/admin/AdminProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/admin/AdminProvider.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/Card.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/DotsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/DotsDropdown.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/DropdownButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/DropdownButton.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/EntityTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/EntityTab.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/ErrorBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/ErrorBox.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/ExplanationBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/ExplanationBox.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/FormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/FormModal.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/Headers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/Headers.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/KeyValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/KeyValue.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/Link.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/LinkButton.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/ModalHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/ModalHelp.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/PageMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/PageMenu.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/SafeActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/SafeActionButton.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/SlugFormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/SlugFormField.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/SmallHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/SmallHelp.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/StyledA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/StyledA.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/StyledLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/StyledLink.tsx -------------------------------------------------------------------------------- /apps/hub/src/components/ui/StyledTabLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/components/ui/StyledTabLink.tsx -------------------------------------------------------------------------------- /apps/hub/src/evals/actions/deleteQuestionSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/actions/deleteQuestionSet.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/components/QuestionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/components/QuestionItem.tsx -------------------------------------------------------------------------------- /apps/hub/src/evals/data/detailsEvals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/data/detailsEvals.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/data/epistemicAgents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/data/epistemicAgents.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/data/questionSets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/data/questionSets.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/data/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/data/questions.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/data/summaryEvals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/data/summaryEvals.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/lib/processEvaluation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/lib/processEvaluation.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/lib/questionMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/lib/questionMetadata.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/lib/runners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/lib/runners.ts -------------------------------------------------------------------------------- /apps/hub/src/evals/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/evals/types.ts -------------------------------------------------------------------------------- /apps/hub/src/groups/actions/createGroupAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/groups/actions/createGroupAction.ts -------------------------------------------------------------------------------- /apps/hub/src/groups/components/GroupCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/groups/components/GroupCard.tsx -------------------------------------------------------------------------------- /apps/hub/src/groups/components/GroupList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/groups/components/GroupList.tsx -------------------------------------------------------------------------------- /apps/hub/src/groups/data/groupCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/groups/data/groupCards.ts -------------------------------------------------------------------------------- /apps/hub/src/groups/data/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/groups/data/helpers.ts -------------------------------------------------------------------------------- /apps/hub/src/groups/data/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/groups/data/members.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/README.md -------------------------------------------------------------------------------- /apps/hub/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/constants.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/hooks/useAvailableHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/hooks/useAvailableHeight.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/hooks/useClientOnlyRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/hooks/useClientOnlyRender.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/hooks/usePaginator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/hooks/usePaginator.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/hooks/useSafeActionForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/hooks/useSafeActionForm.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/hooks/useUpdateSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/hooks/useUpdateSearchParams.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/ownerIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/ownerIcon.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/routes.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/server/actionClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/server/actionClient.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/server/auth.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/server/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/server/cli.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/server/dataHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/server/dataHelpers.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/server/globalStatistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/server/globalStatistics.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/server/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/server/prisma.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/server/runSquiggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/server/runSquiggle.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/sleep.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/typeIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/typeIcon.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/types.ts -------------------------------------------------------------------------------- /apps/hub/src/lib/zodUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/lib/zodUtils.ts -------------------------------------------------------------------------------- /apps/hub/src/migrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/migrations/README.md -------------------------------------------------------------------------------- /apps/hub/src/models/actions/createModelAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/actions/createModelAction.ts -------------------------------------------------------------------------------- /apps/hub/src/models/actions/deleteModelAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/actions/deleteModelAction.ts -------------------------------------------------------------------------------- /apps/hub/src/models/actions/moveModelAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/actions/moveModelAction.ts -------------------------------------------------------------------------------- /apps/hub/src/models/authHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/authHelpers.ts -------------------------------------------------------------------------------- /apps/hub/src/models/clientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/clientUtils.ts -------------------------------------------------------------------------------- /apps/hub/src/models/components/ModelCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/components/ModelCard.tsx -------------------------------------------------------------------------------- /apps/hub/src/models/components/ModelList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/components/ModelList.tsx -------------------------------------------------------------------------------- /apps/hub/src/models/components/ModelsHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/components/ModelsHelp.tsx -------------------------------------------------------------------------------- /apps/hub/src/models/data/builds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/builds.ts -------------------------------------------------------------------------------- /apps/hub/src/models/data/byVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/byVersion.ts -------------------------------------------------------------------------------- /apps/hub/src/models/data/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/cards.ts -------------------------------------------------------------------------------- /apps/hub/src/models/data/full.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/full.ts -------------------------------------------------------------------------------- /apps/hub/src/models/data/fullRevision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/fullRevision.ts -------------------------------------------------------------------------------- /apps/hub/src/models/data/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/helpers.ts -------------------------------------------------------------------------------- /apps/hub/src/models/data/revisions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/revisions.ts -------------------------------------------------------------------------------- /apps/hub/src/models/data/writeableModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/models/data/writeableModel.ts -------------------------------------------------------------------------------- /apps/hub/src/owners/data/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/owners/data/auth.ts -------------------------------------------------------------------------------- /apps/hub/src/owners/data/findOwners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/owners/data/findOwners.ts -------------------------------------------------------------------------------- /apps/hub/src/owners/data/owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/owners/data/owner.ts -------------------------------------------------------------------------------- /apps/hub/src/public/logo-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/public/logo-img.png -------------------------------------------------------------------------------- /apps/hub/src/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/public/logo.png -------------------------------------------------------------------------------- /apps/hub/src/relative-values/actions/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/actions/common.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/data/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/data/cards.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/data/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/data/exports.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/data/full.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/data/full.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/data/fullExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/data/fullExport.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/lib/utils.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/types.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/utils.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/values/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/values/types.ts -------------------------------------------------------------------------------- /apps/hub/src/relative-values/values/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/relative-values/values/value.ts -------------------------------------------------------------------------------- /apps/hub/src/search/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/search/helpers.ts -------------------------------------------------------------------------------- /apps/hub/src/squiggle/components/SaveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/squiggle/components/SaveButton.tsx -------------------------------------------------------------------------------- /apps/hub/src/squiggle/components/SaveDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/squiggle/components/SaveDialog.tsx -------------------------------------------------------------------------------- /apps/hub/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/styles/main.css -------------------------------------------------------------------------------- /apps/hub/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/types.d.ts -------------------------------------------------------------------------------- /apps/hub/src/users/actions/setUsernameAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/users/actions/setUsernameAction.ts -------------------------------------------------------------------------------- /apps/hub/src/users/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/users/auth.ts -------------------------------------------------------------------------------- /apps/hub/src/users/data/layoutUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/users/data/layoutUser.ts -------------------------------------------------------------------------------- /apps/hub/src/variables/data/variableCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/variables/data/variableCards.ts -------------------------------------------------------------------------------- /apps/hub/src/variables/data/variableRevisions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/src/variables/data/variableRevisions.ts -------------------------------------------------------------------------------- /apps/hub/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/tailwind.config.ts -------------------------------------------------------------------------------- /apps/hub/test/setup-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/test/setup-db.ts -------------------------------------------------------------------------------- /apps/hub/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/tsconfig.json -------------------------------------------------------------------------------- /apps/hub/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/turbo.json -------------------------------------------------------------------------------- /apps/hub/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/hub/vercel.json -------------------------------------------------------------------------------- /apps/metaforecast/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/.dockerignore -------------------------------------------------------------------------------- /apps/metaforecast/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/.eslintrc.json -------------------------------------------------------------------------------- /apps/metaforecast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/.gitignore -------------------------------------------------------------------------------- /apps/metaforecast/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/.prettierignore -------------------------------------------------------------------------------- /apps/metaforecast/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/.vscode/settings.json -------------------------------------------------------------------------------- /apps/metaforecast/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/LICENSE.md -------------------------------------------------------------------------------- /apps/metaforecast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/README.md -------------------------------------------------------------------------------- /apps/metaforecast/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/codegen.yml -------------------------------------------------------------------------------- /apps/metaforecast/docs/coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/docs/coding-style.md -------------------------------------------------------------------------------- /apps/metaforecast/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/docs/configuration.md -------------------------------------------------------------------------------- /apps/metaforecast/docs/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/docs/graphql.md -------------------------------------------------------------------------------- /apps/metaforecast/docs/infra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/docs/infra.md -------------------------------------------------------------------------------- /apps/metaforecast/docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/docs/roadmap.md -------------------------------------------------------------------------------- /apps/metaforecast/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/env.example -------------------------------------------------------------------------------- /apps/metaforecast/graphql.config.yaml: -------------------------------------------------------------------------------- 1 | schema: http://localhost:3002/api/graphql 2 | -------------------------------------------------------------------------------- /apps/metaforecast/input/xrisk-questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/input/xrisk-questions.json -------------------------------------------------------------------------------- /apps/metaforecast/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/next-env.d.ts -------------------------------------------------------------------------------- /apps/metaforecast/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/next.config.mjs -------------------------------------------------------------------------------- /apps/metaforecast/ops/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/Dockerfile -------------------------------------------------------------------------------- /apps/metaforecast/ops/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/chart/Chart.yaml -------------------------------------------------------------------------------- /apps/metaforecast/ops/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/chart/README.md -------------------------------------------------------------------------------- /apps/metaforecast/ops/chart/templates/jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/chart/templates/jobs.yaml -------------------------------------------------------------------------------- /apps/metaforecast/ops/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/chart/values.yaml -------------------------------------------------------------------------------- /apps/metaforecast/ops/tf/.gitignore: -------------------------------------------------------------------------------- 1 | /*.tfstate* 2 | /.terraform 3 | /prod.*tfvars 4 | -------------------------------------------------------------------------------- /apps/metaforecast/ops/tf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/tf/main.tf -------------------------------------------------------------------------------- /apps/metaforecast/ops/tf/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/tf/outputs.tf -------------------------------------------------------------------------------- /apps/metaforecast/ops/tf/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/ops/tf/variables.tf -------------------------------------------------------------------------------- /apps/metaforecast/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/package.json -------------------------------------------------------------------------------- /apps/metaforecast/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/postcss.config.js -------------------------------------------------------------------------------- /apps/metaforecast/public/icons/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/public/icons/favicon.svg -------------------------------------------------------------------------------- /apps/metaforecast/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/public/icons/logo.svg -------------------------------------------------------------------------------- /apps/metaforecast/public/icons/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/public/icons/logo2.svg -------------------------------------------------------------------------------- /apps/metaforecast/public/screenshot-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/public/screenshot-cli.png -------------------------------------------------------------------------------- /apps/metaforecast/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/schema.graphql -------------------------------------------------------------------------------- /apps/metaforecast/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/scripts/README.md -------------------------------------------------------------------------------- /apps/metaforecast/scripts/download-all.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/scripts/download-all.mjs -------------------------------------------------------------------------------- /apps/metaforecast/scripts/iframe-snippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/scripts/iframe-snippet.md -------------------------------------------------------------------------------- /apps/metaforecast/specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/specification.json -------------------------------------------------------------------------------- /apps/metaforecast/src/Global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/Global.d.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/_middleware.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/NavMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/NavMenu.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/QueryForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/QueryForm.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/SearchForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/SearchForm.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/SearchScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/SearchScreen.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/ShowMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/ShowMore.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/about/page.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/common.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/hooks.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/layout.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/page.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/queries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/queries.graphql -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/status/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/status/page.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/(nav)/tools/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/(nav)/tools/page.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/Root.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/app/api/graphql/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/api/graphql/route.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/app/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/icon.svg -------------------------------------------------------------------------------- /apps/metaforecast/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/cli/index.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/cli/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/cli/utils.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/dbUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/dbUtils.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/frontpage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/frontpage.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/platformUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/platformUtils.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/platforms/infer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/platforms/infer.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/platforms/metaculus/api.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/platforms/xrisk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/platforms/xrisk.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/types.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/utils/elastic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/utils/elastic.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/utils/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/utils/hash.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/utils/misc/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/utils/misc/test.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/backend/utils/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/backend/utils/sleep.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/common/types.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/graphql/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/graphql/builder.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/graphql/introspection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/graphql/introspection.json -------------------------------------------------------------------------------- /apps/metaforecast/src/graphql/print-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/graphql/print-schema.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/graphql/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/graphql/schema/index.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/graphql/schema/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/graphql/schema/search.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/styles/main.css -------------------------------------------------------------------------------- /apps/metaforecast/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/utils.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/BoxedLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/BoxedLink.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/Button.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/Card.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/Collapsible.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/CopyText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/CopyText.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/InfoBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/InfoBox.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/LineHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/LineHeader.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/common/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/common/Spinner.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/fragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/fragments.graphql -------------------------------------------------------------------------------- /apps/metaforecast/src/web/icons/Favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/icons/Favicon.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/icons/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/icons/Logo.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/icons/Logo2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/icons/Logo2.tsx -------------------------------------------------------------------------------- /apps/metaforecast/src/web/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/icons/index.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/web/questions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/questions/utils.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/web/urql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/urql.ts -------------------------------------------------------------------------------- /apps/metaforecast/src/web/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/src/web/utils.ts -------------------------------------------------------------------------------- /apps/metaforecast/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/tailwind.config.js -------------------------------------------------------------------------------- /apps/metaforecast/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/tsconfig.json -------------------------------------------------------------------------------- /apps/metaforecast/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/turbo.json -------------------------------------------------------------------------------- /apps/metaforecast/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/metaforecast/vercel.json -------------------------------------------------------------------------------- /apps/website/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/.eslintrc.json -------------------------------------------------------------------------------- /apps/website/.gitignore: -------------------------------------------------------------------------------- 1 | /.next 2 | -------------------------------------------------------------------------------- /apps/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/README.md -------------------------------------------------------------------------------- /apps/website/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/next-env.d.ts -------------------------------------------------------------------------------- /apps/website/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/next.config.ts -------------------------------------------------------------------------------- /apps/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/package.json -------------------------------------------------------------------------------- /apps/website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/postcss.config.js -------------------------------------------------------------------------------- /apps/website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/public/favicon.ico -------------------------------------------------------------------------------- /apps/website/public/img/squiggle-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/public/img/squiggle-logo.png -------------------------------------------------------------------------------- /apps/website/public/img/squiggleAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/public/img/squiggleAI.png -------------------------------------------------------------------------------- /apps/website/src/app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/(home)/layout.tsx -------------------------------------------------------------------------------- /apps/website/src/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/(home)/page.tsx -------------------------------------------------------------------------------- /apps/website/src/app/_meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/_meta.ts -------------------------------------------------------------------------------- /apps/website/src/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/api/search/route.ts -------------------------------------------------------------------------------- /apps/website/src/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/website/src/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/docs/layout.tsx -------------------------------------------------------------------------------- /apps/website/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/website/src/app/playground/ShareButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/playground/ShareButton.tsx -------------------------------------------------------------------------------- /apps/website/src/app/playground/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/playground/layout.tsx -------------------------------------------------------------------------------- /apps/website/src/app/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/playground/page.tsx -------------------------------------------------------------------------------- /apps/website/src/app/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/app/source.ts -------------------------------------------------------------------------------- /apps/website/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/components/Footer.tsx -------------------------------------------------------------------------------- /apps/website/src/components/HomepageFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/components/HomepageFeatures.tsx -------------------------------------------------------------------------------- /apps/website/src/components/Resettable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/components/Resettable.tsx -------------------------------------------------------------------------------- /apps/website/src/components/SquiggleEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/components/SquiggleEditor.tsx -------------------------------------------------------------------------------- /apps/website/src/layout.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/layout.config.tsx -------------------------------------------------------------------------------- /apps/website/src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/styles/main.css -------------------------------------------------------------------------------- /apps/website/src/utils/useAvailableHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/src/utils/useAvailableHeight.ts -------------------------------------------------------------------------------- /apps/website/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/tailwind.config.ts -------------------------------------------------------------------------------- /apps/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/tsconfig.json -------------------------------------------------------------------------------- /apps/website/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/turbo.json -------------------------------------------------------------------------------- /apps/website/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/apps/website/vercel.json -------------------------------------------------------------------------------- /evaluations/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/evaluations/.eslintrc.js -------------------------------------------------------------------------------- /evaluations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/evaluations/README.md -------------------------------------------------------------------------------- /evaluations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/evaluations/package.json -------------------------------------------------------------------------------- /evaluations/src/evaluate-quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/evaluations/src/evaluate-quality.ts -------------------------------------------------------------------------------- /evaluations/src/simple-evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/evaluations/src/simple-evals.ts -------------------------------------------------------------------------------- /import-sorter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/import-sorter.json -------------------------------------------------------------------------------- /internal-packages/ai/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/.eslintrc.json -------------------------------------------------------------------------------- /internal-packages/ai/.gitignore: -------------------------------------------------------------------------------- 1 | fine-tuning-models.jsonl 2 | -------------------------------------------------------------------------------- /internal-packages/ai/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /internal-packages/ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/README.md -------------------------------------------------------------------------------- /internal-packages/ai/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/babel.config.cjs -------------------------------------------------------------------------------- /internal-packages/ai/examples/bugs.squiggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/examples/bugs.squiggle -------------------------------------------------------------------------------- /internal-packages/ai/examples/housing.squiggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/examples/housing.squiggle -------------------------------------------------------------------------------- /internal-packages/ai/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/jest.config.js -------------------------------------------------------------------------------- /internal-packages/ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/package.json -------------------------------------------------------------------------------- /internal-packages/ai/src/Artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/Artifact.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/Code.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/LLMClient/LLMError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/LLMClient/LLMError.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/LLMClient/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/LLMClient/index.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/LLMClient/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/LLMClient/types.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/LLMStepInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/LLMStepInstance.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/LLMStepTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/LLMStepTemplate.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/Logger.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/generateSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/generateSummary.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/index.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/modelConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/modelConfigs.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/prompts.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/scripts/tests/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/scripts/tests/create.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/scripts/tests/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/scripts/tests/edit.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/serialization.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/server.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/steps/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/steps/registry.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/types.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/workflows/Workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/workflows/Workflow.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/workflows/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/workflows/registry.ts -------------------------------------------------------------------------------- /internal-packages/ai/src/workflows/streaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/src/workflows/streaming.ts -------------------------------------------------------------------------------- /internal-packages/ai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ai/tsconfig.json -------------------------------------------------------------------------------- /internal-packages/configs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/configs/package.json -------------------------------------------------------------------------------- /internal-packages/configs/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/configs/tsconfig.base.json -------------------------------------------------------------------------------- /internal-packages/configs/tsconfig.nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/configs/tsconfig.nextjs.json -------------------------------------------------------------------------------- /internal-packages/content/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/.eslintrc.cjs -------------------------------------------------------------------------------- /internal-packages/content/.gitignore: -------------------------------------------------------------------------------- 1 | /.content-collections 2 | -------------------------------------------------------------------------------- /internal-packages/content/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/.prettierignore -------------------------------------------------------------------------------- /internal-packages/content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/README.md -------------------------------------------------------------------------------- /internal-packages/content/content-collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/content-collections.ts -------------------------------------------------------------------------------- /internal-packages/content/content/api/Boolean.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /internal-packages/content/content/api/Common.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/content/api/Common.mdx -------------------------------------------------------------------------------- /internal-packages/content/content/api/Danger.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/content/api/Danger.mdx -------------------------------------------------------------------------------- /internal-packages/content/content/api/Sym.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/content/api/Sym.mdx -------------------------------------------------------------------------------- /internal-packages/content/content/api/Tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/content/api/Tag.mdx -------------------------------------------------------------------------------- /internal-packages/content/content/squiggleAiLibraries/helpers.yaml: -------------------------------------------------------------------------------- 1 | owner: ozziegooen 2 | slug: helpers 3 | -------------------------------------------------------------------------------- /internal-packages/content/content/squiggleAiLibraries/sTest.yaml: -------------------------------------------------------------------------------- 1 | owner: ozziegooen 2 | slug: sTest 3 | -------------------------------------------------------------------------------- /internal-packages/content/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/package.json -------------------------------------------------------------------------------- /internal-packages/content/src/apiUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/src/apiUtils.ts -------------------------------------------------------------------------------- /internal-packages/content/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/src/index.ts -------------------------------------------------------------------------------- /internal-packages/content/src/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/src/prompts.ts -------------------------------------------------------------------------------- /internal-packages/content/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/tsconfig.json -------------------------------------------------------------------------------- /internal-packages/content/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/content/turbo.json -------------------------------------------------------------------------------- /internal-packages/hub-api-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-api-client/package.json -------------------------------------------------------------------------------- /internal-packages/hub-api-client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-api-client/src/index.ts -------------------------------------------------------------------------------- /internal-packages/hub-db/.gitignore: -------------------------------------------------------------------------------- 1 | /generated 2 | -------------------------------------------------------------------------------- /internal-packages/hub-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-db/README.md -------------------------------------------------------------------------------- /internal-packages/hub-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-db/package.json -------------------------------------------------------------------------------- /internal-packages/hub-db/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-db/src/client.ts -------------------------------------------------------------------------------- /internal-packages/hub-db/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-db/src/index.ts -------------------------------------------------------------------------------- /internal-packages/hub-db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-db/tsconfig.json -------------------------------------------------------------------------------- /internal-packages/hub-linker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-linker/package.json -------------------------------------------------------------------------------- /internal-packages/hub-linker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-linker/src/index.ts -------------------------------------------------------------------------------- /internal-packages/hub-linker/src/linker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-linker/src/linker.ts -------------------------------------------------------------------------------- /internal-packages/hub-linker/src/sourceIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-linker/src/sourceIds.ts -------------------------------------------------------------------------------- /internal-packages/hub-linker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/hub-linker/tsconfig.json -------------------------------------------------------------------------------- /internal-packages/metaforecast-db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/metaforecast-db/.gitignore -------------------------------------------------------------------------------- /internal-packages/ops/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal-packages/ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/README.md -------------------------------------------------------------------------------- /internal-packages/ops/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/package.json -------------------------------------------------------------------------------- /internal-packages/ops/src/changelog-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/src/changelog-utils.ts -------------------------------------------------------------------------------- /internal-packages/ops/src/changelog.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/src/changelog.cts -------------------------------------------------------------------------------- /internal-packages/ops/src/constants.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/src/constants.cts -------------------------------------------------------------------------------- /internal-packages/ops/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/src/lib.ts -------------------------------------------------------------------------------- /internal-packages/ops/src/package-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/src/package-utils.ts -------------------------------------------------------------------------------- /internal-packages/ops/src/patch-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/src/patch-js.ts -------------------------------------------------------------------------------- /internal-packages/ops/src/website.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/src/website.ts -------------------------------------------------------------------------------- /internal-packages/ops/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/internal-packages/ops/tsconfig.json -------------------------------------------------------------------------------- /internal-packages/versioned-components/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /*.tsbuildinfo 3 | -------------------------------------------------------------------------------- /internal-packages/versioned-components/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/package.json -------------------------------------------------------------------------------- /packages/components/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/.gitignore -------------------------------------------------------------------------------- /packages/components/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/.prettierignore -------------------------------------------------------------------------------- /packages/components/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/.storybook/main.ts -------------------------------------------------------------------------------- /packages/components/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/.storybook/preview.tsx -------------------------------------------------------------------------------- /packages/components/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/CHANGELOG.md -------------------------------------------------------------------------------- /packages/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/README.md -------------------------------------------------------------------------------- /packages/components/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/babel.config.cjs -------------------------------------------------------------------------------- /packages/components/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/jest.config.js -------------------------------------------------------------------------------- /packages/components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/package.json -------------------------------------------------------------------------------- /packages/components/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/postcss.config.cjs -------------------------------------------------------------------------------- /packages/components/src/components/CodeEditor/languageSupport/.gitignore: -------------------------------------------------------------------------------- 1 | /generated 2 | -------------------------------------------------------------------------------- /packages/components/src/components/ViewerWithMenuBar/utils.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/index.ts -------------------------------------------------------------------------------- /packages/components/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/lib/constants.ts -------------------------------------------------------------------------------- /packages/components/src/lib/d3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/lib/d3/index.ts -------------------------------------------------------------------------------- /packages/components/src/lib/draw/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/lib/draw/index.ts -------------------------------------------------------------------------------- /packages/components/src/lib/draw/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/lib/draw/types.ts -------------------------------------------------------------------------------- /packages/components/src/lib/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/lib/hooks/index.ts -------------------------------------------------------------------------------- /packages/components/src/lib/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/lib/utility.ts -------------------------------------------------------------------------------- /packages/components/src/stories/Intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/stories/Intro.mdx -------------------------------------------------------------------------------- /packages/components/src/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/styles/common.css -------------------------------------------------------------------------------- /packages/components/src/styles/full.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/styles/full.css -------------------------------------------------------------------------------- /packages/components/src/tailwind-plugin.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/tailwind-plugin.cts -------------------------------------------------------------------------------- /packages/components/src/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/widgets/index.ts -------------------------------------------------------------------------------- /packages/components/src/widgets/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/widgets/registry.ts -------------------------------------------------------------------------------- /packages/components/src/widgets/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/src/widgets/utils.ts -------------------------------------------------------------------------------- /packages/components/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/tailwind.config.ts -------------------------------------------------------------------------------- /packages/components/test/autorun.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/autorun.test.tsx -------------------------------------------------------------------------------- /packages/components/test/basic.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/basic.test.tsx -------------------------------------------------------------------------------- /packages/components/test/d3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/d3.test.ts -------------------------------------------------------------------------------- /packages/components/test/grammar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/grammar.test.ts -------------------------------------------------------------------------------- /packages/components/test/highlighting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/highlighting.test.ts -------------------------------------------------------------------------------- /packages/components/test/multiplot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/multiplot.test.tsx -------------------------------------------------------------------------------- /packages/components/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/setup.ts -------------------------------------------------------------------------------- /packages/components/test/viewProps.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/test/viewProps.test.tsx -------------------------------------------------------------------------------- /packages/components/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/tsconfig.build.json -------------------------------------------------------------------------------- /packages/components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/tsconfig.json -------------------------------------------------------------------------------- /packages/components/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/turbo.json -------------------------------------------------------------------------------- /packages/components/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/vercel.json -------------------------------------------------------------------------------- /packages/components/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/components/vite.config.js -------------------------------------------------------------------------------- /packages/prettier-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /packages/prettier-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/README.md -------------------------------------------------------------------------------- /packages/prettier-plugin/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/babel.config.cjs -------------------------------------------------------------------------------- /packages/prettier-plugin/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/jest.config.js -------------------------------------------------------------------------------- /packages/prettier-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/package.json -------------------------------------------------------------------------------- /packages/prettier-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/src/index.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/src/parser.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/src/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/src/printer.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/src/shared.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/src/standalone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/src/standalone.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/src/types.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/arrays.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/arrays.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/blocks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/blocks.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/dicts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/dicts.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/helpers.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/imports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/imports.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/lambda.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/lambda.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/let.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/let.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/numbers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/numbers.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/pipes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/pipes.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/program.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/program.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/strings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/strings.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/ternary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/ternary.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/test/units.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/test/units.test.ts -------------------------------------------------------------------------------- /packages/prettier-plugin/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/tsconfig.build.json -------------------------------------------------------------------------------- /packages/prettier-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/prettier-plugin/tsconfig.json -------------------------------------------------------------------------------- /packages/serializer/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/serializer/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /packages/serializer/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /packages/serializer/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @quri/serializer 2 | 3 | ## 1.0.0 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /packages/serializer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/README.md -------------------------------------------------------------------------------- /packages/serializer/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/babel.config.cjs -------------------------------------------------------------------------------- /packages/serializer/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/jest.config.js -------------------------------------------------------------------------------- /packages/serializer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/package.json -------------------------------------------------------------------------------- /packages/serializer/src/codec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/src/codec.ts -------------------------------------------------------------------------------- /packages/serializer/src/deserialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/src/deserialization.ts -------------------------------------------------------------------------------- /packages/serializer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/src/index.ts -------------------------------------------------------------------------------- /packages/serializer/src/serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/src/serialization.ts -------------------------------------------------------------------------------- /packages/serializer/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/src/types.ts -------------------------------------------------------------------------------- /packages/serializer/test/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/test/main.test.ts -------------------------------------------------------------------------------- /packages/serializer/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/tsconfig.build.json -------------------------------------------------------------------------------- /packages/serializer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/serializer/tsconfig.json -------------------------------------------------------------------------------- /packages/squiggle-lang/.eslintignore: -------------------------------------------------------------------------------- 1 | src/ast/peggyParser.js 2 | .eslintrc.cjs 3 | -------------------------------------------------------------------------------- /packages/squiggle-lang/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/squiggle-lang/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/.gitignore -------------------------------------------------------------------------------- /packages/squiggle-lang/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/.prettierignore -------------------------------------------------------------------------------- /packages/squiggle-lang/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/CHANGELOG.md -------------------------------------------------------------------------------- /packages/squiggle-lang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/README.md -------------------------------------------------------------------------------- /packages/squiggle-lang/__tests__/fixtures/imports/lib.squiggle: -------------------------------------------------------------------------------- 1 | export x = 5 2 | -------------------------------------------------------------------------------- /packages/squiggle-lang/__tests__/fixtures/imports/lib2.squiggle: -------------------------------------------------------------------------------- 1 | export y = 2 2 | -------------------------------------------------------------------------------- /packages/squiggle-lang/__tests__/fixtures/relative-imports/common.squiggle: -------------------------------------------------------------------------------- 1 | export x = 1 2 | -------------------------------------------------------------------------------- /packages/squiggle-lang/__tests__/fixtures/relative-imports/dir1/common.squiggle: -------------------------------------------------------------------------------- 1 | export x = 10 2 | -------------------------------------------------------------------------------- /packages/squiggle-lang/__tests__/fixtures/relative-imports/dir2/common.squiggle: -------------------------------------------------------------------------------- 1 | export x = 100 2 | -------------------------------------------------------------------------------- /packages/squiggle-lang/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/babel.config.cjs -------------------------------------------------------------------------------- /packages/squiggle-lang/bin/squiggle.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import "../dist/cli/index.js"; 3 | -------------------------------------------------------------------------------- /packages/squiggle-lang/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/jest.config.js -------------------------------------------------------------------------------- /packages/squiggle-lang/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/package.json -------------------------------------------------------------------------------- /packages/squiggle-lang/src/PointSet/Common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/PointSet/Common.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/PointSet/Mixed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/PointSet/Mixed.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/XYShape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/XYShape.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/analysis/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/analysis/Node.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/analysis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/analysis/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/analysis/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/analysis/types.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/ast/asserts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/ast/asserts.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/ast/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/ast/operators.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/ast/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/ast/parse.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/ast/serialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/ast/serialize.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/ast/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/ast/types.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/ast/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/ast/utils.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/cli/CliPrinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/cli/CliPrinter.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/cli/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/cli/colors.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/cli/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/cli/makeProgram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/cli/makeProgram.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/cli/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/cli/utils.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/compiler/constants.ts: -------------------------------------------------------------------------------- 1 | export const INDEX_LOOKUP_FUNCTION = "#indexLookup"; 2 | -------------------------------------------------------------------------------- /packages/squiggle-lang/src/compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/compiler/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/compiler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/compiler/types.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/dists/BaseDist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/dists/BaseDist.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/dists/DistError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/dists/DistError.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/dists/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/dists/env.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/errors/IError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/errors/IError.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/errors/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/errors/messages.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/boolean.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/calculator.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/common.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/danger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/danger.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/date.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/dict.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/dist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/dist.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/distUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/distUtil.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/duration.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/genericDist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/genericDist.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/input.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/list.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/math.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/mixedSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/mixedSet.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/mixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/mixture.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/number.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/plot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/plot.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/pointset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/pointset.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/sampleset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/sampleset.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/scale.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/scoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/scoring.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/string.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/sym.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/sym.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/system.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/table.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/tag.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/fr/units.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/fr/units.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/library/FrInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/library/FrInput.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/library/FrType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/library/FrType.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/library/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/library/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/library/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/library/version.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/magicNumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/magicNumbers.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/operation.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/operationError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/operationError.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/public/SqError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/public/SqError.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/public/SqLinker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/public/SqLinker.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/public/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/public/parse.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/reducer/Reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/reducer/Reducer.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/reducer/Stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/reducer/Stack.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/reducer/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/squiggle-lang/src/rng/alea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/rng/alea.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/rng/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/rng/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/rng/native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/rng/native.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/rng/types.ts: -------------------------------------------------------------------------------- 1 | export type PRNG = () => number; 2 | -------------------------------------------------------------------------------- /packages/squiggle-lang/src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/run.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/runners/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/runners/common.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/runners/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/runners/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/runners/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/runners/worker.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/scripts/README.md -------------------------------------------------------------------------------- /packages/squiggle-lang/src/sq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/sq.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/TArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/TArray.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/TDict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/TDict.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/TDist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/TDist.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/TTuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/TTuple.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/TUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/TUnion.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/Type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/Type.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/helpers.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/types/serialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/types/serialize.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/utility/E_A.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/utility/E_A.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/utility/SDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/utility/SDate.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/utility/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/utility/math.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/utility/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/utility/result.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/utility/sExpr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/utility/sExpr.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/BaseValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/BaseValue.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VArray.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VBool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VBool.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VDate.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VDict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VDict.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VDist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VDist.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VDomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VDomain.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VDuration.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VInput.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VNumber.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VPlot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VPlot.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VScale.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VString.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/VVoid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/VVoid.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/index.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/mixins.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/vLambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/vLambda.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/value/valueTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/value/valueTags.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/src/yTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/src/yTransform.ts -------------------------------------------------------------------------------- /packages/squiggle-lang/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/tsconfig.build.json -------------------------------------------------------------------------------- /packages/squiggle-lang/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/tsconfig.json -------------------------------------------------------------------------------- /packages/squiggle-lang/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/squiggle-lang/turbo.json -------------------------------------------------------------------------------- /packages/textmate-grammar/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /packages/textmate-grammar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/textmate-grammar/CHANGELOG.md -------------------------------------------------------------------------------- /packages/textmate-grammar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/textmate-grammar/package.json -------------------------------------------------------------------------------- /packages/textmate-grammar/tests/main.squiggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/textmate-grammar/tests/main.squiggle -------------------------------------------------------------------------------- /packages/ui/.gitignore: -------------------------------------------------------------------------------- 1 | /storybook-static 2 | -------------------------------------------------------------------------------- /packages/ui/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | storybook-static 3 | -------------------------------------------------------------------------------- /packages/ui/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/.storybook/main.ts -------------------------------------------------------------------------------- /packages/ui/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/.storybook/preview.tsx -------------------------------------------------------------------------------- /packages/ui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/README.md -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/postcss.config.cjs -------------------------------------------------------------------------------- /packages/ui/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/Button.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/Dropdown/index.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/Modal.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/MouseTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/MouseTooltip.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/StyledTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/StyledTab.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/Table/Table.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/TextTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/TextTooltip.tsx -------------------------------------------------------------------------------- /packages/ui/src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /packages/ui/src/forms/common/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/forms/common/FormField.tsx -------------------------------------------------------------------------------- /packages/ui/src/forms/common/FormInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/forms/common/FormInput.tsx -------------------------------------------------------------------------------- /packages/ui/src/forms/common/WithRHFError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/forms/common/WithRHFError.tsx -------------------------------------------------------------------------------- /packages/ui/src/forms/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/forms/common/types.ts -------------------------------------------------------------------------------- /packages/ui/src/forms/styled/StyledInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/forms/styled/StyledInput.tsx -------------------------------------------------------------------------------- /packages/ui/src/forms/styled/StyledRadio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/forms/styled/StyledRadio.tsx -------------------------------------------------------------------------------- /packages/ui/src/generateProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/generateProvider.tsx -------------------------------------------------------------------------------- /packages/ui/src/hooks/react-use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/hooks/react-use.ts -------------------------------------------------------------------------------- /packages/ui/src/hooks/useGlobalShortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/hooks/useGlobalShortcut.ts -------------------------------------------------------------------------------- /packages/ui/src/icons/CheckCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/CheckCircleIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/DieIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/DieIcons.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/DotsHorizontalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/DotsHorizontalIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/EditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/EditIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/EmptyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/EmptyIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/ErrorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/ErrorIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/ExternalLinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/ExternalLinkIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/FocusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/FocusIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/HeroIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/HeroIcons.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/Icon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/PlusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/PlusIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/RefreshIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/RefreshIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/SignOutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/SignOutIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/TrashIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/TrashIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/TriangleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/TriangleIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons/XIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/icons/XIcon.tsx -------------------------------------------------------------------------------- /packages/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/index.ts -------------------------------------------------------------------------------- /packages/ui/src/stories/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/Button.stories.tsx -------------------------------------------------------------------------------- /packages/ui/src/stories/Dropdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/Dropdown.stories.tsx -------------------------------------------------------------------------------- /packages/ui/src/stories/Forms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/Forms.mdx -------------------------------------------------------------------------------- /packages/ui/src/stories/Forms/withRHF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/Forms/withRHF.tsx -------------------------------------------------------------------------------- /packages/ui/src/stories/Icons.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/Icons.mdx -------------------------------------------------------------------------------- /packages/ui/src/stories/StyledTab.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/StyledTab.stories.tsx -------------------------------------------------------------------------------- /packages/ui/src/stories/Table.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/Table.stories.tsx -------------------------------------------------------------------------------- /packages/ui/src/stories/Toast.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/Toast.stories.tsx -------------------------------------------------------------------------------- /packages/ui/src/stories/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/stories/helpers.tsx -------------------------------------------------------------------------------- /packages/ui/src/styles/full.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/src/styles/full.css -------------------------------------------------------------------------------- /packages/ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/tailwind.config.js -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/turbo.json -------------------------------------------------------------------------------- /packages/ui/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/vercel.json -------------------------------------------------------------------------------- /packages/ui/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/ui/vite.config.js -------------------------------------------------------------------------------- /packages/vscode-ext/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/vscode-ext/.gitignore: -------------------------------------------------------------------------------- 1 | /media/vendor 2 | /*.vsix 3 | /syntaxes 4 | /out 5 | -------------------------------------------------------------------------------- /packages/vscode-ext/.prettierignore: -------------------------------------------------------------------------------- 1 | out 2 | dist 3 | media/vendor 4 | syntaxes 5 | -------------------------------------------------------------------------------- /packages/vscode-ext/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/.vscode/settings.json -------------------------------------------------------------------------------- /packages/vscode-ext/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/.vscode/tasks.json -------------------------------------------------------------------------------- /packages/vscode-ext/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/.vscodeignore -------------------------------------------------------------------------------- /packages/vscode-ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vscode-ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/LICENSE -------------------------------------------------------------------------------- /packages/vscode-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/README.md -------------------------------------------------------------------------------- /packages/vscode-ext/overrides/jest/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/vscode-ext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/package.json -------------------------------------------------------------------------------- /packages/vscode-ext/src/client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/client/client.ts -------------------------------------------------------------------------------- /packages/vscode-ext/src/client/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/client/extension.ts -------------------------------------------------------------------------------- /packages/vscode-ext/src/client/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/client/highlight.ts -------------------------------------------------------------------------------- /packages/vscode-ext/src/client/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/client/preview.ts -------------------------------------------------------------------------------- /packages/vscode-ext/src/client/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/client/utils.ts -------------------------------------------------------------------------------- /packages/vscode-ext/src/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/server/server.ts -------------------------------------------------------------------------------- /packages/vscode-ext/src/webview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/webview/index.tsx -------------------------------------------------------------------------------- /packages/vscode-ext/src/webview/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/webview/main.css -------------------------------------------------------------------------------- /packages/vscode-ext/src/webview/vscode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/src/webview/vscode.ts -------------------------------------------------------------------------------- /packages/vscode-ext/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/tailwind.config.ts -------------------------------------------------------------------------------- /packages/vscode-ext/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/packages/vscode-ext/tsconfig.json -------------------------------------------------------------------------------- /patches/react-select@5.10.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/patches/react-select@5.10.1.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/prettier.config.js -------------------------------------------------------------------------------- /skip-dependabot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/skip-dependabot.sh -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/turbo.json -------------------------------------------------------------------------------- /turbo/generators/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/turbo/generators/config.ts -------------------------------------------------------------------------------- /turbo/generators/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantified-uncertainty/squiggle/HEAD/turbo/generators/package.json -------------------------------------------------------------------------------- /turbo/generators/templates/internal-package/index.ts.hbs: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------