AniSearch is a web application built with Next.js that allows users to search for anime and manga using a description-based search. The models/embedding usable were generated using AniSearchModel.
To get started with AniSearch, follow these steps:
-
Clone the repository:
git clone https://github.com/RLAlpha49/AniSearch.git cd AniSearch
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.
- Anime and Manga Search: Search for anime and manga using various models.
- Dark Mode: Toggle between light and dark themes.
- Model Selection: Choose from a list of models for search.
- Settings Dialog: Customize search settings, including results per page and default model.
AniSearch/
├── src/
│ ├── app/
│ │ ├── fonts/
│ │ │ ├── GeistMonoVF.woff
│ │ │ └── GeistVF.woff
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── components/
│ │ ├── common/
│ │ │ ├── ErrorDisplay.tsx
│ │ │ ├── LoadingIndicator.tsx
│ │ │ └── SettingsDialog.tsx
│ │ ├── layout/
│ │ │ ├── DarkModeToggle.tsx
│ │ │ ├── Header.tsx
│ │ │ └── MultiSelect.tsx
│ │ ├── results/
│ │ │ ├── Filter/
│ │ │ │ ├── AnimeSpecificFilters.tsx
│ │ │ │ ├── FilterNotice.tsx
│ │ │ │ ├── IgnoreNAFilter.tsx
│ │ │ │ ├── MangaSpecificFilters.tsx
│ │ │ │ ├── MultiSelectFilter.tsx
│ │ │ │ ├── ScoreRangeFilter.tsx
│ │ │ │ └── StartYearRangeFilter.tsx
│ │ │ ├── AnimeCard.tsx
│ │ │ ├── LoadMoreButton.tsx
│ │ │ ├── MangaCard.tsx
│ │ │ └── ResultsList.tsx
│ │ ├── search/
│ │ │ ├── ModelSelector.tsx
│ │ │ ├── SearchBar.tsx
│ │ │ ├── SearchInput.tsx
│ │ │ └── SearchTypeSwitch.tsx
│ │ ├── ui/
│ │ │ ├── accordion.tsx
│ │ │ ├── badge.tsx
│ │ │ ├── button.tsx
│ │ │ ├── card.tsx
│ │ │ ├── checkbox.tsx
│ │ │ ├── command.tsx
│ │ │ ├── dialog.tsx
│ │ │ ├── input.tsx
│ │ │ ├── label.tsx
│ │ │ ├── popover.tsx
│ │ │ ├── radio-group.tsx
│ │ │ ├── select.tsx
│ │ │ ├── separator.tsx
│ │ │ ├── slider.tsx
│ │ │ └── switch.tsx
│ │ └── AniSearch.tsx
│ ├── lib/
│ │ └── utils.ts
│ └── types/
│ ├── props/
│ │ ├── AnimeCard.ts
│ │ ├── DarkModeToggle.ts
│ │ ├── ErrorDisplay.ts
│ │ ├── Filter.ts
│ │ ├── FilterOptions.ts
│ │ ├── Header.ts
│ │ ├── InfoItem.ts
│ │ ├── LoadingIndicator.ts
│ │ ├── LoadMoreButton.ts
│ │ ├── MangaCard.ts
│ │ ├── ModelSelector.ts
│ │ ├── ResultsList.ts
│ │ ├── SearchInput.ts
│ │ ├── SearchTypeSwitch.ts
│ │ └── SettingsDialog.ts
│ ├── Anime.ts
│ ├── Filters.ts
│ ├── Manga.ts
│ └── Settings.ts
├── .cursorignore
├── .eslintrc.json
├── .gitignore
├── components.json
├── LICENSE
├── next.config.mjs
├── package-lock.json
├── package.json
├── postcss.config.mjs
├── README.md
├── tailwind.config.ts
└── tsconfig.json
Contributions are welcome! Please fork the repository and submit a pull request for any changes.
This project is licensed under the MIT License. See the LICENSE file for details.