Skip to content

Commit

Permalink
Add academic niche search engine
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed May 6, 2024
1 parent 2184209 commit 0b0a99f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
name="twitter:description"
content="Minimalist web-searching app with an AI assistant that is always available and runs directly from your browser."
/>
<title>AtomicSearch: The search engine that gives you instantly the correct result</title>
<title>AcademicSearch: The search engine that gives you instantly the correct result/website for your studies</title>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔍</text></svg>"
Expand Down
4 changes: 2 additions & 2 deletions client/pages/search/SearchPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { SettingButton } from "../../components/SettingButton";
import Markdown from "markdown-to-jsx";
import { getDisableAiResponseSetting } from "../../modules/pubSub";
import { SearchResultsList } from "../../components/SearchResultsList";
import { Developer as DeveloperNiche} from "../../modules/engine-niche/developer.textGeneration";
import { Academic as AcademicNiche} from "../../modules/engine-niche/academic.textGeneration";
import { useLocation } from "react-router-dom";
import { search } from "../../modules/search";
import { Footer } from "../../components/Footer";
Expand Down Expand Up @@ -41,7 +41,7 @@ export const SearchPage = () => {
const [isLoading, setIsLoading] = useState(false);

useEffect(() => {
DeveloperNiche.prepareTextGeneration();
AcademicNiche.prepareTextGeneration();
}, []);

const location = useLocation();
Expand Down

0 comments on commit 0b0a99f

Please sign in to comment.