diff --git a/content/Open-Sourcing Tutor-GPT.md b/content/Open-Sourcing Tutor-GPT.md index c51fbd2135608..eb5e566f221cd 100644 --- a/content/Open-Sourcing Tutor-GPT.md +++ b/content/Open-Sourcing Tutor-GPT.md @@ -1,6 +1,7 @@ --- title: "Open-Sourcing Tutor-GPT" -enableToc: false +enableToc: true +date: 2023-06-09 --- ![[assets/human_machine_learning.jpeg]] diff --git a/content/Theory-Of-Mind is All You Need.md b/content/Theory-Of-Mind is All You Need.md index 321c2cdd20204..d65ae8fec2169 100644 --- a/content/Theory-Of-Mind is All You Need.md +++ b/content/Theory-Of-Mind is All You Need.md @@ -1,7 +1,7 @@ - --- title: "Theory-of-Mind Is All You Need" -enableToc: false +enableToc: true +date: 2023-06-12 --- ## TL;DR diff --git a/content/_index.md b/content/_index.md index 558df43b79703..8b657b08a2fdc 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,5 +1,5 @@ --- -title: Plastic Labs 🥽 +title: Welcome enableToc: false --- diff --git a/content/assets/2 orders magnitude reduced cost.png b/content/assets/2 orders magnitude reduced cost.png new file mode 100644 index 0000000000000..a02a8b5694cee Binary files /dev/null and b/content/assets/2 orders magnitude reduced cost.png differ diff --git a/content/assets/ToM Discord 1.png b/content/assets/ToM Discord 1.png new file mode 100644 index 0000000000000..5c6565be60361 Binary files /dev/null and b/content/assets/ToM Discord 1.png differ diff --git a/content/assets/ToM Discord 2.png b/content/assets/ToM Discord 2.png new file mode 100644 index 0000000000000..1fe0477d86890 Binary files /dev/null and b/content/assets/ToM Discord 2.png differ diff --git a/content/assets/ToM Discord 3.png b/content/assets/ToM Discord 3.png new file mode 100644 index 0000000000000..72d7a007f2d5a Binary files /dev/null and b/content/assets/ToM Discord 3.png differ diff --git a/content/assets/ToM Flow.png b/content/assets/ToM Flow.png new file mode 100644 index 0000000000000..ff2fd198f9edd Binary files /dev/null and b/content/assets/ToM Flow.png differ diff --git a/content/assets/ToM meme.jpeg b/content/assets/ToM meme.jpeg new file mode 100644 index 0000000000000..474bfe74ea6da Binary files /dev/null and b/content/assets/ToM meme.jpeg differ diff --git a/content/assets/bloom_courtland.png b/content/assets/bloom_courtland.png new file mode 100644 index 0000000000000..835cf06a0862e Binary files /dev/null and b/content/assets/bloom_courtland.png differ diff --git a/content/assets/bloom_courtland_thoughts.png b/content/assets/bloom_courtland_thoughts.png new file mode 100644 index 0000000000000..3155a07f07607 Binary files /dev/null and b/content/assets/bloom_courtland_thoughts.png differ diff --git a/content/assets/bloom_v_khan.png b/content/assets/bloom_v_khan.png new file mode 100644 index 0000000000000..9b427885389fd Binary files /dev/null and b/content/assets/bloom_v_khan.png differ diff --git a/content/assets/bloombot langchain diagram.png b/content/assets/bloombot langchain diagram.png new file mode 100644 index 0000000000000..95c1c568fa7b0 Binary files /dev/null and b/content/assets/bloombot langchain diagram.png differ diff --git a/content/assets/human_machine_learning.jpeg b/content/assets/human_machine_learning.jpeg new file mode 100644 index 0000000000000..04c0aaf46bebe Binary files /dev/null and b/content/assets/human_machine_learning.jpeg differ diff --git a/content/assets/khan.png b/content/assets/khan.png new file mode 100644 index 0000000000000..354ec91430494 Binary files /dev/null and b/content/assets/khan.png differ diff --git a/content/assets/thought.png b/content/assets/thought.png new file mode 100644 index 0000000000000..99671ab3c3e7c Binary files /dev/null and b/content/assets/thought.png differ diff --git a/quartz.config.ts b/quartz.config.ts index 092a594efdfca..70ce1b8ec5052 100644 --- a/quartz.config.ts +++ b/quartz.config.ts @@ -10,7 +10,7 @@ const config: QuartzConfig = { provider: "plausible", }, baseUrl: "blog.plasticlabs.ai", - ignorePatterns: ["assets", "private", "templates", ".obsidian"], + ignorePatterns: ["private", "templates", ".obsidian"], defaultDateType: "created", theme: { typography: { diff --git a/quartz.layout.ts b/quartz.layout.ts index 8b6edd8f80a16..427c466f8fcba 100644 --- a/quartz.layout.ts +++ b/quartz.layout.ts @@ -7,8 +7,8 @@ export const sharedPageComponents: SharedLayout = { header: [], footer: Component.Footer({ links: { - GitHub: "https://github.com/jackyzha0/quartz", - "Discord Community": "https://discord.gg/cRFFHYye7t", + GitHub: "https://github.com/plastic-labs/blog", + "Discord Community": "https://discord.gg/plasticlabs", }, }), } @@ -26,7 +26,14 @@ export const defaultContentPageLayout: PageLayout = { Component.MobileOnly(Component.Spacer()), Component.Search(), Component.Darkmode(), - Component.DesktopOnly(Component.Explorer()), + Component.DesktopOnly(Component.Explorer({ + filterFn: (node) => { + if (node.name === "Welcome") { + return false + } + return true + } + })), ], right: [ Component.Graph(),