You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2025-11-25-gofai.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
title: "Good Old-Fashioned AI: The Secret Ingredient in a Modern Voice Assistant"
3
3
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."
# 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
44
44
45
45
---
46
46
47
-
### Numerical Mastery — `ovos-number-parser`
47
+
### Numerical Mastery — ovos-number-parser
48
48
49
49
Parsing numbers is deceptively complex. Humans use digits, words (“twenty”), ordinals (“first”), and fractions (“half”), often mixing them fluidly.
50
50
[`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
53
53
54
54
---
55
55
56
-
### Temporal Precision — `ovos-date-parser`
56
+
### Temporal Precision — ovos-date-parser
57
57
58
58
Time is contextual: “tomorrow at noon” means nothing without a reference point.
59
59
[`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.
60
60
61
61
---
62
62
63
-
### Identifying the Spectrum — `ovos-color-parser`
63
+
### Identifying the Spectrum — ovos-color-parser
64
64
65
65
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.
66
66
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
69
69
70
70
---
71
71
72
-
### The Language Linchpin — `ovos-lang-parser`
72
+
### The Language Linchpin — ovos-lang-parser
73
73
74
74
The [`ovos-lang-parser`](https://github.com/OpenVoiceOS/ovos-lang-parser) extracts language references from user commands, for instance, turning
75
75
“How do I say ‘hello’ in French?” → `"French" → "fr"` (BCP-47 code).
0 commit comments