├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── README.md ├── components.json ├── docs └── install.md ├── flow.png ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── public ├── next.svg └── vercel.svg ├── screenshot.png ├── src ├── app │ ├── api │ │ └── trpc │ │ │ └── [trpc] │ │ │ └── route.ts │ ├── examples.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── providers │ │ ├── index.tsx │ │ ├── state.tsx │ │ └── trpc.tsx │ ├── tailwind-indicator.tsx │ └── ui │ │ ├── button.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ └── label.tsx ├── lib │ ├── env.ts │ ├── format.test.ts │ ├── format.ts │ ├── sentence-splitter.ts │ ├── trpc.ts │ ├── trpc │ │ ├── client │ │ │ └── index.ts │ │ └── server │ │ │ └── index.ts │ ├── ui.ts │ ├── url.ts │ ├── utils.ts │ └── xml.ts ├── registry │ ├── agent │ │ ├── enrich.test.ts │ │ ├── enrich.ts │ │ ├── preprocessor.test.ts │ │ ├── preprocessor.ts │ │ └── research.ts │ ├── internet │ │ ├── aggregate-content.test.ts │ │ ├── aggregate-content.ts │ │ ├── classify-content.ts │ │ ├── extract-content.test.ts │ │ ├── extract-content.ts │ │ ├── filter-content.ts │ │ ├── merge-content.test.ts │ │ └── merge-content.ts │ ├── routers │ │ ├── index.ts │ │ ├── query.ts │ │ └── test.ts │ ├── search │ │ ├── aggregate.ts │ │ ├── browse.ts │ │ ├── retrieve.ts │ │ └── search.ts │ └── types.ts └── services │ ├── browse.ts │ ├── llm.ts │ ├── metaphor.ts │ └── react-query.ts ├── tailwind.config.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | evals/** 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/components.json -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/docs/install.md -------------------------------------------------------------------------------- /flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/flow.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /src/app/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/app/examples.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/providers/index.tsx -------------------------------------------------------------------------------- /src/components/providers/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/providers/state.tsx -------------------------------------------------------------------------------- /src/components/providers/trpc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/providers/trpc.tsx -------------------------------------------------------------------------------- /src/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/lib/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/env.ts -------------------------------------------------------------------------------- /src/lib/format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/format.test.ts -------------------------------------------------------------------------------- /src/lib/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/format.ts -------------------------------------------------------------------------------- /src/lib/sentence-splitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/sentence-splitter.ts -------------------------------------------------------------------------------- /src/lib/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/trpc.ts -------------------------------------------------------------------------------- /src/lib/trpc/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/trpc/client/index.ts -------------------------------------------------------------------------------- /src/lib/trpc/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/trpc/server/index.ts -------------------------------------------------------------------------------- /src/lib/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/ui.ts -------------------------------------------------------------------------------- /src/lib/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/url.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/lib/xml.ts -------------------------------------------------------------------------------- /src/registry/agent/enrich.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/agent/enrich.test.ts -------------------------------------------------------------------------------- /src/registry/agent/enrich.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/agent/enrich.ts -------------------------------------------------------------------------------- /src/registry/agent/preprocessor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/agent/preprocessor.test.ts -------------------------------------------------------------------------------- /src/registry/agent/preprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/agent/preprocessor.ts -------------------------------------------------------------------------------- /src/registry/agent/research.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/agent/research.ts -------------------------------------------------------------------------------- /src/registry/internet/aggregate-content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/aggregate-content.test.ts -------------------------------------------------------------------------------- /src/registry/internet/aggregate-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/aggregate-content.ts -------------------------------------------------------------------------------- /src/registry/internet/classify-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/classify-content.ts -------------------------------------------------------------------------------- /src/registry/internet/extract-content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/extract-content.test.ts -------------------------------------------------------------------------------- /src/registry/internet/extract-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/extract-content.ts -------------------------------------------------------------------------------- /src/registry/internet/filter-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/filter-content.ts -------------------------------------------------------------------------------- /src/registry/internet/merge-content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/merge-content.test.ts -------------------------------------------------------------------------------- /src/registry/internet/merge-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/internet/merge-content.ts -------------------------------------------------------------------------------- /src/registry/routers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/routers/index.ts -------------------------------------------------------------------------------- /src/registry/routers/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/routers/query.ts -------------------------------------------------------------------------------- /src/registry/routers/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/routers/test.ts -------------------------------------------------------------------------------- /src/registry/search/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/search/aggregate.ts -------------------------------------------------------------------------------- /src/registry/search/browse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/search/browse.ts -------------------------------------------------------------------------------- /src/registry/search/retrieve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/search/retrieve.ts -------------------------------------------------------------------------------- /src/registry/search/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/search/search.ts -------------------------------------------------------------------------------- /src/registry/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/registry/types.ts -------------------------------------------------------------------------------- /src/services/browse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/services/browse.ts -------------------------------------------------------------------------------- /src/services/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/services/llm.ts -------------------------------------------------------------------------------- /src/services/metaphor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/services/metaphor.ts -------------------------------------------------------------------------------- /src/services/react-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/src/services/react-query.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhng/deep-seek/HEAD/tsconfig.json --------------------------------------------------------------------------------