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
36 changes: 36 additions & 0 deletions content/en/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: "MemMachine - The Open-Source Memory Layer for AI Agents"
date: 2024-09-09
description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences."
canonical: "https://memmachine.ai/"

# OpenGraph (Facebook) Metadata
og_title: "MemMachine - The Open-Source Memory Layer for AI Agents"
og_description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences."
og_url: "https://memmachine.ai/"
og_type: "website"
og_site_name: "MemMachine"
og_image: "https://memmachine.ai/img/logo.png"
og_image_alt: "MemMachine AI Logo"

# Twitter Card Metadata
twitter_card: "summary_large_image"
twitter_site: "@memmachineai"
# twitter_title: "MemMachine - Open-Source Memory for AI"
twitter_description: "Build advanced, personalized AI agents that remember. MemMachine is the open-source memory layer that enables long-term memory and learning for any LLM."
twitter_image: "https://memmachine.ai/img/logo.png"
twitter_image_alt: "MemMachine AI Logo"

# Structured Data (JSON-LD)
schema_ld: |
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "MemMachine",
"url": "https://memmachine.ai/",
"logo": "https://memmachine.ai/img/logo.png",
"sameAs": [
"https://github.com/MemMachine/MemMachine",
]
}
---
33 changes: 33 additions & 0 deletions content/en/blog/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
---
title: "Blog"

description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences."
canonical: "https://memmachine.ai/"

# OpenGraph (Facebook) Metadata
og_title: "MemMachine Blogs - The Open-Source Memory Layer for AI Agents"
og_description: "MemMachine is the open-source memory layer for advanced AI agents, enabling them to learn, remember, and adapt. Build personalized, context-aware applications that store long-term conversational memory and user preferences."
og_url: "https://memmachine.ai/"
og_type: "blog"
og_site_name: "MemMachine"
og_image: "https://memmachine.ai/img/logo.png"
og_image_alt: "MemMachine AI Logo"

# Twitter Card Metadata
twitter_card: "summary_large_image"
#twitter_site: "@memmachineai"
twitter_title: "MemMachine Blogs - Open-Source Memory for AI"
twitter_description: "Build advanced, personalized AI agents that remember. MemMachine is the open-source memory layer that enables long-term memory and learning for any LLM."
twitter_image: "https://memmachine.ai/img/logo.png"
twitter_image_alt: "MemMachine AI Logo"

# Structured Data (JSON-LD)
schema_ld: |
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "MemMachine",
"url": "https://memmachine.ai/",
"logo": "https://memmachine.ai/img/logo.png",
"sameAs": [
"https://github.com/MemMachine/MemMachine",
]
}
---

Welcome to the MemMachine blog, your essential resource for building with the next generation of AI memory. Here you'll find product announcements, in-depth technical guides, and news from the forefront of open-source agent development.
2 changes: 2 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ categories = 'categories'
tags = 'tags'

[params]
description = "MemMachine is an open-source memory layer for advanced AI agents. It enables AI to learn, store, and recall data and preferences from past interactions, creating sophisticated, personalized user profiles."

# Your Google Analytics ID (e.g., "G-XXXXXXXXXX")
googleAnalytics = "G-166982145"

Expand Down
3 changes: 3 additions & 0 deletions themes/memmachine/layouts/_partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
{{ partialCached "head/css.html" . }}
{{ partialCached "head/js.html" . }}
<!-- SEO Metadata -->
{{ partial "head/seo-metadata.html" . }}
<!-- Analytics -->
{{ partial "head/analytics.html" . }}
25 changes: 25 additions & 0 deletions themes/memmachine/layouts/_partials/head/seo-metadata.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
<meta name="robots" content="index, follow">
<link rel="canonical" href="{{ .Permalink }}">

<!-- Open Graph / Facebook -->
<meta property="og:title" content="{{ with .Params.og_title }}{{ . }}{{ else }}{{ with .Title }}{{ . }}{{ end }}{{ end }}">
<meta property="og:description" content="{{ with .Params.og_description }}{{ . }}{{ else }}{{ with .Params.description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}">
<meta property="og:url" content="{{ .Permalink }}">
<meta property="og:site_name" content="{{ site.Title }}">
<meta property="og:type" content="website">
{{ with .Params.og_image }}<meta property="og:image" content="{{ . | absURL }}">{{ end }}

<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="{{ with .Site.Params.twitter_handle }}{{ . }}{{ end }}">
<meta name="twitter:title" content="{{ with .Params.twitter_title }}{{ . }}{{ else }}{{ with .Title }}{{ . }}{{ end }}{{ end }}">
<meta name="twitter:description" content="{{ with .Params.twitter_description }}{{ . }}{{ else }}{{ with .Params.description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}">
{{ with .Params.twitter_image }}<meta name="twitter:image" content="{{ . | absURL }}">{{ end }}
<meta name="viewport" content="width=device-width, initial-scale=1.0">

{{ if .Params.schema_ld }}
<script type="application/ld+json">
{{ .Params.schema_ld | safeJS }}
</script>
{{ end }}