├── .env ├── .github ├── dependabot.yml └── workflows │ ├── backend-build-and-test.yml │ ├── build-app-server-binary.yml │ ├── build-push.yml │ ├── fe-build-check.yml │ ├── fe-tests-check.yml │ └── query-engine-tests-check.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── app-server ├── .dockerignore ├── .env.example ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── build.rs ├── data │ ├── LICENSE.txt │ ├── adjectives.txt │ └── nouns.txt ├── proto │ ├── agent_manager_grpc.proto │ ├── opentelemetry │ │ ├── common.proto │ │ ├── resource.proto │ │ ├── trace.proto │ │ └── trace_service.proto │ └── query_engine.proto └── src │ ├── api │ ├── mod.rs │ ├── utils.rs │ └── v1 │ │ ├── browser_sessions.rs │ │ ├── datasets.rs │ │ ├── evals.rs │ │ ├── evaluators.rs │ │ ├── metrics.rs │ │ ├── mod.rs │ │ ├── payloads.rs │ │ ├── sql.rs │ │ ├── tag.rs │ │ └── traces.rs │ ├── auth │ └── mod.rs │ ├── browser_events │ └── mod.rs │ ├── cache │ ├── in_memory.rs │ ├── keys.rs │ ├── mod.rs │ └── redis.rs │ ├── ch │ ├── browser_events.rs │ ├── datapoints.rs │ ├── evaluation_datapoint_outputs.rs │ ├── evaluation_datapoints.rs │ ├── evaluation_scores.rs │ ├── evaluator_scores.rs │ ├── events.rs │ ├── limits.rs │ ├── mod.rs │ ├── spans.rs │ ├── tags.rs │ ├── traces.rs │ └── utils.rs │ ├── datasets │ ├── datapoints.rs │ └── mod.rs │ ├── db │ ├── datasets.rs │ ├── evaluations.rs │ ├── evaluators.rs │ ├── event_definitions.rs │ ├── events.rs │ ├── mod.rs │ ├── prices.rs │ ├── project_api_keys.rs │ ├── projects.rs │ ├── slack_channel_to_events.rs │ ├── slack_integrations.rs │ ├── spans.rs │ ├── stats.rs │ ├── summary_trigger_spans.rs │ ├── tags.rs │ ├── trace.rs │ └── utils.rs │ ├── evaluations │ ├── mod.rs │ └── utils.rs │ ├── evaluators │ └── mod.rs │ ├── features │ └── mod.rs │ ├── instrumentation │ └── mod.rs │ ├── language_model │ ├── chat_message.rs │ ├── costs │ │ ├── mod.rs │ │ └── utils.rs │ └── mod.rs │ ├── main.rs │ ├── mq │ ├── mod.rs │ ├── rabbit.rs │ ├── tokio_mpsc.rs │ └── utils.rs │ ├── names │ └── mod.rs │ ├── notifications │ ├── mod.rs │ └── slack.rs │ ├── opentelemetry_proto │ ├── mod.rs │ ├── opentelemetry.proto.collector.trace.v1.rs │ ├── opentelemetry_collector_trace_v1.rs │ ├── opentelemetry_proto_common_v1.rs │ ├── opentelemetry_proto_resource_v1.rs │ └── opentelemetry_proto_trace_v1.rs │ ├── project_api_keys │ └── mod.rs │ ├── query_engine │ ├── mock.rs │ ├── mod.rs │ ├── query_engine.rs │ └── query_engine_impl.rs │ ├── realtime │ └── mod.rs │ ├── routes │ ├── error.rs │ ├── evaluations.rs │ ├── mod.rs │ ├── probes.rs │ ├── realtime.rs │ ├── spans.rs │ ├── sql.rs │ └── types.rs │ ├── runtime │ └── mod.rs │ ├── sql │ ├── mod.rs │ └── queries.rs │ ├── storage │ ├── mock.rs │ ├── mod.rs │ └── s3.rs │ ├── traces │ ├── clustering.rs │ ├── consumer.rs │ ├── events.rs │ ├── grpc_service.rs │ ├── limits.rs │ ├── mod.rs │ ├── producer.rs │ ├── provider │ │ ├── langchain.rs │ │ ├── mod.rs │ │ └── openai.rs │ ├── realtime.rs │ ├── span_attributes.rs │ ├── spans.rs │ ├── summary.rs │ ├── trigger.rs │ └── utils.rs │ ├── utils │ └── mod.rs │ └── worker_tracking │ └── mod.rs ├── clickhouse-profiles-config.xml ├── docker-compose-full.yml ├── docker-compose-local-build.yml ├── docker-compose-local-dev-full.yml ├── docker-compose-local-dev.yml ├── docker-compose.yml ├── frontend ├── .dockerignore ├── .env.local.example ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── Dockerfile ├── README.md ├── app │ ├── api │ │ ├── auth │ │ │ ├── [...nextauth] │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ └── traces │ │ │ │ └── [traceId] │ │ │ │ └── route.ts │ │ ├── browser-sessions │ │ │ └── events │ │ │ │ └── route.ts │ │ ├── integrations │ │ │ └── slack │ │ │ │ └── route.ts │ │ ├── invitations │ │ │ └── [id] │ │ │ │ └── route.ts │ │ ├── projects │ │ │ ├── [projectId] │ │ │ │ ├── api-keys │ │ │ │ │ └── route.ts │ │ │ │ ├── browser-sessions │ │ │ │ │ └── events │ │ │ │ │ │ └── route.ts │ │ │ │ ├── chat │ │ │ │ │ └── route.ts │ │ │ │ ├── dashboard-charts │ │ │ │ │ ├── [id] │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── datasets │ │ │ │ │ ├── [datasetId] │ │ │ │ │ │ ├── count │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── datapoints │ │ │ │ │ │ │ ├── [datapointId] │ │ │ │ │ │ │ │ ├── route.ts │ │ │ │ │ │ │ │ └── versions │ │ │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ │ ├── push-to-queue │ │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── download │ │ │ │ │ │ │ └── [format] │ │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── export-jobs │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── file-upload │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── parquets │ │ │ │ │ │ │ ├── [idx] │ │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── evaluation-groups │ │ │ │ │ ├── [groupId] │ │ │ │ │ │ └── progression │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── evaluation-scores │ │ │ │ │ └── [evaluationResultId] │ │ │ │ │ │ └── route.ts │ │ │ │ ├── evaluations │ │ │ │ │ ├── [evaluationId] │ │ │ │ │ │ ├── download │ │ │ │ │ │ │ └── [format] │ │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── route.ts │ │ │ │ │ │ └── stats │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── evaluators │ │ │ │ │ ├── [evaluatorId] │ │ │ │ │ │ ├── route.ts │ │ │ │ │ │ └── span-path │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── execute │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ └── span-path │ │ │ │ │ │ └── route.ts │ │ │ │ ├── event-definitions │ │ │ │ │ ├── [id] │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── events │ │ │ │ │ └── [name] │ │ │ │ │ │ ├── route.ts │ │ │ │ │ │ └── stats │ │ │ │ │ │ └── route.ts │ │ │ │ ├── patterns │ │ │ │ │ └── route.ts │ │ │ │ ├── payloads │ │ │ │ │ └── [payloadId] │ │ │ │ │ │ └── route.ts │ │ │ │ ├── playgrounds │ │ │ │ │ ├── [playgroundId] │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── provider-api-keys │ │ │ │ │ └── route.ts │ │ │ │ ├── queues │ │ │ │ │ ├── [queueId] │ │ │ │ │ │ ├── annotation-schema │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── move │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── push │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── remove │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── realtime │ │ │ │ │ └── route.ts │ │ │ │ ├── render-templates │ │ │ │ │ ├── [templateId] │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── route.ts │ │ │ │ ├── sessions │ │ │ │ │ └── route.ts │ │ │ │ ├── slack │ │ │ │ │ └── route.ts │ │ │ │ ├── spans │ │ │ │ │ ├── [spanId] │ │ │ │ │ │ ├── basic-info │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── evaluator-scores │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── export │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── push │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── tags │ │ │ │ │ │ │ ├── [tagId] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── sql │ │ │ │ │ ├── export-job │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── export │ │ │ │ │ │ └── [datasetId] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── from-json │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── [templateId] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── to-json │ │ │ │ │ │ └── route.ts │ │ │ │ ├── stats │ │ │ │ │ └── route.ts │ │ │ │ ├── summary-trigger-spans │ │ │ │ │ ├── [id] │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ └── unassigned │ │ │ │ │ │ └── route.ts │ │ │ │ ├── tag-classes │ │ │ │ │ ├── [tagName] │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── templates │ │ │ │ │ └── route.ts │ │ │ │ └── traces │ │ │ │ │ ├── [traceId] │ │ │ │ │ ├── agent │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── new-chat │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── route.ts │ │ │ │ │ │ └── summary │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ └── spans │ │ │ │ │ │ ├── [spanId] │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ └── stats │ │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── shared │ │ │ ├── payloads │ │ │ │ └── [payloadId] │ │ │ │ │ └── route.ts │ │ │ └── traces │ │ │ │ └── [traceId] │ │ │ │ ├── browser-sessions │ │ │ │ └── events │ │ │ │ │ └── route.ts │ │ │ │ ├── route.ts │ │ │ │ └── spans │ │ │ │ ├── [spanId] │ │ │ │ ├── events │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ │ └── images │ │ │ │ └── route.ts │ │ ├── webhook │ │ │ └── slack │ │ │ │ └── route.ts │ │ └── workspaces │ │ │ ├── [workspaceId] │ │ │ ├── invite │ │ │ │ └── route.ts │ │ │ ├── projects │ │ │ │ └── route.ts │ │ │ ├── remove-user │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ ├── transfer-ownership │ │ │ │ └── route.ts │ │ │ ├── update-seats │ │ │ │ └── route.ts │ │ │ ├── update-user-role │ │ │ │ └── route.ts │ │ │ └── users │ │ │ │ └── route.ts │ │ │ └── route.ts │ ├── blog │ │ ├── [slug] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── checkout │ │ ├── page.tsx │ │ └── portal │ │ │ └── page.tsx │ ├── computer │ │ └── page.tsx │ ├── error.tsx │ ├── favicon.ico │ ├── globals.css │ ├── invitations │ │ └── page.tsx │ ├── layout.tsx │ ├── not-found.tsx │ ├── onboarding │ │ └── page.tsx │ ├── opengraph-image.png │ ├── page.tsx │ ├── policies │ │ ├── cookies │ │ │ └── page.tsx │ │ ├── privacy │ │ │ └── page.tsx │ │ └── terms │ │ │ └── page.tsx │ ├── posthog-identifier.tsx │ ├── posthog-pageview.tsx │ ├── posthog.ts │ ├── pricing │ │ └── page.tsx │ ├── project │ │ └── [projectId] │ │ │ ├── dashboard │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── datasets │ │ │ ├── [datasetId] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── evaluations │ │ │ ├── [evaluationId] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── evaluators │ │ │ └── page.tsx │ │ │ ├── events │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── labeling-queues │ │ │ ├── [queueId] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── patterns │ │ │ └── page.tsx │ │ │ ├── playgrounds │ │ │ ├── [playgroundId] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ │ ├── settings │ │ │ └── page.tsx │ │ │ ├── sql │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ │ └── traces │ │ │ ├── [traceId] │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── projects │ │ └── page.tsx │ ├── providers.tsx │ ├── scroll.css │ ├── shared │ │ └── traces │ │ │ └── [traceId] │ │ │ └── page.tsx │ ├── sign-in │ │ └── page.tsx │ ├── sign-up │ │ └── page.tsx │ ├── twitter-image.png │ ├── webhook │ │ └── route.ts │ └── workspace │ │ └── [workspaceId] │ │ └── page.tsx ├── assets │ ├── blog │ │ ├── 2024-12-01-launch-week-1.mdx │ │ ├── 2024-12-03-evals.mdx │ │ ├── 2024-12-04-semantic-retrieval.mdx │ │ ├── 2024-12-05-labeling-queues.mdx │ │ └── 2024-12-06-online-evals.mdx │ ├── landing │ │ ├── companies │ │ │ ├── amplitude.png │ │ │ ├── remo.svg │ │ │ ├── saturn.png │ │ │ └── skyvern.webp │ │ ├── datasets.png │ │ ├── evals.png │ │ ├── evals2.png │ │ ├── github-mark-white.svg │ │ ├── index.png │ │ ├── iterate.png │ │ ├── labeling.png │ │ ├── observability.png │ │ ├── observe.png │ │ ├── playground.png │ │ ├── query.png │ │ ├── traces.png │ │ └── yc.svg │ ├── logo │ │ ├── discord.tsx │ │ ├── google.svg │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icon_light.svg │ │ ├── logo.svg │ │ └── microsoft.svg │ └── pipeline │ │ └── node-previews │ │ ├── code-node-preview.png │ │ ├── code-sandbox-node-preview.png │ │ ├── function-node-preview.png │ │ ├── input-node-preview.png │ │ ├── json-extractor-node-preview.png │ │ ├── llm-node-preview.png │ │ ├── map-node-preview.png │ │ ├── output-node-preview.png │ │ ├── semantic-search-node-preview.png │ │ ├── semantic-similarity-node-preview.png │ │ ├── semantic-switch-node-preview.png │ │ ├── string-template-node-preview.png │ │ ├── subpipeline-node-preview.png │ │ ├── switch-node-preview.png │ │ ├── tool-call-node-preview.png │ │ └── web-search-node-preview.png ├── components.json ├── components │ ├── ai-elements │ │ ├── conversation.tsx │ │ └── response.tsx │ ├── auth │ │ ├── azure-button.tsx │ │ ├── email-sign-in.tsx │ │ ├── github-button.tsx │ │ ├── google-button.tsx │ │ ├── sign-in.tsx │ │ └── sign-up.tsx │ ├── blog │ │ ├── blog-meta.tsx │ │ ├── md-heading.tsx │ │ ├── pre-highlighter.tsx │ │ └── toc.tsx │ ├── chart-builder │ │ ├── chart-builder-store.tsx │ │ ├── charts │ │ │ ├── bar-chart.tsx │ │ │ ├── horizontal-bar-chart.tsx │ │ │ ├── index.tsx │ │ │ ├── line-chart.tsx │ │ │ └── utils.ts │ │ ├── export-chart-dialog.tsx │ │ ├── index.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── charts │ │ └── time-series-chart │ │ │ ├── bar.tsx │ │ │ ├── index.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── types.ts │ │ │ ├── use-time-series-stats-url.ts │ │ │ └── utils.ts │ ├── checkout │ │ └── checkout-success.tsx │ ├── client-timestamp-formatter.tsx │ ├── common │ │ └── search-input.tsx │ ├── dashboard │ │ ├── chart-header.tsx │ │ ├── chart.tsx │ │ ├── dashboard.tsx │ │ ├── editor │ │ │ ├── Builder.tsx │ │ │ ├── Form.tsx │ │ │ ├── constants.ts │ │ │ ├── dashboard-editor-store.tsx │ │ │ ├── fields │ │ │ │ ├── ChartTypeField.tsx │ │ │ │ ├── DimensionsField.tsx │ │ │ │ ├── FiltersField.tsx │ │ │ │ ├── LimitField.tsx │ │ │ │ ├── MetricsField.tsx │ │ │ │ ├── OrderByField.tsx │ │ │ │ ├── TableSelect.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── table-schemas.ts │ │ │ └── types.ts │ │ ├── grid-layout.tsx │ │ ├── styles.css │ │ └── types.ts │ ├── dataset │ │ ├── add-datapoints-dialog.tsx │ │ ├── datapoint-version-selector.tsx │ │ ├── dataset-panel.tsx │ │ ├── dataset-upload.tsx │ │ ├── dataset.tsx │ │ ├── delete-datapoints-dialog.tsx │ │ ├── download-parquet-dialog.tsx │ │ └── manual-add-datapoint-dialog.tsx │ ├── datasets │ │ ├── create-dataset-dialog.tsx │ │ ├── datasets.tsx │ │ ├── rename-dataset-dialog.tsx │ │ └── update-dataset-dialog.tsx │ ├── evaluation │ │ ├── chart.tsx │ │ ├── columns.tsx │ │ ├── compare-chart.tsx │ │ ├── delete-evaluation-dialog.tsx │ │ ├── evaluation-datapoints-table.tsx │ │ ├── evaluation-header.tsx │ │ ├── evaluation.tsx │ │ ├── graphs-utils.tsx │ │ ├── rename-evaluation-dialog.tsx │ │ ├── score-card.tsx │ │ ├── search-evaluation-input.tsx │ │ └── utils.ts │ ├── evaluations │ │ ├── evaluations-groups-bar.tsx │ │ ├── evaluations.tsx │ │ ├── page-placeholder.tsx │ │ └── progression-chart.tsx │ ├── evaluators │ │ ├── evaluator-scores-list.tsx │ │ ├── evaluators-table.tsx │ │ ├── evaluators.tsx │ │ ├── lib │ │ │ └── consts.tsx │ │ ├── manage-evaluator-sheet.tsx │ │ └── register-evaluator-popover.tsx │ ├── event-definitions │ │ ├── columns.tsx │ │ ├── event-definitions.tsx │ │ └── manage-event-definition-dialog.tsx │ ├── events │ │ ├── columns.tsx │ │ ├── events-chart │ │ │ └── index.tsx │ │ ├── events-store.tsx │ │ └── events.tsx │ ├── integrations │ │ └── frameworks-grid.tsx │ ├── landing │ │ ├── datasets-animation.tsx │ │ ├── feature-card.tsx │ │ ├── footer.tsx │ │ ├── frameworks-grid.tsx │ │ ├── infinite-logo-carousel.tsx │ │ ├── landing-header.tsx │ │ ├── landing.tsx │ │ ├── pricing-card.tsx │ │ └── pricing.tsx │ ├── lang-graph │ │ ├── edge.tsx │ │ ├── index.tsx │ │ ├── runnable-node.tsx │ │ └── schema-node.tsx │ ├── onboarding │ │ └── create-first-workspace-and-project.tsx │ ├── patterns │ │ ├── columns.tsx │ │ └── index.tsx │ ├── playground │ │ ├── image-with-preview.tsx │ │ ├── messages │ │ │ ├── index.tsx │ │ │ ├── llm-select.tsx │ │ │ ├── message-parts.tsx │ │ │ ├── message.tsx │ │ │ ├── params-popover.tsx │ │ │ ├── reasoning-field.tsx │ │ │ ├── structured-output-sheet.tsx │ │ │ └── tools-sheet.tsx │ │ ├── playground-history-table.tsx │ │ ├── playground-output.ts │ │ ├── playground-panel.tsx │ │ ├── playground.tsx │ │ ├── providers-alert.tsx │ │ ├── types.ts │ │ ├── usage.tsx │ │ └── utils.tsx │ ├── playgrounds │ │ ├── create-playground-dialog.tsx │ │ └── playgrounds.tsx │ ├── project │ │ ├── sidebar │ │ │ ├── content.tsx │ │ │ ├── header.tsx │ │ │ └── index.tsx │ │ ├── usage-banner.tsx │ │ └── utils.ts │ ├── projects │ │ ├── project-card.tsx │ │ ├── project-create-dialog.tsx │ │ ├── projects-header.tsx │ │ ├── projects.tsx │ │ ├── sidebar-footer.tsx │ │ └── workspace-create-dialog.tsx │ ├── queue │ │ ├── annotation-interface.tsx │ │ ├── queue-store.tsx │ │ ├── queue.tsx │ │ └── schema-definition-dialog.tsx │ ├── queues │ │ ├── create-queue-dialog.tsx │ │ └── queues.tsx │ ├── session-player │ │ └── utils.ts │ ├── settings │ │ ├── add-provider-api-key-dialog.tsx │ │ ├── delete-project.tsx │ │ ├── integrations.tsx │ │ ├── project-api-keys │ │ │ ├── display-key-dialog-content.tsx │ │ │ ├── generate-key-dialog-content.tsx │ │ │ └── index.tsx │ │ ├── provider-api-keys.tsx │ │ ├── rename-project.tsx │ │ ├── revoke-dialog.tsx │ │ ├── settings-section.tsx │ │ ├── settings.tsx │ │ └── trace-summary-settings.tsx │ ├── shared │ │ └── traces │ │ │ ├── session-player.tsx │ │ │ ├── span-view.tsx │ │ │ └── trace-view.tsx │ ├── sql │ │ ├── date-picker.tsx │ │ ├── dnd-components.tsx │ │ ├── editor-panel.tsx │ │ ├── editor.tsx │ │ ├── export-job-dialog.tsx │ │ ├── export-sql-dialog.tsx │ │ ├── index.tsx │ │ ├── parameters-panel.tsx │ │ ├── sidebar.tsx │ │ ├── sql-editor-store.ts │ │ └── utils.ts │ ├── tags │ │ ├── create-tag.tsx │ │ ├── manage-tags.tsx │ │ ├── pick-tag.tsx │ │ ├── tags-context.tsx │ │ ├── tags-list.tsx │ │ └── tags-trigger.tsx │ ├── traces │ │ ├── add-to-labeling-queue-popover.tsx │ │ ├── error-card.tsx │ │ ├── export-spans-popover.tsx │ │ ├── no-span-tooltip.tsx │ │ ├── page-placeholder.tsx │ │ ├── search-traces-input.tsx │ │ ├── session-player.tsx │ │ ├── sessions-table │ │ │ ├── columns.tsx │ │ │ └── index.tsx │ │ ├── share-trace-button.tsx │ │ ├── span-controls.tsx │ │ ├── span-images-video-player.tsx │ │ ├── span-type-icon.tsx │ │ ├── span-view │ │ │ ├── common.tsx │ │ │ ├── generic-parts.tsx │ │ │ ├── index.tsx │ │ │ ├── langchain-parts.tsx │ │ │ ├── messages.tsx │ │ │ ├── openai-parts.tsx │ │ │ ├── search-bar.tsx │ │ │ ├── span-content.tsx │ │ │ ├── span-search-context.tsx │ │ │ └── span-view-store.tsx │ │ ├── spans-table │ │ │ ├── columns.tsx │ │ │ └── index.tsx │ │ ├── stats-shields.tsx │ │ ├── tabs-section.tsx │ │ ├── trace-view │ │ │ ├── chat.tsx │ │ │ ├── header.tsx │ │ │ ├── human-evaluation-score.tsx │ │ │ ├── human-evaluator-span-view.tsx │ │ │ ├── index.tsx │ │ │ ├── lang-graph-view-trigger.tsx │ │ │ ├── lang-graph-view.tsx │ │ │ ├── metadata.tsx │ │ │ ├── minimap.tsx │ │ │ ├── navigation-context.tsx │ │ │ ├── scroll-context.tsx │ │ │ ├── search-spans-input.tsx │ │ │ ├── span-card.tsx │ │ │ ├── timeline-element.tsx │ │ │ ├── timeline.tsx │ │ │ ├── trace-view-store-utils.ts │ │ │ ├── trace-view-store.tsx │ │ │ ├── tree.tsx │ │ │ └── utils.ts │ │ ├── trace.tsx │ │ ├── traces-chart │ │ │ ├── bar.tsx │ │ │ ├── chart.tsx │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ ├── traces-store.tsx │ │ ├── traces-table │ │ │ ├── columns.tsx │ │ │ └── index.tsx │ │ └── traces.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── auto-complete.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button-loading.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── code-editor.tsx │ │ ├── code-highlighter.tsx │ │ ├── collapsible.tsx │ │ ├── combobox.tsx │ │ ├── command.tsx │ │ ├── confirm-dialog.tsx │ │ ├── content-renderer │ │ │ ├── code-sheet.tsx │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ ├── copy-button.tsx │ │ ├── create-button.tsx │ │ ├── dataset-select.tsx │ │ ├── datatable-sorts.tsx │ │ ├── default-textarea.tsx │ │ ├── delete-selected-rows.tsx │ │ ├── dialog.tsx │ │ ├── download-button.tsx │ │ ├── dropdown-menu.tsx │ │ ├── formatter.tsx │ │ ├── group-by-period-select.tsx │ │ ├── header.tsx │ │ ├── icons.tsx │ │ ├── infinite-datatable │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── use-infinite-scroll.tsx │ │ │ │ └── use-selection.tsx │ │ │ ├── index.tsx │ │ │ ├── model │ │ │ │ └── datatable-store.tsx │ │ │ ├── types.ts │ │ │ ├── ui │ │ │ │ ├── body.tsx │ │ │ │ ├── cell.tsx │ │ │ │ ├── columns-menu-item.tsx │ │ │ │ ├── columns-menu.tsx │ │ │ │ ├── datatable-filter │ │ │ │ │ ├── context.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── ui.tsx │ │ │ │ │ └── utils.ts │ │ │ │ ├── head.tsx │ │ │ │ ├── header.tsx │ │ │ │ ├── refresh-button.tsx │ │ │ │ ├── row.tsx │ │ │ │ └── selection-panel.tsx │ │ │ └── utils.tsx │ │ ├── input-password.tsx │ │ ├── input.tsx │ │ ├── json-tooltip.tsx │ │ ├── label.tsx │ │ ├── mono-with-copy.tsx │ │ ├── mono.tsx │ │ ├── pdf-renderer.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── status-label.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── tag-input.tsx │ │ ├── tag-list.tsx │ │ ├── tag-popover.tsx │ │ ├── tag.tsx │ │ ├── template-renderer │ │ │ ├── index.tsx │ │ │ ├── jsx-renderer.tsx │ │ │ ├── manage-template-dialog.tsx │ │ │ └── template-renderer-store.ts │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ └── tooltip.tsx │ ├── user │ │ ├── avatar-menu.tsx │ │ └── presence-user-image.tsx │ ├── vnc │ │ ├── vnc-client.tsx │ │ └── vnc.tsx │ └── workspace │ │ ├── add-user-dialog.tsx │ │ ├── invitations-table.tsx │ │ ├── leave-workspace-dialog.tsx │ │ ├── pricing-dialog.tsx │ │ ├── purchase-seats-dialog.tsx │ │ ├── remove-user-dialog.tsx │ │ ├── sidebar │ │ ├── content.tsx │ │ ├── header.tsx │ │ └── index.tsx │ │ ├── ui │ │ └── transfer-ownership-dialog.tsx │ │ ├── workspace-menu-provider.tsx │ │ ├── workspace-settings.tsx │ │ ├── workspace-usage.tsx │ │ ├── workspace-users.tsx │ │ └── workspace.tsx ├── contexts │ ├── pipeline-version-context.tsx │ ├── project-context.tsx │ └── user-context.tsx ├── drizzle.config.ts ├── eslint.config.ts ├── hooks │ ├── use-local-storage.tsx │ └── use-mobile.tsx ├── instrumentation.ts ├── lib │ ├── actions │ │ ├── chat │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── clusters │ │ │ └── index.ts │ │ ├── common │ │ │ ├── query-builder.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── dashboard │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── datapoint │ │ │ └── index.ts │ │ ├── datapoints │ │ │ ├── index.ts │ │ │ ├── utils.ts │ │ │ └── versions │ │ │ │ └── index.ts │ │ ├── dataset-export-jobs │ │ │ └── index.ts │ │ ├── dataset │ │ │ └── index.ts │ │ ├── datasets │ │ │ └── index.ts │ │ ├── evaluation-score │ │ │ └── index.ts │ │ ├── evaluation │ │ │ ├── cookies.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── evaluations │ │ │ └── index.ts │ │ ├── evaluator-scores │ │ │ └── index.ts │ │ ├── evaluator │ │ │ ├── cache.ts │ │ │ ├── execute.ts │ │ │ ├── index.ts │ │ │ └── span-path.ts │ │ ├── evaluators │ │ │ ├── index.ts │ │ │ └── span-path.ts │ │ ├── event-definitions │ │ │ └── index.ts │ │ ├── events │ │ │ ├── index.ts │ │ │ ├── stats.ts │ │ │ └── utils.ts │ │ ├── project-api-keys │ │ │ └── index.ts │ │ ├── project │ │ │ ├── cookies.ts │ │ │ └── index.ts │ │ ├── projects │ │ │ └── index.ts │ │ ├── provider-api-keys │ │ │ └── index.ts │ │ ├── queue │ │ │ └── index.ts │ │ ├── render-template │ │ │ └── index.ts │ │ ├── render-templates │ │ │ └── index.ts │ │ ├── sessions │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── shared │ │ │ ├── browser-session-events │ │ │ │ └── index.ts │ │ │ ├── payload │ │ │ │ └── index.ts │ │ │ ├── span │ │ │ │ └── index.ts │ │ │ ├── spans │ │ │ │ ├── images.ts │ │ │ │ └── index.ts │ │ │ └── trace │ │ │ │ └── index.ts │ │ ├── slack │ │ │ ├── index.ts │ │ │ ├── slash-commands.ts │ │ │ ├── types.ts │ │ │ └── webhook.ts │ │ ├── span │ │ │ ├── images.ts │ │ │ └── index.ts │ │ ├── spans │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── sql │ │ │ ├── export-job.ts │ │ │ ├── index.ts │ │ │ ├── templates │ │ │ │ └── index.ts │ │ │ ├── types.ts │ │ │ └── validate-query.ts │ │ ├── summary-trigger-spans │ │ │ └── index.ts │ │ ├── tags │ │ │ └── index.ts │ │ ├── trace │ │ │ ├── agent │ │ │ │ ├── index.ts │ │ │ │ ├── messages.ts │ │ │ │ ├── prompt.ts │ │ │ │ ├── spans.ts │ │ │ │ ├── stream.ts │ │ │ │ └── summary.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── traces │ │ │ ├── cookies.ts │ │ │ ├── index.ts │ │ │ ├── stats.ts │ │ │ └── utils.ts │ │ ├── workspace │ │ │ ├── cookies.ts │ │ │ ├── index.ts │ │ │ ├── invite.ts │ │ │ └── utils.ts │ │ └── workspaces │ │ │ ├── index.ts │ │ │ └── utils.ts │ ├── ai │ │ └── llm.ts │ ├── api-keys.ts │ ├── api-keys │ │ └── types.ts │ ├── auth.ts │ ├── blog │ │ ├── types.ts │ │ └── utils.ts │ ├── cache.ts │ ├── check │ │ └── types.ts │ ├── checkout │ │ └── utils.ts │ ├── clickhouse │ │ ├── client.ts │ │ ├── datapoints.ts │ │ ├── evaluation-scores.ts │ │ ├── migrations │ │ │ ├── 10_trace_browser_session.sql │ │ │ ├── 1_squashed.sql │ │ │ ├── 2_labels-to-tags.sql │ │ │ ├── 3_eval-scores-span-tags.sql │ │ │ ├── 4_views.sql │ │ │ ├── 5_trace-summaries.sql │ │ │ ├── 6_trace-summary-views.sql │ │ │ ├── 7_versioned-datasets.sql │ │ │ ├── 8_eval_to_dataset_link.sql │ │ │ ├── 9_success_status.sql │ │ │ └── orig │ │ │ │ ├── 0000-initial.sql │ │ │ │ ├── 0001-evaluator-scores.sql │ │ │ │ ├── 0002-size-bytes.sql │ │ │ │ ├── 0003-span-status.sql │ │ │ │ ├── 0004-datapoints.sql │ │ │ │ ├── 0005-spans.sql │ │ │ │ ├── 0006-trace_id_and_attributes.sql │ │ │ │ ├── 0007-evaluation-datapoints.sql │ │ │ │ └── 0008-renames.sql │ │ ├── modifiers.ts │ │ ├── spans.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── colors.ts │ ├── const.ts │ ├── crypto.ts │ ├── dataset │ │ ├── types.ts │ │ └── utils.ts │ ├── db │ │ ├── auth.ts │ │ ├── default-charts.ts │ │ ├── drizzle.ts │ │ ├── initial-data.json │ │ ├── migrations │ │ │ ├── 0000_tidy_iron_monger.sql │ │ │ ├── 0001_reflective_nuke.sql │ │ │ ├── 0002_cold_romulus.sql │ │ │ ├── 0003_cultured_tinkerer.sql │ │ │ ├── 0004_worthless_kitty_pryde.sql │ │ │ ├── 0005_misty_leper_queen.sql │ │ │ ├── 0006_lonely_the_phantom.sql │ │ │ ├── 0007_youthful_greymalkin.sql │ │ │ ├── 0008_nosy_jean_grey.sql │ │ │ ├── 0009_lean_turbo.sql │ │ │ ├── 0010_brainy_wild_child.sql │ │ │ ├── 0011_bitter_daimon_hellstrom.sql │ │ │ ├── 0012_lying_mandrill.sql │ │ │ ├── 0013_living_polaris.sql │ │ │ ├── 0014_yellow_hannibal_king.sql │ │ │ ├── 0015_eminent_garia.sql │ │ │ ├── 0016_parched_nomad.sql │ │ │ ├── 0017_groovy_senator_kelly.sql │ │ │ ├── 0018_vengeful_violations.sql │ │ │ ├── 0019_hesitant_shatterstar.sql │ │ │ ├── 0020_crazy_obadiah_stane.sql │ │ │ ├── 0021_cold_morbius.sql │ │ │ ├── 0022_hesitant_skin.sql │ │ │ ├── 0023_youthful_chamber.sql │ │ │ ├── 0024_eminent_living_lightning.sql │ │ │ ├── 0025_amazing_drax.sql │ │ │ ├── 0026_lively_leper_queen.sql │ │ │ ├── 0027_massive_hawkeye.sql │ │ │ ├── 0028_futuristic_blonde_phantom.sql │ │ │ ├── 0029_conscious_the_hunter.sql │ │ │ ├── 0030_groovy_doctor_strange.sql │ │ │ ├── 0031_round_caretaker.sql │ │ │ ├── 0032_wealthy_gressill.sql │ │ │ ├── 0033_dizzy_longshot.sql │ │ │ ├── 0034_colossal_the_phantom.sql │ │ │ ├── 0035_aberrant_mantis.sql │ │ │ ├── 0036_gigantic_silver_sable.sql │ │ │ ├── 0037_cute_medusa.sql │ │ │ ├── 0037_parallel_retro_girl.sql │ │ │ ├── 0038_clumsy_johnny_storm.sql │ │ │ ├── 0039_late_stone_men.sql │ │ │ ├── 0040_amusing_gamma_corps.sql │ │ │ ├── 0041_silent_midnight.sql │ │ │ ├── 0042_violet_jamie_braddock.sql │ │ │ ├── 0043_fancy_zuras.sql │ │ │ ├── 0044_neat_blob.sql │ │ │ ├── 0045_aberrant_scarecrow.sql │ │ │ ├── 0046_talented_frog_thor.sql │ │ │ ├── 0047_mixed_wolf_cub.sql │ │ │ ├── 0048_damp_glorian.sql │ │ │ ├── 0049_harsh_sabretooth.sql │ │ │ ├── 0050_woozy_hairball.sql │ │ │ ├── 0051_omniscient_siren.sql │ │ │ ├── 0052_yummy_mauler.sql │ │ │ ├── 0053_flat_menace.sql │ │ │ ├── 0054_milky_toad.sql │ │ │ ├── 0055_loose_mandrill.sql │ │ │ ├── 0056_pale_darkstar.sql │ │ │ ├── 0057_empty_callisto.sql │ │ │ ├── 0058_sweet_shocker.sql │ │ │ ├── 0059_brief_hiroim.sql │ │ │ ├── 0060_smooth_pride.sql │ │ │ ├── 0061_zippy_the_hood.sql │ │ │ ├── meta │ │ │ │ ├── 0000_snapshot.json │ │ │ │ ├── 0001_snapshot.json │ │ │ │ ├── 0002_snapshot.json │ │ │ │ ├── 0003_snapshot.json │ │ │ │ ├── 0004_snapshot.json │ │ │ │ ├── 0005_snapshot.json │ │ │ │ ├── 0006_snapshot.json │ │ │ │ ├── 0007_snapshot.json │ │ │ │ ├── 0008_snapshot.json │ │ │ │ ├── 0009_snapshot.json │ │ │ │ ├── 0010_snapshot.json │ │ │ │ ├── 0011_snapshot.json │ │ │ │ ├── 0012_snapshot.json │ │ │ │ ├── 0013_snapshot.json │ │ │ │ ├── 0014_snapshot.json │ │ │ │ ├── 0015_snapshot.json │ │ │ │ ├── 0016_snapshot.json │ │ │ │ ├── 0017_snapshot.json │ │ │ │ ├── 0018_snapshot.json │ │ │ │ ├── 0019_snapshot.json │ │ │ │ ├── 0020_snapshot.json │ │ │ │ ├── 0021_snapshot.json │ │ │ │ ├── 0022_snapshot.json │ │ │ │ ├── 0023_snapshot.json │ │ │ │ ├── 0024_snapshot.json │ │ │ │ ├── 0025_snapshot.json │ │ │ │ ├── 0026_snapshot.json │ │ │ │ ├── 0027_snapshot.json │ │ │ │ ├── 0028_snapshot.json │ │ │ │ ├── 0029_snapshot.json │ │ │ │ ├── 0030_snapshot.json │ │ │ │ ├── 0031_snapshot.json │ │ │ │ ├── 0032_snapshot.json │ │ │ │ ├── 0033_snapshot.json │ │ │ │ ├── 0034_snapshot.json │ │ │ │ ├── 0035_snapshot.json │ │ │ │ ├── 0036_snapshot.json │ │ │ │ ├── 0037_snapshot.json │ │ │ │ ├── 0038_snapshot.json │ │ │ │ ├── 0039_snapshot.json │ │ │ │ ├── 0040_snapshot.json │ │ │ │ ├── 0041_snapshot.json │ │ │ │ ├── 0042_snapshot.json │ │ │ │ ├── 0043_snapshot.json │ │ │ │ ├── 0044_snapshot.json │ │ │ │ ├── 0045_snapshot.json │ │ │ │ ├── 0046_snapshot.json │ │ │ │ ├── 0047_snapshot.json │ │ │ │ ├── 0048_snapshot.json │ │ │ │ ├── 0049_snapshot.json │ │ │ │ ├── 0050_snapshot.json │ │ │ │ ├── 0051_snapshot.json │ │ │ │ ├── 0052_snapshot.json │ │ │ │ ├── 0053_snapshot.json │ │ │ │ ├── 0054_snapshot.json │ │ │ │ ├── 0055_snapshot.json │ │ │ │ ├── 0056_snapshot.json │ │ │ │ ├── 0057_snapshot.json │ │ │ │ ├── 0058_snapshot.json │ │ │ │ ├── 0059_snapshot.json │ │ │ │ ├── 0060_snapshot.json │ │ │ │ ├── 0061_snapshot.json │ │ │ │ └── _journal.json │ │ │ ├── relations.ts │ │ │ └── schema.ts │ │ ├── modifiers.ts │ │ └── utils.ts │ ├── emails │ │ ├── subscription-updated-email.tsx │ │ ├── utils.ts │ │ ├── welcome-email.tsx │ │ └── workspace-invite.tsx │ ├── env │ │ └── utils.ts │ ├── evaluation │ │ └── types.ts │ ├── evaluators │ │ └── types.ts │ ├── event-emitter.ts │ ├── events │ │ └── types.ts │ ├── features │ │ └── features.ts │ ├── fonts.ts │ ├── hooks │ │ ├── use-at-bottom.tsx │ │ ├── use-debounce.tsx │ │ ├── use-previous.tsx │ │ └── use-toast.ts │ ├── lang-graph │ │ ├── types.ts │ │ └── utils.ts │ ├── playground │ │ ├── providers │ │ │ ├── anthropic.ts │ │ │ ├── google.ts │ │ │ └── openai.ts │ │ ├── providersRegistry.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── queue │ │ └── types.ts │ ├── s3.ts │ ├── semaphore.ts │ ├── server-utils.ts │ ├── settings │ │ └── types.ts │ ├── spans │ │ ├── types │ │ │ ├── index.ts │ │ │ ├── langchain.ts │ │ │ └── openai.ts │ │ └── utils.ts │ ├── styles │ │ └── session-player.css │ ├── supabase.ts │ ├── tags │ │ └── colors.ts │ ├── time.ts │ ├── traces │ │ ├── types.ts │ │ └── utils.ts │ ├── types.ts │ ├── usage │ │ ├── types.ts │ │ └── workspace-stats.ts │ ├── user │ │ └── types.ts │ ├── utils.ts │ └── workspaces │ │ └── types.ts ├── middleware.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ └── blog │ │ ├── 2024-12-01-launch-week-1.png │ │ ├── 2024-12-03-evals-img-1.png │ │ ├── 2024-12-03-evals-img-2-score-progress.png │ │ ├── 2024-12-03-evals.png │ │ ├── 2024-12-04-semantic-retrieval-img-1.png │ │ ├── 2024-12-04-semantic-retrieval-img-2.png │ │ ├── 2024-12-04-semantic-retrieval.png │ │ ├── 2024-12-05-labeling-queues.png │ │ ├── 2024-12-05-lq-img-1.png │ │ ├── 2024-12-05-lq-img-2.png │ │ ├── 2024-12-06-online-evals-example.png │ │ ├── 2024-12-06-online-evals-test-label.png │ │ └── 2024-12-06-online-evals.jpg ├── sentry.server.config.ts ├── shared │ └── ui │ │ └── date-range-filter │ │ ├── index.tsx │ │ └── utils.ts ├── tailwind.config.ts ├── tests │ └── test-uuid.test.ts ├── tsconfig.json └── types │ ├── next-auth.d.ts │ └── novnc.d.ts ├── images ├── index.png ├── logo_dark.png ├── logo_light.png └── traces.png ├── query-engine ├── .dockerignore ├── .env.example ├── .gitignore ├── .python-version ├── Dockerfile ├── README.md ├── proto │ └── query_engine.proto ├── pyproject.toml ├── src │ ├── __init__.py │ ├── json_to_sql.py │ ├── query_engine_pb2.py │ ├── query_engine_pb2.pyi │ ├── query_engine_pb2_grpc.py │ ├── query_validator.py │ ├── server.py │ ├── sql_to_json.py │ └── utils.py ├── tests │ ├── __init__.py │ ├── test_json_sql_conversion.py │ └── test_validation.py └── uv.lock └── rules └── laminar.mdc /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.env -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backend-build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.github/workflows/backend-build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/build-app-server-binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.github/workflows/build-app-server-binary.yml -------------------------------------------------------------------------------- /.github/workflows/build-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.github/workflows/build-push.yml -------------------------------------------------------------------------------- /.github/workflows/fe-build-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.github/workflows/fe-build-check.yml -------------------------------------------------------------------------------- /.github/workflows/fe-tests-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.github/workflows/fe-tests-check.yml -------------------------------------------------------------------------------- /.github/workflows/query-engine-tests-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.github/workflows/query-engine-tests-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/README.md -------------------------------------------------------------------------------- /app-server/.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | /target -------------------------------------------------------------------------------- /app-server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/.env.example -------------------------------------------------------------------------------- /app-server/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env 3 | .sqlx -------------------------------------------------------------------------------- /app-server/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/Cargo.lock -------------------------------------------------------------------------------- /app-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/Cargo.toml -------------------------------------------------------------------------------- /app-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/Dockerfile -------------------------------------------------------------------------------- /app-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/README.md -------------------------------------------------------------------------------- /app-server/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/build.rs -------------------------------------------------------------------------------- /app-server/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/data/LICENSE.txt -------------------------------------------------------------------------------- /app-server/data/adjectives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/data/adjectives.txt -------------------------------------------------------------------------------- /app-server/data/nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/data/nouns.txt -------------------------------------------------------------------------------- /app-server/proto/agent_manager_grpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/proto/agent_manager_grpc.proto -------------------------------------------------------------------------------- /app-server/proto/opentelemetry/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/proto/opentelemetry/common.proto -------------------------------------------------------------------------------- /app-server/proto/opentelemetry/resource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/proto/opentelemetry/resource.proto -------------------------------------------------------------------------------- /app-server/proto/opentelemetry/trace.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/proto/opentelemetry/trace.proto -------------------------------------------------------------------------------- /app-server/proto/opentelemetry/trace_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/proto/opentelemetry/trace_service.proto -------------------------------------------------------------------------------- /app-server/proto/query_engine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/proto/query_engine.proto -------------------------------------------------------------------------------- /app-server/src/api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/mod.rs -------------------------------------------------------------------------------- /app-server/src/api/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/utils.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/browser_sessions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/browser_sessions.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/datasets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/datasets.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/evals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/evals.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/evaluators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/evaluators.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/metrics.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/mod.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/payloads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/payloads.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/sql.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/tag.rs -------------------------------------------------------------------------------- /app-server/src/api/v1/traces.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/api/v1/traces.rs -------------------------------------------------------------------------------- /app-server/src/auth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/auth/mod.rs -------------------------------------------------------------------------------- /app-server/src/browser_events/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/browser_events/mod.rs -------------------------------------------------------------------------------- /app-server/src/cache/in_memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/cache/in_memory.rs -------------------------------------------------------------------------------- /app-server/src/cache/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/cache/keys.rs -------------------------------------------------------------------------------- /app-server/src/cache/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/cache/mod.rs -------------------------------------------------------------------------------- /app-server/src/cache/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/cache/redis.rs -------------------------------------------------------------------------------- /app-server/src/ch/browser_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/browser_events.rs -------------------------------------------------------------------------------- /app-server/src/ch/datapoints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/datapoints.rs -------------------------------------------------------------------------------- /app-server/src/ch/evaluation_datapoint_outputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/evaluation_datapoint_outputs.rs -------------------------------------------------------------------------------- /app-server/src/ch/evaluation_datapoints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/evaluation_datapoints.rs -------------------------------------------------------------------------------- /app-server/src/ch/evaluation_scores.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/evaluation_scores.rs -------------------------------------------------------------------------------- /app-server/src/ch/evaluator_scores.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/evaluator_scores.rs -------------------------------------------------------------------------------- /app-server/src/ch/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/events.rs -------------------------------------------------------------------------------- /app-server/src/ch/limits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/limits.rs -------------------------------------------------------------------------------- /app-server/src/ch/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/mod.rs -------------------------------------------------------------------------------- /app-server/src/ch/spans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/spans.rs -------------------------------------------------------------------------------- /app-server/src/ch/tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/tags.rs -------------------------------------------------------------------------------- /app-server/src/ch/traces.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/traces.rs -------------------------------------------------------------------------------- /app-server/src/ch/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/ch/utils.rs -------------------------------------------------------------------------------- /app-server/src/datasets/datapoints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/datasets/datapoints.rs -------------------------------------------------------------------------------- /app-server/src/datasets/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod datapoints; 2 | -------------------------------------------------------------------------------- /app-server/src/db/datasets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/datasets.rs -------------------------------------------------------------------------------- /app-server/src/db/evaluations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/evaluations.rs -------------------------------------------------------------------------------- /app-server/src/db/evaluators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/evaluators.rs -------------------------------------------------------------------------------- /app-server/src/db/event_definitions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/event_definitions.rs -------------------------------------------------------------------------------- /app-server/src/db/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/events.rs -------------------------------------------------------------------------------- /app-server/src/db/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/mod.rs -------------------------------------------------------------------------------- /app-server/src/db/prices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/prices.rs -------------------------------------------------------------------------------- /app-server/src/db/project_api_keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/project_api_keys.rs -------------------------------------------------------------------------------- /app-server/src/db/projects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/projects.rs -------------------------------------------------------------------------------- /app-server/src/db/slack_channel_to_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/slack_channel_to_events.rs -------------------------------------------------------------------------------- /app-server/src/db/slack_integrations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/slack_integrations.rs -------------------------------------------------------------------------------- /app-server/src/db/spans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/spans.rs -------------------------------------------------------------------------------- /app-server/src/db/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/stats.rs -------------------------------------------------------------------------------- /app-server/src/db/summary_trigger_spans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/summary_trigger_spans.rs -------------------------------------------------------------------------------- /app-server/src/db/tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/tags.rs -------------------------------------------------------------------------------- /app-server/src/db/trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/trace.rs -------------------------------------------------------------------------------- /app-server/src/db/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/db/utils.rs -------------------------------------------------------------------------------- /app-server/src/evaluations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/evaluations/mod.rs -------------------------------------------------------------------------------- /app-server/src/evaluations/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/evaluations/utils.rs -------------------------------------------------------------------------------- /app-server/src/evaluators/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/evaluators/mod.rs -------------------------------------------------------------------------------- /app-server/src/features/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/features/mod.rs -------------------------------------------------------------------------------- /app-server/src/instrumentation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/instrumentation/mod.rs -------------------------------------------------------------------------------- /app-server/src/language_model/chat_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/language_model/chat_message.rs -------------------------------------------------------------------------------- /app-server/src/language_model/costs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/language_model/costs/mod.rs -------------------------------------------------------------------------------- /app-server/src/language_model/costs/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/language_model/costs/utils.rs -------------------------------------------------------------------------------- /app-server/src/language_model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/language_model/mod.rs -------------------------------------------------------------------------------- /app-server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/main.rs -------------------------------------------------------------------------------- /app-server/src/mq/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/mq/mod.rs -------------------------------------------------------------------------------- /app-server/src/mq/rabbit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/mq/rabbit.rs -------------------------------------------------------------------------------- /app-server/src/mq/tokio_mpsc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/mq/tokio_mpsc.rs -------------------------------------------------------------------------------- /app-server/src/mq/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/mq/utils.rs -------------------------------------------------------------------------------- /app-server/src/names/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/names/mod.rs -------------------------------------------------------------------------------- /app-server/src/notifications/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/notifications/mod.rs -------------------------------------------------------------------------------- /app-server/src/notifications/slack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/notifications/slack.rs -------------------------------------------------------------------------------- /app-server/src/opentelemetry_proto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/opentelemetry_proto/mod.rs -------------------------------------------------------------------------------- /app-server/src/project_api_keys/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/project_api_keys/mod.rs -------------------------------------------------------------------------------- /app-server/src/query_engine/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/query_engine/mock.rs -------------------------------------------------------------------------------- /app-server/src/query_engine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/query_engine/mod.rs -------------------------------------------------------------------------------- /app-server/src/query_engine/query_engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/query_engine/query_engine.rs -------------------------------------------------------------------------------- /app-server/src/query_engine/query_engine_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/query_engine/query_engine_impl.rs -------------------------------------------------------------------------------- /app-server/src/realtime/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/realtime/mod.rs -------------------------------------------------------------------------------- /app-server/src/routes/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/error.rs -------------------------------------------------------------------------------- /app-server/src/routes/evaluations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/evaluations.rs -------------------------------------------------------------------------------- /app-server/src/routes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/mod.rs -------------------------------------------------------------------------------- /app-server/src/routes/probes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/probes.rs -------------------------------------------------------------------------------- /app-server/src/routes/realtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/realtime.rs -------------------------------------------------------------------------------- /app-server/src/routes/spans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/spans.rs -------------------------------------------------------------------------------- /app-server/src/routes/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/sql.rs -------------------------------------------------------------------------------- /app-server/src/routes/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/routes/types.rs -------------------------------------------------------------------------------- /app-server/src/runtime/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/runtime/mod.rs -------------------------------------------------------------------------------- /app-server/src/sql/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/sql/mod.rs -------------------------------------------------------------------------------- /app-server/src/sql/queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/sql/queries.rs -------------------------------------------------------------------------------- /app-server/src/storage/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/storage/mock.rs -------------------------------------------------------------------------------- /app-server/src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/storage/mod.rs -------------------------------------------------------------------------------- /app-server/src/storage/s3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/storage/s3.rs -------------------------------------------------------------------------------- /app-server/src/traces/clustering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/clustering.rs -------------------------------------------------------------------------------- /app-server/src/traces/consumer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/consumer.rs -------------------------------------------------------------------------------- /app-server/src/traces/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/events.rs -------------------------------------------------------------------------------- /app-server/src/traces/grpc_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/grpc_service.rs -------------------------------------------------------------------------------- /app-server/src/traces/limits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/limits.rs -------------------------------------------------------------------------------- /app-server/src/traces/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/mod.rs -------------------------------------------------------------------------------- /app-server/src/traces/producer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/producer.rs -------------------------------------------------------------------------------- /app-server/src/traces/provider/langchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/provider/langchain.rs -------------------------------------------------------------------------------- /app-server/src/traces/provider/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/provider/mod.rs -------------------------------------------------------------------------------- /app-server/src/traces/provider/openai.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/provider/openai.rs -------------------------------------------------------------------------------- /app-server/src/traces/realtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/realtime.rs -------------------------------------------------------------------------------- /app-server/src/traces/span_attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/span_attributes.rs -------------------------------------------------------------------------------- /app-server/src/traces/spans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/spans.rs -------------------------------------------------------------------------------- /app-server/src/traces/summary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/summary.rs -------------------------------------------------------------------------------- /app-server/src/traces/trigger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/trigger.rs -------------------------------------------------------------------------------- /app-server/src/traces/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/traces/utils.rs -------------------------------------------------------------------------------- /app-server/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/utils/mod.rs -------------------------------------------------------------------------------- /app-server/src/worker_tracking/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/app-server/src/worker_tracking/mod.rs -------------------------------------------------------------------------------- /clickhouse-profiles-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/clickhouse-profiles-config.xml -------------------------------------------------------------------------------- /docker-compose-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/docker-compose-full.yml -------------------------------------------------------------------------------- /docker-compose-local-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/docker-compose-local-build.yml -------------------------------------------------------------------------------- /docker-compose-local-dev-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/docker-compose-local-dev-full.yml -------------------------------------------------------------------------------- /docker-compose-local-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/docker-compose-local-dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | **/.next -------------------------------------------------------------------------------- /frontend/.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/.env.local.example -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.npmrc: -------------------------------------------------------------------------------- 1 | public-hoist-pattern[]=pdfjs-dist -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /frontend/app/api/auth/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/auth/route.ts -------------------------------------------------------------------------------- /frontend/app/api/auth/traces/[traceId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/auth/traces/[traceId]/route.ts -------------------------------------------------------------------------------- /frontend/app/api/browser-sessions/events/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/browser-sessions/events/route.ts -------------------------------------------------------------------------------- /frontend/app/api/integrations/slack/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/integrations/slack/route.ts -------------------------------------------------------------------------------- /frontend/app/api/invitations/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/invitations/[id]/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/api-keys/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/api-keys/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/chat/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/datasets/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/datasets/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/patterns/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/patterns/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/queues/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/queues/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/realtime/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/realtime/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/sessions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/sessions/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/slack/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/slack/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/spans/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/spans/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/sql/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/sql/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/stats/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/stats/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/[projectId]/traces/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/[projectId]/traces/route.ts -------------------------------------------------------------------------------- /frontend/app/api/projects/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/projects/route.ts -------------------------------------------------------------------------------- /frontend/app/api/shared/payloads/[payloadId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/shared/payloads/[payloadId]/route.ts -------------------------------------------------------------------------------- /frontend/app/api/shared/traces/[traceId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/shared/traces/[traceId]/route.ts -------------------------------------------------------------------------------- /frontend/app/api/webhook/slack/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/webhook/slack/route.ts -------------------------------------------------------------------------------- /frontend/app/api/workspaces/[workspaceId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/workspaces/[workspaceId]/route.ts -------------------------------------------------------------------------------- /frontend/app/api/workspaces/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/api/workspaces/route.ts -------------------------------------------------------------------------------- /frontend/app/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /frontend/app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/blog/page.tsx -------------------------------------------------------------------------------- /frontend/app/checkout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/checkout/page.tsx -------------------------------------------------------------------------------- /frontend/app/checkout/portal/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/checkout/portal/page.tsx -------------------------------------------------------------------------------- /frontend/app/computer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/computer/page.tsx -------------------------------------------------------------------------------- /frontend/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/error.tsx -------------------------------------------------------------------------------- /frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/favicon.ico -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/invitations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/invitations/page.tsx -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/not-found.tsx -------------------------------------------------------------------------------- /frontend/app/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/onboarding/page.tsx -------------------------------------------------------------------------------- /frontend/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/opengraph-image.png -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/app/policies/cookies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/policies/cookies/page.tsx -------------------------------------------------------------------------------- /frontend/app/policies/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/policies/privacy/page.tsx -------------------------------------------------------------------------------- /frontend/app/policies/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/policies/terms/page.tsx -------------------------------------------------------------------------------- /frontend/app/posthog-identifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/posthog-identifier.tsx -------------------------------------------------------------------------------- /frontend/app/posthog-pageview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/posthog-pageview.tsx -------------------------------------------------------------------------------- /frontend/app/posthog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/posthog.ts -------------------------------------------------------------------------------- /frontend/app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/pricing/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/dashboard/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/datasets/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/datasets/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/evaluations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/evaluations/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/evaluators/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/evaluators/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/events/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/events/[id]/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/events/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/events/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/layout.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/patterns/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/patterns/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/playgrounds/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/playgrounds/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/settings/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/sql/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/sql/[id]/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/sql/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/sql/layout.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/sql/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/sql/page.tsx -------------------------------------------------------------------------------- /frontend/app/project/[projectId]/traces/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/project/[projectId]/traces/page.tsx -------------------------------------------------------------------------------- /frontend/app/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/projects/page.tsx -------------------------------------------------------------------------------- /frontend/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/providers.tsx -------------------------------------------------------------------------------- /frontend/app/scroll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/scroll.css -------------------------------------------------------------------------------- /frontend/app/shared/traces/[traceId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/shared/traces/[traceId]/page.tsx -------------------------------------------------------------------------------- /frontend/app/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/sign-in/page.tsx -------------------------------------------------------------------------------- /frontend/app/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/sign-up/page.tsx -------------------------------------------------------------------------------- /frontend/app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/twitter-image.png -------------------------------------------------------------------------------- /frontend/app/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/webhook/route.ts -------------------------------------------------------------------------------- /frontend/app/workspace/[workspaceId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/app/workspace/[workspaceId]/page.tsx -------------------------------------------------------------------------------- /frontend/assets/blog/2024-12-01-launch-week-1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/blog/2024-12-01-launch-week-1.mdx -------------------------------------------------------------------------------- /frontend/assets/blog/2024-12-03-evals.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/blog/2024-12-03-evals.mdx -------------------------------------------------------------------------------- /frontend/assets/blog/2024-12-04-semantic-retrieval.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/blog/2024-12-04-semantic-retrieval.mdx -------------------------------------------------------------------------------- /frontend/assets/blog/2024-12-05-labeling-queues.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/blog/2024-12-05-labeling-queues.mdx -------------------------------------------------------------------------------- /frontend/assets/blog/2024-12-06-online-evals.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/blog/2024-12-06-online-evals.mdx -------------------------------------------------------------------------------- /frontend/assets/landing/companies/amplitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/companies/amplitude.png -------------------------------------------------------------------------------- /frontend/assets/landing/companies/remo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/companies/remo.svg -------------------------------------------------------------------------------- /frontend/assets/landing/companies/saturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/companies/saturn.png -------------------------------------------------------------------------------- /frontend/assets/landing/companies/skyvern.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/companies/skyvern.webp -------------------------------------------------------------------------------- /frontend/assets/landing/datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/datasets.png -------------------------------------------------------------------------------- /frontend/assets/landing/evals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/evals.png -------------------------------------------------------------------------------- /frontend/assets/landing/evals2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/evals2.png -------------------------------------------------------------------------------- /frontend/assets/landing/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/github-mark-white.svg -------------------------------------------------------------------------------- /frontend/assets/landing/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/index.png -------------------------------------------------------------------------------- /frontend/assets/landing/iterate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/iterate.png -------------------------------------------------------------------------------- /frontend/assets/landing/labeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/labeling.png -------------------------------------------------------------------------------- /frontend/assets/landing/observability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/observability.png -------------------------------------------------------------------------------- /frontend/assets/landing/observe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/observe.png -------------------------------------------------------------------------------- /frontend/assets/landing/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/playground.png -------------------------------------------------------------------------------- /frontend/assets/landing/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/query.png -------------------------------------------------------------------------------- /frontend/assets/landing/traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/traces.png -------------------------------------------------------------------------------- /frontend/assets/landing/yc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/landing/yc.svg -------------------------------------------------------------------------------- /frontend/assets/logo/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/logo/discord.tsx -------------------------------------------------------------------------------- /frontend/assets/logo/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/logo/google.svg -------------------------------------------------------------------------------- /frontend/assets/logo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/logo/icon.png -------------------------------------------------------------------------------- /frontend/assets/logo/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/logo/icon.svg -------------------------------------------------------------------------------- /frontend/assets/logo/icon_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/logo/icon_light.svg -------------------------------------------------------------------------------- /frontend/assets/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/logo/logo.svg -------------------------------------------------------------------------------- /frontend/assets/logo/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/assets/logo/microsoft.svg -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/components/ai-elements/conversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ai-elements/conversation.tsx -------------------------------------------------------------------------------- /frontend/components/ai-elements/response.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ai-elements/response.tsx -------------------------------------------------------------------------------- /frontend/components/auth/azure-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/auth/azure-button.tsx -------------------------------------------------------------------------------- /frontend/components/auth/email-sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/auth/email-sign-in.tsx -------------------------------------------------------------------------------- /frontend/components/auth/github-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/auth/github-button.tsx -------------------------------------------------------------------------------- /frontend/components/auth/google-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/auth/google-button.tsx -------------------------------------------------------------------------------- /frontend/components/auth/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/auth/sign-in.tsx -------------------------------------------------------------------------------- /frontend/components/auth/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/auth/sign-up.tsx -------------------------------------------------------------------------------- /frontend/components/blog/blog-meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/blog/blog-meta.tsx -------------------------------------------------------------------------------- /frontend/components/blog/md-heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/blog/md-heading.tsx -------------------------------------------------------------------------------- /frontend/components/blog/pre-highlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/blog/pre-highlighter.tsx -------------------------------------------------------------------------------- /frontend/components/blog/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/blog/toc.tsx -------------------------------------------------------------------------------- /frontend/components/chart-builder/charts/bar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/chart-builder/charts/bar-chart.tsx -------------------------------------------------------------------------------- /frontend/components/chart-builder/charts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/chart-builder/charts/index.tsx -------------------------------------------------------------------------------- /frontend/components/chart-builder/charts/line-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/chart-builder/charts/line-chart.tsx -------------------------------------------------------------------------------- /frontend/components/chart-builder/charts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/chart-builder/charts/utils.ts -------------------------------------------------------------------------------- /frontend/components/chart-builder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/chart-builder/index.tsx -------------------------------------------------------------------------------- /frontend/components/chart-builder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/chart-builder/types.ts -------------------------------------------------------------------------------- /frontend/components/chart-builder/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/chart-builder/utils.ts -------------------------------------------------------------------------------- /frontend/components/charts/time-series-chart/bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/charts/time-series-chart/bar.tsx -------------------------------------------------------------------------------- /frontend/components/charts/time-series-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/charts/time-series-chart/index.tsx -------------------------------------------------------------------------------- /frontend/components/charts/time-series-chart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/charts/time-series-chart/types.ts -------------------------------------------------------------------------------- /frontend/components/charts/time-series-chart/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/charts/time-series-chart/utils.ts -------------------------------------------------------------------------------- /frontend/components/checkout/checkout-success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/checkout/checkout-success.tsx -------------------------------------------------------------------------------- /frontend/components/client-timestamp-formatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/client-timestamp-formatter.tsx -------------------------------------------------------------------------------- /frontend/components/common/search-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/common/search-input.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/chart-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/chart-header.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/chart.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/dashboard.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/editor/Builder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/editor/Builder.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/editor/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/editor/Form.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/editor/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/editor/constants.ts -------------------------------------------------------------------------------- /frontend/components/dashboard/editor/fields/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/editor/fields/index.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/editor/index.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/editor/table-schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/editor/table-schemas.ts -------------------------------------------------------------------------------- /frontend/components/dashboard/editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/editor/types.ts -------------------------------------------------------------------------------- /frontend/components/dashboard/grid-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/grid-layout.tsx -------------------------------------------------------------------------------- /frontend/components/dashboard/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/styles.css -------------------------------------------------------------------------------- /frontend/components/dashboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dashboard/types.ts -------------------------------------------------------------------------------- /frontend/components/dataset/add-datapoints-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dataset/add-datapoints-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/dataset/dataset-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dataset/dataset-panel.tsx -------------------------------------------------------------------------------- /frontend/components/dataset/dataset-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dataset/dataset-upload.tsx -------------------------------------------------------------------------------- /frontend/components/dataset/dataset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dataset/dataset.tsx -------------------------------------------------------------------------------- /frontend/components/dataset/download-parquet-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/dataset/download-parquet-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/datasets/create-dataset-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/datasets/create-dataset-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/datasets/datasets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/datasets/datasets.tsx -------------------------------------------------------------------------------- /frontend/components/datasets/rename-dataset-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/datasets/rename-dataset-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/datasets/update-dataset-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/datasets/update-dataset-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/chart.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/columns.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/compare-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/compare-chart.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/evaluation-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/evaluation-header.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/evaluation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/evaluation.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/graphs-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/graphs-utils.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/score-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/score-card.tsx -------------------------------------------------------------------------------- /frontend/components/evaluation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluation/utils.ts -------------------------------------------------------------------------------- /frontend/components/evaluations/evaluations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluations/evaluations.tsx -------------------------------------------------------------------------------- /frontend/components/evaluations/page-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluations/page-placeholder.tsx -------------------------------------------------------------------------------- /frontend/components/evaluations/progression-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluations/progression-chart.tsx -------------------------------------------------------------------------------- /frontend/components/evaluators/evaluators-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluators/evaluators-table.tsx -------------------------------------------------------------------------------- /frontend/components/evaluators/evaluators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluators/evaluators.tsx -------------------------------------------------------------------------------- /frontend/components/evaluators/lib/consts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/evaluators/lib/consts.tsx -------------------------------------------------------------------------------- /frontend/components/event-definitions/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/event-definitions/columns.tsx -------------------------------------------------------------------------------- /frontend/components/events/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/events/columns.tsx -------------------------------------------------------------------------------- /frontend/components/events/events-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/events/events-chart/index.tsx -------------------------------------------------------------------------------- /frontend/components/events/events-store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/events/events-store.tsx -------------------------------------------------------------------------------- /frontend/components/events/events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/events/events.tsx -------------------------------------------------------------------------------- /frontend/components/integrations/frameworks-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/integrations/frameworks-grid.tsx -------------------------------------------------------------------------------- /frontend/components/landing/datasets-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/datasets-animation.tsx -------------------------------------------------------------------------------- /frontend/components/landing/feature-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/feature-card.tsx -------------------------------------------------------------------------------- /frontend/components/landing/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/footer.tsx -------------------------------------------------------------------------------- /frontend/components/landing/frameworks-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/frameworks-grid.tsx -------------------------------------------------------------------------------- /frontend/components/landing/infinite-logo-carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/infinite-logo-carousel.tsx -------------------------------------------------------------------------------- /frontend/components/landing/landing-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/landing-header.tsx -------------------------------------------------------------------------------- /frontend/components/landing/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/landing.tsx -------------------------------------------------------------------------------- /frontend/components/landing/pricing-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/pricing-card.tsx -------------------------------------------------------------------------------- /frontend/components/landing/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/landing/pricing.tsx -------------------------------------------------------------------------------- /frontend/components/lang-graph/edge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/lang-graph/edge.tsx -------------------------------------------------------------------------------- /frontend/components/lang-graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/lang-graph/index.tsx -------------------------------------------------------------------------------- /frontend/components/lang-graph/runnable-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/lang-graph/runnable-node.tsx -------------------------------------------------------------------------------- /frontend/components/lang-graph/schema-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/lang-graph/schema-node.tsx -------------------------------------------------------------------------------- /frontend/components/patterns/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/patterns/columns.tsx -------------------------------------------------------------------------------- /frontend/components/patterns/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/patterns/index.tsx -------------------------------------------------------------------------------- /frontend/components/playground/image-with-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/image-with-preview.tsx -------------------------------------------------------------------------------- /frontend/components/playground/messages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/messages/index.tsx -------------------------------------------------------------------------------- /frontend/components/playground/messages/llm-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/messages/llm-select.tsx -------------------------------------------------------------------------------- /frontend/components/playground/messages/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/messages/message.tsx -------------------------------------------------------------------------------- /frontend/components/playground/messages/tools-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/messages/tools-sheet.tsx -------------------------------------------------------------------------------- /frontend/components/playground/playground-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/playground-output.ts -------------------------------------------------------------------------------- /frontend/components/playground/playground-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/playground-panel.tsx -------------------------------------------------------------------------------- /frontend/components/playground/playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/playground.tsx -------------------------------------------------------------------------------- /frontend/components/playground/providers-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/providers-alert.tsx -------------------------------------------------------------------------------- /frontend/components/playground/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/types.ts -------------------------------------------------------------------------------- /frontend/components/playground/usage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/usage.tsx -------------------------------------------------------------------------------- /frontend/components/playground/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playground/utils.tsx -------------------------------------------------------------------------------- /frontend/components/playgrounds/playgrounds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/playgrounds/playgrounds.tsx -------------------------------------------------------------------------------- /frontend/components/project/sidebar/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/project/sidebar/content.tsx -------------------------------------------------------------------------------- /frontend/components/project/sidebar/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/project/sidebar/header.tsx -------------------------------------------------------------------------------- /frontend/components/project/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/project/sidebar/index.tsx -------------------------------------------------------------------------------- /frontend/components/project/usage-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/project/usage-banner.tsx -------------------------------------------------------------------------------- /frontend/components/project/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/project/utils.ts -------------------------------------------------------------------------------- /frontend/components/projects/project-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/projects/project-card.tsx -------------------------------------------------------------------------------- /frontend/components/projects/project-create-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/projects/project-create-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/projects/projects-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/projects/projects-header.tsx -------------------------------------------------------------------------------- /frontend/components/projects/projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/projects/projects.tsx -------------------------------------------------------------------------------- /frontend/components/projects/sidebar-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/projects/sidebar-footer.tsx -------------------------------------------------------------------------------- /frontend/components/queue/annotation-interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/queue/annotation-interface.tsx -------------------------------------------------------------------------------- /frontend/components/queue/queue-store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/queue/queue-store.tsx -------------------------------------------------------------------------------- /frontend/components/queue/queue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/queue/queue.tsx -------------------------------------------------------------------------------- /frontend/components/queue/schema-definition-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/queue/schema-definition-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/queues/create-queue-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/queues/create-queue-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/queues/queues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/queues/queues.tsx -------------------------------------------------------------------------------- /frontend/components/session-player/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/session-player/utils.ts -------------------------------------------------------------------------------- /frontend/components/settings/delete-project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/delete-project.tsx -------------------------------------------------------------------------------- /frontend/components/settings/integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/integrations.tsx -------------------------------------------------------------------------------- /frontend/components/settings/project-api-keys/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/project-api-keys/index.tsx -------------------------------------------------------------------------------- /frontend/components/settings/provider-api-keys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/provider-api-keys.tsx -------------------------------------------------------------------------------- /frontend/components/settings/rename-project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/rename-project.tsx -------------------------------------------------------------------------------- /frontend/components/settings/revoke-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/revoke-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/settings/settings-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/settings-section.tsx -------------------------------------------------------------------------------- /frontend/components/settings/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/settings.tsx -------------------------------------------------------------------------------- /frontend/components/settings/trace-summary-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/settings/trace-summary-settings.tsx -------------------------------------------------------------------------------- /frontend/components/shared/traces/session-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/shared/traces/session-player.tsx -------------------------------------------------------------------------------- /frontend/components/shared/traces/span-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/shared/traces/span-view.tsx -------------------------------------------------------------------------------- /frontend/components/shared/traces/trace-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/shared/traces/trace-view.tsx -------------------------------------------------------------------------------- /frontend/components/sql/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/date-picker.tsx -------------------------------------------------------------------------------- /frontend/components/sql/dnd-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/dnd-components.tsx -------------------------------------------------------------------------------- /frontend/components/sql/editor-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/editor-panel.tsx -------------------------------------------------------------------------------- /frontend/components/sql/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/editor.tsx -------------------------------------------------------------------------------- /frontend/components/sql/export-job-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/export-job-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/sql/export-sql-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/export-sql-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/sql/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/index.tsx -------------------------------------------------------------------------------- /frontend/components/sql/parameters-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/parameters-panel.tsx -------------------------------------------------------------------------------- /frontend/components/sql/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/sidebar.tsx -------------------------------------------------------------------------------- /frontend/components/sql/sql-editor-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/sql-editor-store.ts -------------------------------------------------------------------------------- /frontend/components/sql/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/sql/utils.ts -------------------------------------------------------------------------------- /frontend/components/tags/create-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/tags/create-tag.tsx -------------------------------------------------------------------------------- /frontend/components/tags/manage-tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/tags/manage-tags.tsx -------------------------------------------------------------------------------- /frontend/components/tags/pick-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/tags/pick-tag.tsx -------------------------------------------------------------------------------- /frontend/components/tags/tags-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/tags/tags-context.tsx -------------------------------------------------------------------------------- /frontend/components/tags/tags-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/tags/tags-list.tsx -------------------------------------------------------------------------------- /frontend/components/tags/tags-trigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/tags/tags-trigger.tsx -------------------------------------------------------------------------------- /frontend/components/traces/error-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/error-card.tsx -------------------------------------------------------------------------------- /frontend/components/traces/export-spans-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/export-spans-popover.tsx -------------------------------------------------------------------------------- /frontend/components/traces/no-span-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/no-span-tooltip.tsx -------------------------------------------------------------------------------- /frontend/components/traces/page-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/page-placeholder.tsx -------------------------------------------------------------------------------- /frontend/components/traces/search-traces-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/search-traces-input.tsx -------------------------------------------------------------------------------- /frontend/components/traces/session-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/session-player.tsx -------------------------------------------------------------------------------- /frontend/components/traces/sessions-table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/sessions-table/columns.tsx -------------------------------------------------------------------------------- /frontend/components/traces/sessions-table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/sessions-table/index.tsx -------------------------------------------------------------------------------- /frontend/components/traces/share-trace-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/share-trace-button.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-controls.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-images-video-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-images-video-player.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-type-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-type-icon.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-view/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-view/common.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-view/generic-parts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-view/generic-parts.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-view/index.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-view/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-view/messages.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-view/openai-parts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-view/openai-parts.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-view/search-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-view/search-bar.tsx -------------------------------------------------------------------------------- /frontend/components/traces/span-view/span-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/span-view/span-content.tsx -------------------------------------------------------------------------------- /frontend/components/traces/spans-table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/spans-table/columns.tsx -------------------------------------------------------------------------------- /frontend/components/traces/spans-table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/spans-table/index.tsx -------------------------------------------------------------------------------- /frontend/components/traces/stats-shields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/stats-shields.tsx -------------------------------------------------------------------------------- /frontend/components/traces/tabs-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/tabs-section.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/chat.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/header.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/index.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/metadata.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/minimap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/minimap.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/span-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/span-card.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/timeline.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/tree.tsx -------------------------------------------------------------------------------- /frontend/components/traces/trace-view/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace-view/utils.ts -------------------------------------------------------------------------------- /frontend/components/traces/trace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/trace.tsx -------------------------------------------------------------------------------- /frontend/components/traces/traces-chart/bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces-chart/bar.tsx -------------------------------------------------------------------------------- /frontend/components/traces/traces-chart/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces-chart/chart.tsx -------------------------------------------------------------------------------- /frontend/components/traces/traces-chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces-chart/index.tsx -------------------------------------------------------------------------------- /frontend/components/traces/traces-chart/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces-chart/utils.ts -------------------------------------------------------------------------------- /frontend/components/traces/traces-store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces-store.tsx -------------------------------------------------------------------------------- /frontend/components/traces/traces-table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces-table/columns.tsx -------------------------------------------------------------------------------- /frontend/components/traces/traces-table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces-table/index.tsx -------------------------------------------------------------------------------- /frontend/components/traces/traces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/traces/traces.tsx -------------------------------------------------------------------------------- /frontend/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/accordion.tsx -------------------------------------------------------------------------------- /frontend/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/alert.tsx -------------------------------------------------------------------------------- /frontend/components/ui/auto-complete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/auto-complete.tsx -------------------------------------------------------------------------------- /frontend/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/avatar.tsx -------------------------------------------------------------------------------- /frontend/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/badge.tsx -------------------------------------------------------------------------------- /frontend/components/ui/button-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/button-loading.tsx -------------------------------------------------------------------------------- /frontend/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/calendar.tsx -------------------------------------------------------------------------------- /frontend/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/card.tsx -------------------------------------------------------------------------------- /frontend/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/chart.tsx -------------------------------------------------------------------------------- /frontend/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /frontend/components/ui/code-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/code-editor.tsx -------------------------------------------------------------------------------- /frontend/components/ui/code-highlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/code-highlighter.tsx -------------------------------------------------------------------------------- /frontend/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /frontend/components/ui/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/combobox.tsx -------------------------------------------------------------------------------- /frontend/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/command.tsx -------------------------------------------------------------------------------- /frontend/components/ui/confirm-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/confirm-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/ui/content-renderer/code-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/content-renderer/code-sheet.tsx -------------------------------------------------------------------------------- /frontend/components/ui/content-renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/content-renderer/index.tsx -------------------------------------------------------------------------------- /frontend/components/ui/content-renderer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/content-renderer/utils.ts -------------------------------------------------------------------------------- /frontend/components/ui/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/copy-button.tsx -------------------------------------------------------------------------------- /frontend/components/ui/create-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/create-button.tsx -------------------------------------------------------------------------------- /frontend/components/ui/dataset-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/dataset-select.tsx -------------------------------------------------------------------------------- /frontend/components/ui/datatable-sorts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/datatable-sorts.tsx -------------------------------------------------------------------------------- /frontend/components/ui/default-textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/default-textarea.tsx -------------------------------------------------------------------------------- /frontend/components/ui/delete-selected-rows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/delete-selected-rows.tsx -------------------------------------------------------------------------------- /frontend/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/dialog.tsx -------------------------------------------------------------------------------- /frontend/components/ui/download-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/download-button.tsx -------------------------------------------------------------------------------- /frontend/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /frontend/components/ui/formatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/formatter.tsx -------------------------------------------------------------------------------- /frontend/components/ui/group-by-period-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/group-by-period-select.tsx -------------------------------------------------------------------------------- /frontend/components/ui/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/header.tsx -------------------------------------------------------------------------------- /frontend/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/icons.tsx -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/index.tsx -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/types.ts -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/ui/body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/ui/body.tsx -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/ui/cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/ui/cell.tsx -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/ui/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/ui/head.tsx -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/ui/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/ui/header.tsx -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/ui/row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/ui/row.tsx -------------------------------------------------------------------------------- /frontend/components/ui/infinite-datatable/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/infinite-datatable/utils.tsx -------------------------------------------------------------------------------- /frontend/components/ui/input-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/input-password.tsx -------------------------------------------------------------------------------- /frontend/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/input.tsx -------------------------------------------------------------------------------- /frontend/components/ui/json-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/json-tooltip.tsx -------------------------------------------------------------------------------- /frontend/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/label.tsx -------------------------------------------------------------------------------- /frontend/components/ui/mono-with-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/mono-with-copy.tsx -------------------------------------------------------------------------------- /frontend/components/ui/mono.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/mono.tsx -------------------------------------------------------------------------------- /frontend/components/ui/pdf-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/pdf-renderer.tsx -------------------------------------------------------------------------------- /frontend/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/popover.tsx -------------------------------------------------------------------------------- /frontend/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/progress.tsx -------------------------------------------------------------------------------- /frontend/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /frontend/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/resizable.tsx -------------------------------------------------------------------------------- /frontend/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /frontend/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/select.tsx -------------------------------------------------------------------------------- /frontend/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/separator.tsx -------------------------------------------------------------------------------- /frontend/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/sheet.tsx -------------------------------------------------------------------------------- /frontend/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /frontend/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /frontend/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/slider.tsx -------------------------------------------------------------------------------- /frontend/components/ui/status-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/status-label.tsx -------------------------------------------------------------------------------- /frontend/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/switch.tsx -------------------------------------------------------------------------------- /frontend/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/table.tsx -------------------------------------------------------------------------------- /frontend/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/tabs.tsx -------------------------------------------------------------------------------- /frontend/components/ui/tag-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/tag-input.tsx -------------------------------------------------------------------------------- /frontend/components/ui/tag-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/tag-list.tsx -------------------------------------------------------------------------------- /frontend/components/ui/tag-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/tag-popover.tsx -------------------------------------------------------------------------------- /frontend/components/ui/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/tag.tsx -------------------------------------------------------------------------------- /frontend/components/ui/template-renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/template-renderer/index.tsx -------------------------------------------------------------------------------- /frontend/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/textarea.tsx -------------------------------------------------------------------------------- /frontend/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/toast.tsx -------------------------------------------------------------------------------- /frontend/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/toaster.tsx -------------------------------------------------------------------------------- /frontend/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /frontend/components/user/avatar-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/user/avatar-menu.tsx -------------------------------------------------------------------------------- /frontend/components/user/presence-user-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/user/presence-user-image.tsx -------------------------------------------------------------------------------- /frontend/components/vnc/vnc-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/vnc/vnc-client.tsx -------------------------------------------------------------------------------- /frontend/components/vnc/vnc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/vnc/vnc.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/add-user-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/add-user-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/invitations-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/invitations-table.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/pricing-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/pricing-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/purchase-seats-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/purchase-seats-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/remove-user-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/remove-user-dialog.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/sidebar/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/sidebar/content.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/sidebar/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/sidebar/header.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/sidebar/index.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/workspace-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/workspace-settings.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/workspace-usage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/workspace-usage.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/workspace-users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/workspace-users.tsx -------------------------------------------------------------------------------- /frontend/components/workspace/workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/components/workspace/workspace.tsx -------------------------------------------------------------------------------- /frontend/contexts/pipeline-version-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/contexts/pipeline-version-context.tsx -------------------------------------------------------------------------------- /frontend/contexts/project-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/contexts/project-context.tsx -------------------------------------------------------------------------------- /frontend/contexts/user-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/contexts/user-context.tsx -------------------------------------------------------------------------------- /frontend/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/drizzle.config.ts -------------------------------------------------------------------------------- /frontend/eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/eslint.config.ts -------------------------------------------------------------------------------- /frontend/hooks/use-local-storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/hooks/use-local-storage.tsx -------------------------------------------------------------------------------- /frontend/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /frontend/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/instrumentation.ts -------------------------------------------------------------------------------- /frontend/lib/actions/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/chat/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/chat/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/chat/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/clusters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/clusters/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/common/query-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/common/query-builder.ts -------------------------------------------------------------------------------- /frontend/lib/actions/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/common/types.ts -------------------------------------------------------------------------------- /frontend/lib/actions/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/common/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/dashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/dashboard/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/dashboard/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/dashboard/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/datapoint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/datapoint/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/datapoints/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/datapoints/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/datapoints/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/datapoints/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/datapoints/versions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/datapoints/versions/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/dataset-export-jobs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/dataset-export-jobs/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/dataset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/dataset/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/datasets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/datasets/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluation-score/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluation-score/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluation/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluation/cookies.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluation/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluation/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluations/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluator-scores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluator-scores/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluator/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluator/cache.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluator/execute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluator/execute.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluator/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluator/span-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluator/span-path.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluators/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/evaluators/span-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/evaluators/span-path.ts -------------------------------------------------------------------------------- /frontend/lib/actions/event-definitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/event-definitions/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/events/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/events/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/events/stats.ts -------------------------------------------------------------------------------- /frontend/lib/actions/events/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/events/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/project-api-keys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/project-api-keys/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/project/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/project/cookies.ts -------------------------------------------------------------------------------- /frontend/lib/actions/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/project/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/projects/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/provider-api-keys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/provider-api-keys/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/queue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/queue/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/render-template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/render-template/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/render-templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/render-templates/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/sessions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/sessions/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/sessions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/sessions/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/shared/payload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/shared/payload/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/shared/span/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/shared/span/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/shared/spans/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/shared/spans/images.ts -------------------------------------------------------------------------------- /frontend/lib/actions/shared/spans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/shared/spans/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/shared/trace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/shared/trace/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/slack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/slack/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/slack/slash-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/slack/slash-commands.ts -------------------------------------------------------------------------------- /frontend/lib/actions/slack/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/slack/types.ts -------------------------------------------------------------------------------- /frontend/lib/actions/slack/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/slack/webhook.ts -------------------------------------------------------------------------------- /frontend/lib/actions/span/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/span/images.ts -------------------------------------------------------------------------------- /frontend/lib/actions/span/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/span/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/spans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/spans/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/spans/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/spans/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/sql/export-job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/sql/export-job.ts -------------------------------------------------------------------------------- /frontend/lib/actions/sql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/sql/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/sql/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/sql/templates/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/sql/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/sql/types.ts -------------------------------------------------------------------------------- /frontend/lib/actions/sql/validate-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/sql/validate-query.ts -------------------------------------------------------------------------------- /frontend/lib/actions/summary-trigger-spans/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/summary-trigger-spans/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/tags/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/tags/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/agent/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/agent/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/agent/messages.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/agent/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/agent/prompt.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/agent/spans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/agent/spans.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/agent/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/agent/stream.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/agent/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/agent/summary.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/trace/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/trace/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/traces/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/traces/cookies.ts -------------------------------------------------------------------------------- /frontend/lib/actions/traces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/traces/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/traces/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/traces/stats.ts -------------------------------------------------------------------------------- /frontend/lib/actions/traces/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/traces/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/workspace/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/workspace/cookies.ts -------------------------------------------------------------------------------- /frontend/lib/actions/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/workspace/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/workspace/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/workspace/invite.ts -------------------------------------------------------------------------------- /frontend/lib/actions/workspace/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/workspace/utils.ts -------------------------------------------------------------------------------- /frontend/lib/actions/workspaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/workspaces/index.ts -------------------------------------------------------------------------------- /frontend/lib/actions/workspaces/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/actions/workspaces/utils.ts -------------------------------------------------------------------------------- /frontend/lib/ai/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/ai/llm.ts -------------------------------------------------------------------------------- /frontend/lib/api-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/api-keys.ts -------------------------------------------------------------------------------- /frontend/lib/api-keys/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/api-keys/types.ts -------------------------------------------------------------------------------- /frontend/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/auth.ts -------------------------------------------------------------------------------- /frontend/lib/blog/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/blog/types.ts -------------------------------------------------------------------------------- /frontend/lib/blog/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/blog/utils.ts -------------------------------------------------------------------------------- /frontend/lib/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/cache.ts -------------------------------------------------------------------------------- /frontend/lib/check/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/check/types.ts -------------------------------------------------------------------------------- /frontend/lib/checkout/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/checkout/utils.ts -------------------------------------------------------------------------------- /frontend/lib/clickhouse/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/client.ts -------------------------------------------------------------------------------- /frontend/lib/clickhouse/datapoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/datapoints.ts -------------------------------------------------------------------------------- /frontend/lib/clickhouse/evaluation-scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/evaluation-scores.ts -------------------------------------------------------------------------------- /frontend/lib/clickhouse/migrations/1_squashed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/migrations/1_squashed.sql -------------------------------------------------------------------------------- /frontend/lib/clickhouse/migrations/2_labels-to-tags.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/migrations/2_labels-to-tags.sql -------------------------------------------------------------------------------- /frontend/lib/clickhouse/migrations/4_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/migrations/4_views.sql -------------------------------------------------------------------------------- /frontend/lib/clickhouse/migrations/9_success_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/migrations/9_success_status.sql -------------------------------------------------------------------------------- /frontend/lib/clickhouse/migrations/orig/0003-span-status.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE default.spans ADD COLUMN IF NOT EXISTS "status" text DEFAULT ''; 2 | -------------------------------------------------------------------------------- /frontend/lib/clickhouse/migrations/orig/0005-spans.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/migrations/orig/0005-spans.sql -------------------------------------------------------------------------------- /frontend/lib/clickhouse/modifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/modifiers.ts -------------------------------------------------------------------------------- /frontend/lib/clickhouse/spans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/spans.ts -------------------------------------------------------------------------------- /frontend/lib/clickhouse/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/types.ts -------------------------------------------------------------------------------- /frontend/lib/clickhouse/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/clickhouse/utils.ts -------------------------------------------------------------------------------- /frontend/lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/colors.ts -------------------------------------------------------------------------------- /frontend/lib/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/const.ts -------------------------------------------------------------------------------- /frontend/lib/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/crypto.ts -------------------------------------------------------------------------------- /frontend/lib/dataset/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/dataset/types.ts -------------------------------------------------------------------------------- /frontend/lib/dataset/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/dataset/utils.ts -------------------------------------------------------------------------------- /frontend/lib/db/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/auth.ts -------------------------------------------------------------------------------- /frontend/lib/db/default-charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/default-charts.ts -------------------------------------------------------------------------------- /frontend/lib/db/drizzle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/drizzle.ts -------------------------------------------------------------------------------- /frontend/lib/db/initial-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/initial-data.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0000_tidy_iron_monger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0000_tidy_iron_monger.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0001_reflective_nuke.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0001_reflective_nuke.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0002_cold_romulus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0002_cold_romulus.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0008_nosy_jean_grey.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0008_nosy_jean_grey.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0009_lean_turbo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0009_lean_turbo.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0012_lying_mandrill.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0012_lying_mandrill.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0013_living_polaris.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0013_living_polaris.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0015_eminent_garia.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0015_eminent_garia.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0016_parched_nomad.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0016_parched_nomad.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0018_vengeful_violations.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "evaluation_results" ADD COLUMN "index" integer DEFAULT 0 NOT NULL; -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0021_cold_morbius.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0021_cold_morbius.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0022_hesitant_skin.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "traces" ADD COLUMN "top_span_id" uuid; -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0023_youthful_chamber.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0023_youthful_chamber.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0025_amazing_drax.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0025_amazing_drax.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0027_massive_hawkeye.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0027_massive_hawkeye.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0031_round_caretaker.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "traces" ADD COLUMN "visibility" text;--> statement-breakpoint -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0032_wealthy_gressill.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "users" ADD COLUMN "avatar_url" text; -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0033_dizzy_longshot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0033_dizzy_longshot.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0035_aberrant_mantis.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "traces" ADD COLUMN "status" text; -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0037_cute_medusa.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0037_cute_medusa.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0039_late_stone_men.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0039_late_stone_men.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0041_silent_midnight.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0041_silent_midnight.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0043_fancy_zuras.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0043_fancy_zuras.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0044_neat_blob.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "evaluations" ADD COLUMN "metadata" jsonb; -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0047_mixed_wolf_cub.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0047_mixed_wolf_cub.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0048_damp_glorian.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0048_damp_glorian.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0049_harsh_sabretooth.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0049_harsh_sabretooth.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0050_woozy_hairball.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0050_woozy_hairball.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0051_omniscient_siren.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "labeling_queues" ADD COLUMN "annotation_schema" jsonb; -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0052_yummy_mauler.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0052_yummy_mauler.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0053_flat_menace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0053_flat_menace.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0054_milky_toad.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0054_milky_toad.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0055_loose_mandrill.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0055_loose_mandrill.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0056_pale_darkstar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0056_pale_darkstar.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0057_empty_callisto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0057_empty_callisto.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0058_sweet_shocker.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0058_sweet_shocker.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0059_brief_hiroim.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0059_brief_hiroim.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0060_smooth_pride.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0060_smooth_pride.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/0061_zippy_the_hood.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/0061_zippy_the_hood.sql -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0002_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0003_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0004_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0005_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0006_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0007_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0007_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0008_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0008_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0009_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0009_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0010_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0010_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0011_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0011_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0012_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0012_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0013_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0013_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0014_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0014_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0015_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0015_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0016_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0016_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0017_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0017_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0018_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0018_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0019_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0019_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0020_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0020_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0021_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0021_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0022_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0022_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0023_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0023_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0024_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0024_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0025_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0025_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0026_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0026_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0027_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0027_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0028_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0028_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0029_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0029_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0030_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0030_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0031_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0031_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0032_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0032_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0033_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0033_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0034_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0034_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0035_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0035_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0036_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0036_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0037_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0037_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0038_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0038_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0039_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0039_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0040_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0040_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0041_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0041_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0042_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0042_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0043_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0043_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0044_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0044_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0045_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0045_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0046_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0046_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0047_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0047_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0048_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0048_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0049_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0049_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0050_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0050_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0051_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0051_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0052_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0052_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0053_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0053_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0054_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0054_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0055_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0055_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0056_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0056_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0057_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0057_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0058_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0058_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0059_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0059_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0060_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0060_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/0061_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/0061_snapshot.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/meta/_journal.json -------------------------------------------------------------------------------- /frontend/lib/db/migrations/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/relations.ts -------------------------------------------------------------------------------- /frontend/lib/db/migrations/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/migrations/schema.ts -------------------------------------------------------------------------------- /frontend/lib/db/modifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/modifiers.ts -------------------------------------------------------------------------------- /frontend/lib/db/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/db/utils.ts -------------------------------------------------------------------------------- /frontend/lib/emails/subscription-updated-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/emails/subscription-updated-email.tsx -------------------------------------------------------------------------------- /frontend/lib/emails/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/emails/utils.ts -------------------------------------------------------------------------------- /frontend/lib/emails/welcome-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/emails/welcome-email.tsx -------------------------------------------------------------------------------- /frontend/lib/emails/workspace-invite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/emails/workspace-invite.tsx -------------------------------------------------------------------------------- /frontend/lib/env/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/env/utils.ts -------------------------------------------------------------------------------- /frontend/lib/evaluation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/evaluation/types.ts -------------------------------------------------------------------------------- /frontend/lib/evaluators/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/evaluators/types.ts -------------------------------------------------------------------------------- /frontend/lib/event-emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/event-emitter.ts -------------------------------------------------------------------------------- /frontend/lib/events/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/events/types.ts -------------------------------------------------------------------------------- /frontend/lib/features/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/features/features.ts -------------------------------------------------------------------------------- /frontend/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/fonts.ts -------------------------------------------------------------------------------- /frontend/lib/hooks/use-at-bottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/hooks/use-at-bottom.tsx -------------------------------------------------------------------------------- /frontend/lib/hooks/use-debounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/hooks/use-debounce.tsx -------------------------------------------------------------------------------- /frontend/lib/hooks/use-previous.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/hooks/use-previous.tsx -------------------------------------------------------------------------------- /frontend/lib/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/hooks/use-toast.ts -------------------------------------------------------------------------------- /frontend/lib/lang-graph/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/lang-graph/types.ts -------------------------------------------------------------------------------- /frontend/lib/lang-graph/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/lang-graph/utils.ts -------------------------------------------------------------------------------- /frontend/lib/playground/providers/anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/playground/providers/anthropic.ts -------------------------------------------------------------------------------- /frontend/lib/playground/providers/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/playground/providers/google.ts -------------------------------------------------------------------------------- /frontend/lib/playground/providers/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/playground/providers/openai.ts -------------------------------------------------------------------------------- /frontend/lib/playground/providersRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/playground/providersRegistry.ts -------------------------------------------------------------------------------- /frontend/lib/playground/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/playground/types.ts -------------------------------------------------------------------------------- /frontend/lib/playground/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/playground/utils.ts -------------------------------------------------------------------------------- /frontend/lib/queue/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/queue/types.ts -------------------------------------------------------------------------------- /frontend/lib/s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/s3.ts -------------------------------------------------------------------------------- /frontend/lib/semaphore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/semaphore.ts -------------------------------------------------------------------------------- /frontend/lib/server-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/server-utils.ts -------------------------------------------------------------------------------- /frontend/lib/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/settings/types.ts -------------------------------------------------------------------------------- /frontend/lib/spans/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/spans/types/index.ts -------------------------------------------------------------------------------- /frontend/lib/spans/types/langchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/spans/types/langchain.ts -------------------------------------------------------------------------------- /frontend/lib/spans/types/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/spans/types/openai.ts -------------------------------------------------------------------------------- /frontend/lib/spans/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/spans/utils.ts -------------------------------------------------------------------------------- /frontend/lib/styles/session-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/styles/session-player.css -------------------------------------------------------------------------------- /frontend/lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/supabase.ts -------------------------------------------------------------------------------- /frontend/lib/tags/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/tags/colors.ts -------------------------------------------------------------------------------- /frontend/lib/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/time.ts -------------------------------------------------------------------------------- /frontend/lib/traces/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/traces/types.ts -------------------------------------------------------------------------------- /frontend/lib/traces/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/traces/utils.ts -------------------------------------------------------------------------------- /frontend/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/types.ts -------------------------------------------------------------------------------- /frontend/lib/usage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/usage/types.ts -------------------------------------------------------------------------------- /frontend/lib/usage/workspace-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/usage/workspace-stats.ts -------------------------------------------------------------------------------- /frontend/lib/user/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/user/types.ts -------------------------------------------------------------------------------- /frontend/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/utils.ts -------------------------------------------------------------------------------- /frontend/lib/workspaces/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/lib/workspaces/types.ts -------------------------------------------------------------------------------- /frontend/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/middleware.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/blog/2024-12-01-launch-week-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/public/blog/2024-12-01-launch-week-1.png -------------------------------------------------------------------------------- /frontend/public/blog/2024-12-03-evals-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/public/blog/2024-12-03-evals-img-1.png -------------------------------------------------------------------------------- /frontend/public/blog/2024-12-03-evals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/public/blog/2024-12-03-evals.png -------------------------------------------------------------------------------- /frontend/public/blog/2024-12-05-labeling-queues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/public/blog/2024-12-05-labeling-queues.png -------------------------------------------------------------------------------- /frontend/public/blog/2024-12-05-lq-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/public/blog/2024-12-05-lq-img-1.png -------------------------------------------------------------------------------- /frontend/public/blog/2024-12-05-lq-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/public/blog/2024-12-05-lq-img-2.png -------------------------------------------------------------------------------- /frontend/public/blog/2024-12-06-online-evals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/public/blog/2024-12-06-online-evals.jpg -------------------------------------------------------------------------------- /frontend/sentry.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/sentry.server.config.ts -------------------------------------------------------------------------------- /frontend/shared/ui/date-range-filter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/shared/ui/date-range-filter/index.tsx -------------------------------------------------------------------------------- /frontend/shared/ui/date-range-filter/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/shared/ui/date-range-filter/utils.ts -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tests/test-uuid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/tests/test-uuid.test.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/types/next-auth.d.ts -------------------------------------------------------------------------------- /frontend/types/novnc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/frontend/types/novnc.d.ts -------------------------------------------------------------------------------- /images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/images/index.png -------------------------------------------------------------------------------- /images/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/images/logo_dark.png -------------------------------------------------------------------------------- /images/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/images/logo_light.png -------------------------------------------------------------------------------- /images/traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/images/traces.png -------------------------------------------------------------------------------- /query-engine/.dockerignore: -------------------------------------------------------------------------------- 1 | .venv 2 | __pycache__ -------------------------------------------------------------------------------- /query-engine/.env.example: -------------------------------------------------------------------------------- 1 | PORT=8903 -------------------------------------------------------------------------------- /query-engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/.gitignore -------------------------------------------------------------------------------- /query-engine/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /query-engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/Dockerfile -------------------------------------------------------------------------------- /query-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/README.md -------------------------------------------------------------------------------- /query-engine/proto/query_engine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/proto/query_engine.proto -------------------------------------------------------------------------------- /query-engine/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/pyproject.toml -------------------------------------------------------------------------------- /query-engine/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /query-engine/src/json_to_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/json_to_sql.py -------------------------------------------------------------------------------- /query-engine/src/query_engine_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/query_engine_pb2.py -------------------------------------------------------------------------------- /query-engine/src/query_engine_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/query_engine_pb2.pyi -------------------------------------------------------------------------------- /query-engine/src/query_engine_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/query_engine_pb2_grpc.py -------------------------------------------------------------------------------- /query-engine/src/query_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/query_validator.py -------------------------------------------------------------------------------- /query-engine/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/server.py -------------------------------------------------------------------------------- /query-engine/src/sql_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/sql_to_json.py -------------------------------------------------------------------------------- /query-engine/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/src/utils.py -------------------------------------------------------------------------------- /query-engine/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /query-engine/tests/test_json_sql_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/tests/test_json_sql_conversion.py -------------------------------------------------------------------------------- /query-engine/tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/tests/test_validation.py -------------------------------------------------------------------------------- /query-engine/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/query-engine/uv.lock -------------------------------------------------------------------------------- /rules/laminar.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmnr-ai/lmnr/HEAD/rules/laminar.mdc --------------------------------------------------------------------------------