Compare commits

..

11 Commits

Author SHA1 Message Date
Elijah Voigt f41cc5885a update tickets after implementation of vector-db chapter 3 months ago
Elijah Voigt e91bdd31ec docs(edu): write §12 exercise 5 RAG pipeline for vector-db course [5ed295]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt 60c9fb67a8 docs(edu): write §11 exercise 4 recommendation engine for vector-db course [e8be9a]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt 473761b4af docs(edu): write §10 exercise 3 semantic document search for vector-db course [1ef9f4]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt d6d7327c90 docs(edu): write §9 generating embeddings in Rust for vector-db course [4c961f]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt ac1a6ec527 docs(edu): write §8 exercise 2 KNN search for vector-db course [5674ce]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt 0462586d88 docs(edu): write §7 exercise 1 storing vectors for vector-db course [081a55]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt 297f2d6d2f docs(edu): write §5 ANN algorithms for vector-db course [6ec5ff]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt 515bc2b6e5 docs(edu): write §4 what is a vector database for vector-db course [d9f850]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt 4ab1e85024 docs(edu): write §3 vector similarity for vector-db course [99e1d9]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago
Elijah Voigt 3a1860b5b1 docs(edu): write §2 embeddings for vector-db course [584e0c]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 months ago

@ -1,7 +1,7 @@
+++ +++
title = "§7 Exercise 1: Storing and Retrieving Vectors" title = "§7 Exercise 1: Storing and Retrieving Vectors"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§10 Exercise 3: Semantic Document Search" title = "§10 Exercise 3: Semantic Document Search"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§9 Generating Embeddings in Rust" title = "§9 Generating Embeddings in Rust"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§8 Exercise 2: K-Nearest Neighbor Search" title = "§8 Exercise 2: K-Nearest Neighbor Search"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§2 Embeddings" title = "§2 Embeddings"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§12 Exercise 5: Retrieval-Augmented Generation" title = "§12 Exercise 5: Retrieval-Augmented Generation"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§5 Under the Hood: ANN Algorithms" title = "§5 Under the Hood: ANN Algorithms"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§3 Vector Similarity" title = "§3 Vector Similarity"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "vector-db" title = "vector-db"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "project" ticket_type = "project"
dependencies = ["21d9be", "584e0c", "99e1d9", "d9f850", "6ec5ff", "37cdd5", "081a55", "5674ce", "4c961f", "1ef9f4", "e8be9a", "5ed295"] dependencies = ["21d9be", "584e0c", "99e1d9", "d9f850", "6ec5ff", "37cdd5", "081a55", "5674ce", "4c961f", "1ef9f4", "e8be9a", "5ed295"]
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§4 What Is a Vector Database?" title = "§4 What Is a Vector Database?"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -1,7 +1,7 @@
+++ +++
title = "§11 Exercise 4: Recommendation Engine" title = "§11 Exercise 4: Recommendation Engine"
priority = 5 priority = 5
status = "todo" status = "done"
ticket_type = "task" ticket_type = "task"
dependencies = [] dependencies = []
+++ +++

@ -4,10 +4,7 @@ build:
serve: serve:
mdbook serve mdbook serve
deploy: deploy: build
# Build the static site and upload it to Cloudflare Pages as a production deployment.
# Requires CLOUDFLARE_API_TOKEN and CLOUDFLARE_ACCOUNT_ID to be set in the environment.
mdbook build
wrangler pages deploy book --project-name vibedbooks --branch main wrangler pages deploy book --project-name vibedbooks --branch main
infra-init: infra-init:
@ -20,5 +17,4 @@ infra-plan:
infra-apply: infra-apply:
# Apply the OpenTofu configuration to Cloudflare. # Apply the OpenTofu configuration to Cloudflare.
# Requires TF_VAR_cloudflare_api_token, TF_VAR_cloudflare_account_id, TF_VAR_cloudflare_zone_id.
cd infra && tofu apply cd infra && tofu apply

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save