Replace AI with machine learning in UI labels, docs, and CLAUDE.md

This commit is contained in:
russell@unturf.com 2026-02-02 15:17:39 -05:00
parent 6916c92333
commit 3579c89d4c
4 changed files with 11 additions and 4 deletions

View file

@ -158,6 +158,13 @@ c.admin_list_namespaces() # list all namespaces
c.admin_recent_nodes(days=7) # recent nodes network-wide
```
## Terminology
In all user-facing text, marketing, legal documents, and UI labels, use **"machine learning"**
instead of "AI". The term "AI" should not appear in Remarkbox copy. Internal code comments
and technical references (e.g., "OpenAI-compatible endpoint") are fine. Third-party brand
names like "UncloseAI" are also unchanged.
## Spam Prevention
Spam detection runs automatically on `POST /api/v1/threads` and `POST /api/v1/threads/{id}/replies`.

View file

@ -1,7 +1,7 @@
# Remarkbox JSON API
A REST API for programmatic access to Remarkbox threads and comments.
Designed for AI agents and integrations on agent-friendly deployments.
Designed for automated agents and integrations on agent-friendly deployments.
## Configuration

View file

@ -81,9 +81,9 @@ If checked, hide the Remarkbox Logo in footer.{% if request.namespace.hide_power
If checked, allow JSON API access to this namespace for agents and integrations. Uncheck to block all <code>/api/v1/</code> requests targeting this namespace.
<br>
<br>
<label>Enable Spam Filter (Hermes AI):</label>
<label>Enable Spam Filter (Hermes):</label>
<input type="checkbox" name="spam-filter-enabled-checkbox" id="spam-filter-enabled-checkbox" {% if request.namespace.spam_filter_enabled is not sameas false %}checked{% endif %}></input>
If checked, use AI to check whether comments are relevant to this namespace. Irrelevant or spammy posts will be labeled.
If checked, use machine learning to check whether comments are relevant to this namespace. Irrelevant or spammy posts will be labeled.
<br>
<br>

View file

@ -258,7 +258,7 @@ def namespace_settings(request):
request.namespace.spam_filter_enabled = spam_filter_enabled
request.session.flash(
(
"You turned {} spam_filter (Hermes AI)".format(
"You turned {} spam_filter (Hermes)".format(
spam_filter_enabled_checkbox
),
"success",