🌐 AI搜索 & 代理 主页
Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Updated docs landing page
  • Loading branch information
SilasMarvin committed Mar 1, 2024
commit 6f086d94879bd6ababf9026467a74d08cdc0181a
16 changes: 6 additions & 10 deletions pgml-dashboard/src/components/pages/docs/landing_page/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ lazy_static! {
("installation", "fullscreen"),
("collections", "overview_key"),
("pipelines", "climate_mini_split"),
("semantic search", "book"),
("semantic search using instructor model", "book"),
("extractive question answering", "book"),
("summarizing question answering", "book"),
("postgresml is 8-40x faster than python http microservices", "fit_page"),
("scaling to 1 million requests per second", "bolt"),
("mindsdb vs postgresml", "arrow_split"),
Expand All @@ -43,14 +42,11 @@ lazy_static! {
.into_iter()
.map(|s| s.to_owned())
.collect();
static ref TUTORIAL_TARGETS: Vec<String> = Vec::from([
"semantic search using instructor model",
"extractive question answering",
"summarizing question answering"
])
.into_iter()
.map(|s| s.to_owned())
.collect();
static ref TUTORIAL_TARGETS: Vec<String> =
Vec::from(["semantic search", "semantic search using instructor model",])
.into_iter()
.map(|s| s.to_owned())
.collect();
static ref BENCHMARKS_TARGETS: Vec<String> = Vec::from([
"postgresml is 8-40x faster than python http microservices",
"scaling to 1 million requests per second",
Expand Down