Skip to content

Commit eb70a68

Browse files
authored
Update 2025-11-25-gofai.md
1 parent 28ac316 commit eb70a68

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

_posts/2025-11-25-gofai.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: "Good Old-Fashioned AI: The Secret Ingredient in a Modern Voice Assistant"
33
excerpt: "In an era dominated by probabilistic giants like Large Language Models (LLMs), it might seem counterintuitive to advocate for a more traditional approach to Artificial Intelligence."
4-
coverImage: "/assets/blog/gofai/thumb.png"
4+
coverImage: "/assets/blog/gofai/thumb.jpg"
55
date: "2025-11-25T00:00:00.000Z"
66
author:
77
name: JarbasAl
88
picture: "https://avatars.githubusercontent.com/u/33701864"
99
ogImage:
10-
url: "/assets/blog/gofai/thumb.png"
10+
url: "/assets/blog/gofai/thumb.jpg"
1111
---
1212

1313
# Good Old-Fashioned AI: The Secret Ingredient in a Modern Voice Assistant
@@ -44,7 +44,7 @@ Within OVOS, these parsers aren’t used for broad Named Entity Recognition (NER
4444

4545
---
4646

47-
### Numerical Mastery — `ovos-number-parser`
47+
### Numerical Mastery — ovos-number-parser
4848

4949
Parsing numbers is deceptively complex. Humans use digits, words (“twenty”), ordinals (“first”), and fractions (“half”), often mixing them fluidly.
5050
[`ovos-number-parser`](https://github.com/OpenVoiceOS/ovos-number-parser) handles these with meticulous, multilingual rule sets to produce exact numeric values.
@@ -53,14 +53,14 @@ This matters more than it seems: even “one billion” means different things a
5353

5454
---
5555

56-
### Temporal Precision — `ovos-date-parser`
56+
### Temporal Precision — ovos-date-parser
5757

5858
Time is contextual: “tomorrow at noon” means nothing without a reference point.
5959
[`ovos-date-parser`](https://github.com/OpenVoiceOS/ovos-date-parser) converts these human phrases into exact `datetime` objects, handling relative expressions like “three days ago” or “next Friday” with surgical precision.
6060

6161
---
6262

63-
### Identifying the Spectrum — `ovos-color-parser`
63+
### Identifying the Spectrum — ovos-color-parser
6464

6565
For tasks like setting smart light colors or adjusting UI themes, [`ovos-color-parser`](https://github.com/OpenVoiceOS/ovos-color-parser) maps natural language directly to color values.
6666
It recognizes everything from “dark goldenrod” to RGB notation using explicit syntax rules and lookup tables.
@@ -69,7 +69,7 @@ This is a textbook GOFAI application: a deterministic, low-latency parser that a
6969

7070
---
7171

72-
### The Language Linchpin — `ovos-lang-parser`
72+
### The Language Linchpin — ovos-lang-parser
7373

7474
The [`ovos-lang-parser`](https://github.com/OpenVoiceOS/ovos-lang-parser) extracts language references from user commands, for instance, turning
7575
“How do I say ‘hello’ in French?” → `"French" → "fr"` (BCP-47 code).

0 commit comments

Comments
 (0)