Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex,nofollow" />
<title>AI-automated screening PoC</title>
<title>AiSysRev</title>
</head>
<body className="bg-white">
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ai-automated-screening-poc",
"name": "aisysrev",
"private": true,
"version": "1.0.0",
"type": "module",
Expand Down
2 changes: 0 additions & 2 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { ProjectsPage } from "./pages/ProjectsPage";
import { NewProject } from "./pages/NewProjectPage";
import { AboutPage } from "./pages/AboutPage";
import { ProjectPage } from "./pages/ProjectPage";
import { ScreeningPage } from "./pages/ScreeningPage";
import { SettingsPage } from "./pages/SettingPage";
import { ResultPage } from "./pages/ResultPage";
import "react-loading-skeleton/dist/skeleton.css";
Expand Down Expand Up @@ -62,7 +61,6 @@ function App() {
path="/terms-and-conditions"
component={TermsAndConditionsPage}
/>
<Route path="/screening" component={ScreeningPage} />
<Route path="/settings" component={SettingsPage} />
<Route path="/result/:uuid" component={ResultPage} />
<Route path="*" component={NotFoundPage} />
Expand Down
6 changes: 3 additions & 3 deletions client/src/pages/AboutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ export const AboutPage = () => (
className="text-blue-600 hover:underline flex flex-row gap-2 justify-start items-center w-fit"
>
<SquareArrowOutUpRight />
<span>OpenAPI JSON</span>
<span>/openapi.json</span>
</a>
</p>
<p>
<strong>AISysRev</strong> demonstrates the capabilities of AI-automated
title-abstract screening of systematic reviews (SRs), which is subject
to further research and improvements. This PoC is based on the following
to further research and improvements. This tool is based on the following
scientific contributions:
<ul className="list-disc ml-4">
<li>
Expand Down Expand Up @@ -78,7 +78,7 @@ export const AboutPage = () => (
</p>
<H3>Supported LLMs</H3>
<p>
We support all LLMs hosted by Openrouter,{" "}
We support models from Openrouter, OpenAI and local OpenAI SDK{" "}
<strong>
that support structured JSON response, along with configuring
temperature, seed and top_p parameters.
Expand Down
Loading