├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── components.json ├── eslint.config.mjs ├── instrumentation-client.ts ├── middleware.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── arxiv.svg ├── assets │ └── banner │ │ ├── arxiv.png │ │ ├── biorxiv.png │ │ ├── clinicaltrials.png │ │ ├── dailymed.png │ │ ├── medrxiv.png │ │ ├── pubmed.png │ │ ├── sec.png │ │ ├── uspto.png │ │ ├── who.png │ │ └── wikipedia.png ├── balancesheet.svg ├── file.svg ├── globe.svg ├── history.png ├── lmstudio-start.png ├── lmstudio.png ├── nabla.png ├── next.svg ├── ollama.png ├── sec.svg ├── stocks.svg ├── valyu.png ├── valyu.svg ├── vercel.svg ├── web.svg ├── window.svg └── wy.svg ├── src ├── app │ ├── api │ │ ├── auth │ │ │ └── valyu │ │ │ │ ├── session │ │ │ │ └── route.ts │ │ │ │ └── token │ │ │ │ └── route.ts │ │ ├── chat │ │ │ ├── poll │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ └── sessions │ │ │ │ ├── [sessionId] │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ ├── enterprise │ │ │ └── inquiry │ │ │ │ └── route.ts │ │ ├── env-status │ │ │ └── route.ts │ │ ├── history │ │ │ └── select-location-image │ │ │ │ └── route.ts │ │ ├── og │ │ │ └── share │ │ │ │ └── [token] │ │ │ │ └── route.tsx │ │ ├── reports │ │ │ └── generate-pdf │ │ │ │ └── route.ts │ │ ├── research │ │ │ ├── public │ │ │ │ └── [token] │ │ │ │ │ └── route.ts │ │ │ ├── share │ │ │ │ └── route.ts │ │ │ └── tasks │ │ │ │ └── route.ts │ │ └── valyu-proxy │ │ │ └── route.ts │ ├── assets │ │ └── banner │ │ │ ├── arxiv.png │ │ │ ├── bls.png │ │ │ ├── clinicaltrials.png │ │ │ ├── crunchbase.png │ │ │ ├── fred.png │ │ │ ├── github.png │ │ │ ├── linkedin.png │ │ │ ├── medium.png │ │ │ ├── pitchbook.png │ │ │ ├── pubmed.png │ │ │ ├── reddit.png │ │ │ ├── sec.png │ │ │ ├── uspto.png │ │ │ ├── wikipedia.png │ │ │ └── wiley.png │ ├── auth │ │ └── valyu │ │ │ ├── callback │ │ │ └── route.ts │ │ │ └── complete │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── privacy │ │ └── page.tsx │ ├── share │ │ └── [token] │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ └── terms │ │ └── page.tsx ├── components │ ├── ai │ │ └── inline-citation.tsx │ ├── auth │ │ ├── auth-initializer.tsx │ │ └── auth-modal.tsx │ ├── bottom-bar.tsx │ ├── code-snippet-dialog.tsx │ ├── data-source-logos.tsx │ ├── enterprise │ │ ├── enterprise-banner.tsx │ │ └── enterprise-contact-modal.tsx │ ├── favicon.tsx │ ├── globe.tsx │ ├── history-research-interface.tsx │ ├── metrics-pills.tsx │ ├── missing-keys-dialog.tsx │ ├── model-compatibility-dialog.tsx │ ├── posthog-provider.tsx │ ├── query-provider.tsx │ ├── reasoning-dialog.tsx │ ├── research-confirmation-dialog.tsx │ ├── share-button.tsx │ ├── share-page-client.tsx │ ├── sidebar.tsx │ ├── signup-prompt.tsx │ ├── social-links.tsx │ ├── theme-provider.tsx │ ├── time-saved-breakdown-dialog.tsx │ ├── ui │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── favicon.tsx │ │ ├── gallery.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── theme-switcher.tsx │ │ ├── theme-toggle.tsx │ │ └── tooltip.tsx │ ├── user │ │ ├── settings-modal.tsx │ │ └── subscription-modal.tsx │ └── virtualized-content-dialog.tsx ├── lib │ ├── citation-utils.ts │ ├── db.ts │ ├── email-templates │ │ └── enterprise-inquiry.tsx │ ├── env-validation.ts │ ├── favicon.ts │ ├── fetch-research.ts │ ├── local-db │ │ ├── client.ts │ │ ├── local-auth.ts │ │ └── schema.ts │ ├── markdown-utils.ts │ ├── metrics-calculator.ts │ ├── stores │ │ └── use-auth-store.ts │ ├── text-utils.ts │ ├── utils.ts │ └── valyu-oauth.ts └── utils │ └── supabase │ ├── client-wrapper.ts │ ├── client.ts │ └── server.ts ├── supabase ├── README.md ├── policies.sql ├── schema.sql └── triggers.sql ├── tailwind.config.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /instrumentation-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/instrumentation-client.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/arxiv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/arxiv.svg -------------------------------------------------------------------------------- /public/assets/banner/arxiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/arxiv.png -------------------------------------------------------------------------------- /public/assets/banner/biorxiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/biorxiv.png -------------------------------------------------------------------------------- /public/assets/banner/clinicaltrials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/clinicaltrials.png -------------------------------------------------------------------------------- /public/assets/banner/dailymed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/dailymed.png -------------------------------------------------------------------------------- /public/assets/banner/medrxiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/medrxiv.png -------------------------------------------------------------------------------- /public/assets/banner/pubmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/pubmed.png -------------------------------------------------------------------------------- /public/assets/banner/sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/sec.png -------------------------------------------------------------------------------- /public/assets/banner/uspto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/uspto.png -------------------------------------------------------------------------------- /public/assets/banner/who.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/who.png -------------------------------------------------------------------------------- /public/assets/banner/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/assets/banner/wikipedia.png -------------------------------------------------------------------------------- /public/balancesheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/balancesheet.svg -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/history.png -------------------------------------------------------------------------------- /public/lmstudio-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/lmstudio-start.png -------------------------------------------------------------------------------- /public/lmstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/lmstudio.png -------------------------------------------------------------------------------- /public/nabla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/nabla.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/ollama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/ollama.png -------------------------------------------------------------------------------- /public/sec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/sec.svg -------------------------------------------------------------------------------- /public/stocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/stocks.svg -------------------------------------------------------------------------------- /public/valyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/valyu.png -------------------------------------------------------------------------------- /public/valyu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/valyu.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/web.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/window.svg -------------------------------------------------------------------------------- /public/wy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/public/wy.svg -------------------------------------------------------------------------------- /src/app/api/auth/valyu/session/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/auth/valyu/session/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/valyu/token/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/auth/valyu/token/route.ts -------------------------------------------------------------------------------- /src/app/api/chat/poll/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/chat/poll/route.ts -------------------------------------------------------------------------------- /src/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/chat/route.ts -------------------------------------------------------------------------------- /src/app/api/chat/sessions/[sessionId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/chat/sessions/[sessionId]/route.ts -------------------------------------------------------------------------------- /src/app/api/chat/sessions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/chat/sessions/route.ts -------------------------------------------------------------------------------- /src/app/api/enterprise/inquiry/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/enterprise/inquiry/route.ts -------------------------------------------------------------------------------- /src/app/api/env-status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/env-status/route.ts -------------------------------------------------------------------------------- /src/app/api/history/select-location-image/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/history/select-location-image/route.ts -------------------------------------------------------------------------------- /src/app/api/og/share/[token]/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/og/share/[token]/route.tsx -------------------------------------------------------------------------------- /src/app/api/reports/generate-pdf/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/reports/generate-pdf/route.ts -------------------------------------------------------------------------------- /src/app/api/research/public/[token]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/research/public/[token]/route.ts -------------------------------------------------------------------------------- /src/app/api/research/share/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/research/share/route.ts -------------------------------------------------------------------------------- /src/app/api/research/tasks/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/research/tasks/route.ts -------------------------------------------------------------------------------- /src/app/api/valyu-proxy/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/api/valyu-proxy/route.ts -------------------------------------------------------------------------------- /src/app/assets/banner/arxiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/arxiv.png -------------------------------------------------------------------------------- /src/app/assets/banner/bls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/bls.png -------------------------------------------------------------------------------- /src/app/assets/banner/clinicaltrials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/clinicaltrials.png -------------------------------------------------------------------------------- /src/app/assets/banner/crunchbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/crunchbase.png -------------------------------------------------------------------------------- /src/app/assets/banner/fred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/fred.png -------------------------------------------------------------------------------- /src/app/assets/banner/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/github.png -------------------------------------------------------------------------------- /src/app/assets/banner/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/linkedin.png -------------------------------------------------------------------------------- /src/app/assets/banner/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/medium.png -------------------------------------------------------------------------------- /src/app/assets/banner/pitchbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/pitchbook.png -------------------------------------------------------------------------------- /src/app/assets/banner/pubmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/pubmed.png -------------------------------------------------------------------------------- /src/app/assets/banner/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/reddit.png -------------------------------------------------------------------------------- /src/app/assets/banner/sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/sec.png -------------------------------------------------------------------------------- /src/app/assets/banner/uspto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/uspto.png -------------------------------------------------------------------------------- /src/app/assets/banner/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/wikipedia.png -------------------------------------------------------------------------------- /src/app/assets/banner/wiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/assets/banner/wiley.png -------------------------------------------------------------------------------- /src/app/auth/valyu/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/auth/valyu/callback/route.ts -------------------------------------------------------------------------------- /src/app/auth/valyu/complete/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/auth/valyu/complete/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/share/[token]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/share/[token]/layout.tsx -------------------------------------------------------------------------------- /src/app/share/[token]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/share/[token]/page.tsx -------------------------------------------------------------------------------- /src/app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/app/terms/page.tsx -------------------------------------------------------------------------------- /src/components/ai/inline-citation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ai/inline-citation.tsx -------------------------------------------------------------------------------- /src/components/auth/auth-initializer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/auth/auth-initializer.tsx -------------------------------------------------------------------------------- /src/components/auth/auth-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/auth/auth-modal.tsx -------------------------------------------------------------------------------- /src/components/bottom-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/bottom-bar.tsx -------------------------------------------------------------------------------- /src/components/code-snippet-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/code-snippet-dialog.tsx -------------------------------------------------------------------------------- /src/components/data-source-logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/data-source-logos.tsx -------------------------------------------------------------------------------- /src/components/enterprise/enterprise-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/enterprise/enterprise-banner.tsx -------------------------------------------------------------------------------- /src/components/enterprise/enterprise-contact-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/enterprise/enterprise-contact-modal.tsx -------------------------------------------------------------------------------- /src/components/favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/favicon.tsx -------------------------------------------------------------------------------- /src/components/globe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/globe.tsx -------------------------------------------------------------------------------- /src/components/history-research-interface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/history-research-interface.tsx -------------------------------------------------------------------------------- /src/components/metrics-pills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/metrics-pills.tsx -------------------------------------------------------------------------------- /src/components/missing-keys-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/missing-keys-dialog.tsx -------------------------------------------------------------------------------- /src/components/model-compatibility-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/model-compatibility-dialog.tsx -------------------------------------------------------------------------------- /src/components/posthog-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/posthog-provider.tsx -------------------------------------------------------------------------------- /src/components/query-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/query-provider.tsx -------------------------------------------------------------------------------- /src/components/reasoning-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/reasoning-dialog.tsx -------------------------------------------------------------------------------- /src/components/research-confirmation-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/research-confirmation-dialog.tsx -------------------------------------------------------------------------------- /src/components/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/share-button.tsx -------------------------------------------------------------------------------- /src/components/share-page-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/share-page-client.tsx -------------------------------------------------------------------------------- /src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/sidebar.tsx -------------------------------------------------------------------------------- /src/components/signup-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/signup-prompt.tsx -------------------------------------------------------------------------------- /src/components/social-links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/social-links.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/time-saved-breakdown-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/time-saved-breakdown-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/favicon.tsx -------------------------------------------------------------------------------- /src/components/ui/gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/gallery.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/theme-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/theme-switcher.tsx -------------------------------------------------------------------------------- /src/components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/user/settings-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/user/settings-modal.tsx -------------------------------------------------------------------------------- /src/components/user/subscription-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/user/subscription-modal.tsx -------------------------------------------------------------------------------- /src/components/virtualized-content-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/components/virtualized-content-dialog.tsx -------------------------------------------------------------------------------- /src/lib/citation-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/citation-utils.ts -------------------------------------------------------------------------------- /src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/db.ts -------------------------------------------------------------------------------- /src/lib/email-templates/enterprise-inquiry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/email-templates/enterprise-inquiry.tsx -------------------------------------------------------------------------------- /src/lib/env-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/env-validation.ts -------------------------------------------------------------------------------- /src/lib/favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/favicon.ts -------------------------------------------------------------------------------- /src/lib/fetch-research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/fetch-research.ts -------------------------------------------------------------------------------- /src/lib/local-db/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/local-db/client.ts -------------------------------------------------------------------------------- /src/lib/local-db/local-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/local-db/local-auth.ts -------------------------------------------------------------------------------- /src/lib/local-db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/local-db/schema.ts -------------------------------------------------------------------------------- /src/lib/markdown-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/markdown-utils.ts -------------------------------------------------------------------------------- /src/lib/metrics-calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/metrics-calculator.ts -------------------------------------------------------------------------------- /src/lib/stores/use-auth-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/stores/use-auth-store.ts -------------------------------------------------------------------------------- /src/lib/text-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/text-utils.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/valyu-oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/lib/valyu-oauth.ts -------------------------------------------------------------------------------- /src/utils/supabase/client-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/utils/supabase/client-wrapper.ts -------------------------------------------------------------------------------- /src/utils/supabase/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/utils/supabase/client.ts -------------------------------------------------------------------------------- /src/utils/supabase/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/src/utils/supabase/server.ts -------------------------------------------------------------------------------- /supabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/supabase/README.md -------------------------------------------------------------------------------- /supabase/policies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/supabase/policies.sql -------------------------------------------------------------------------------- /supabase/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/supabase/schema.sql -------------------------------------------------------------------------------- /supabase/triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/supabase/triggers.sql -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorkeccak/history/HEAD/tsconfig.json --------------------------------------------------------------------------------