├── .gitignore ├── LICENSE ├── README.md ├── backend ├── .env.example ├── Dockerfile ├── api │ ├── __init__.py │ ├── models.py │ ├── routes.py │ └── swagger.py ├── main.py ├── requirements.txt └── utils │ ├── cloudinary_utils.py │ ├── db.py │ ├── download.py │ ├── extraction.py │ ├── prompts.py │ └── search.py └── web ├── .env.example ├── app ├── annotation │ └── page.tsx ├── globals.css ├── layout.tsx ├── lib │ └── utils.ts ├── page.tsx └── template.tsx ├── components.json ├── components ├── PageScrollBar.tsx ├── PaperContent.tsx ├── ResourceDisplay.tsx ├── UrlForm.tsx └── magicui │ ├── line-shadow-text.tsx │ └── shimmer-button.tsx ├── eslint.config.mjs ├── hooks └── extraction.tsx ├── lib └── utils.ts ├── next-env.d.ts ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── book.svg ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/api/models.py -------------------------------------------------------------------------------- /backend/api/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/api/routes.py -------------------------------------------------------------------------------- /backend/api/swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/api/swagger.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/utils/cloudinary_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/utils/cloudinary_utils.py -------------------------------------------------------------------------------- /backend/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/utils/db.py -------------------------------------------------------------------------------- /backend/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/utils/download.py -------------------------------------------------------------------------------- /backend/utils/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/utils/extraction.py -------------------------------------------------------------------------------- /backend/utils/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/utils/prompts.py -------------------------------------------------------------------------------- /backend/utils/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/backend/utils/search.py -------------------------------------------------------------------------------- /web/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/.env.example -------------------------------------------------------------------------------- /web/app/annotation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/app/annotation/page.tsx -------------------------------------------------------------------------------- /web/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/app/globals.css -------------------------------------------------------------------------------- /web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/app/layout.tsx -------------------------------------------------------------------------------- /web/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/app/lib/utils.ts -------------------------------------------------------------------------------- /web/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/app/page.tsx -------------------------------------------------------------------------------- /web/app/template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/app/template.tsx -------------------------------------------------------------------------------- /web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/components.json -------------------------------------------------------------------------------- /web/components/PageScrollBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/components/PageScrollBar.tsx -------------------------------------------------------------------------------- /web/components/PaperContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/components/PaperContent.tsx -------------------------------------------------------------------------------- /web/components/ResourceDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/components/ResourceDisplay.tsx -------------------------------------------------------------------------------- /web/components/UrlForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/components/UrlForm.tsx -------------------------------------------------------------------------------- /web/components/magicui/line-shadow-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/components/magicui/line-shadow-text.tsx -------------------------------------------------------------------------------- /web/components/magicui/shimmer-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/components/magicui/shimmer-button.tsx -------------------------------------------------------------------------------- /web/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/eslint.config.mjs -------------------------------------------------------------------------------- /web/hooks/extraction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/hooks/extraction.tsx -------------------------------------------------------------------------------- /web/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/lib/utils.ts -------------------------------------------------------------------------------- /web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/next-env.d.ts -------------------------------------------------------------------------------- /web/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/next.config.ts -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/package.json -------------------------------------------------------------------------------- /web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/postcss.config.mjs -------------------------------------------------------------------------------- /web/public/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/public/book.svg -------------------------------------------------------------------------------- /web/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/public/file.svg -------------------------------------------------------------------------------- /web/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/public/globe.svg -------------------------------------------------------------------------------- /web/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/public/next.svg -------------------------------------------------------------------------------- /web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/public/vercel.svg -------------------------------------------------------------------------------- /web/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/public/window.svg -------------------------------------------------------------------------------- /web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/tailwind.config.ts -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Khant/smartread/HEAD/web/tsconfig.json --------------------------------------------------------------------------------