Knowledge, notes, memory and skills, and a harness to make them used
Four places a model can reach for, differing in who writes a record and how it gets in front of the model. **Knowledge** is uploaded by a person and searched by the model. It goes through `services/files.py:prepare` — the same pipeline as a chat attachment — so the same PDF produces the same text whichever way it arrived, and `Document` carries the same content columns as `Attachment` for the same reason. **Notes** are written by the model and edited by you. Too long to inject, so they are searched. **Memory** is short facts, and every one of them goes into every request. That single decision is where the rest of its design comes from: records are capped short, the block has a budget, there is no search tool because the model is already looking at them, and they are not shareable — a record about a person is not content to hand round. **Skills** are saved procedures. Only the name and description are injected; the body is fetched when the model decides one applies, which is what makes a hundred skills affordable. A model may write and revise its own — the safety story is not a gate but a record: every revision is kept, attributed and revertible. A model that has just read a hostile page can save a skill that outlives the conversation, and the honest mitigation is that it is visible and undoable rather than that it was prevented. **The harness** is why any of it gets used. A model handed a tools array ignores it and answers from recall, because nothing in the request suggests otherwise. `services/harness.py` assembles a preamble from what this chat actually has: when to reach for each tool, the memories, the skill index. This is an exception to "system prompts are precedence, not concatenation", and a deliberate one. That rule governs the three *authored* layers and is untouched — exactly one still wins. The harness is a different axis: it describes the machinery rather than the behaviour, nobody authored it, and there is nothing for it to disagree with. It is prepended to whichever authored prompt won, in one system message, since several endpoints reject a second. Supporting changes: - **Sharing**, in one helper. `visible_to()` is the only definition of who can see a library item and every listing and tool goes through it. Sharing grants *reading*; two people editing one note with no history and no merge is worse than copying it. **Administrators do not bypass this** — they bypass permissions elsewhere because an admin can grant themselves those anyway, but reading somebody's private notes is a different act. - **FTS5**, created by `db/migrations.py:ensure_fts` with the triggers an external-content index needs. Idempotent, like the column sync beside it. Terms are ANDed and then ORed: the caller is usually a model writing a whole question, and requiring every word loses the match on one absent term. - **The attach button is a menu** — file, image, a web page, or a document from the library. Attaching a document copies it, because history must not change when a document is edited later. - **A URL fetcher with an SSRF guard.** This server can reach the router, the other services on the box and LLeMbas itself, and the address can come from a model. Private ranges are refused *after resolution* and redirects are followed by hand so every hop is checked. An admin can open it deliberately. - **Model capabilities split** into protocol support and a toggle per built-in tool. Rows predating the split have no `tool_*` keys, and absent counts as on when `tools` is on — otherwise an upgrade silently takes web search away from every model already configured for it. Also fixes the test fixture, which built the schema with `create_all` and so ran against a database without the FTS tables production has; it now runs `sync_schema`, the same path startup takes. 430 tests, ruff clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,194 @@
|
||||
"""Fetching a web page, and refusing to fetch the wrong ones.
|
||||
|
||||
The refusals are the important half. This runs on a server that can reach the
|
||||
router, the other services on the box, and LLeMbas itself — and the URL can come
|
||||
from a model, which can be talked into things by a page it just read.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import httpx
|
||||
import pytest
|
||||
|
||||
from lembas.services.fetch import FetchError, check_url, fetch, html_to_text
|
||||
|
||||
|
||||
# --- What is refused ---------------------------------------------------------
|
||||
@pytest.mark.parametrize(
|
||||
"url",
|
||||
[
|
||||
"http://127.0.0.1:8080/admin", # LLeMbas itself
|
||||
"http://localhost/", # the same, by name
|
||||
"http://10.0.0.1/", # the network the server is on
|
||||
"http://192.168.1.1/", # a router
|
||||
"http://172.16.5.4/",
|
||||
"http://169.254.169.254/latest/meta-data/", # cloud metadata, i.e. credentials
|
||||
"http://[::1]/",
|
||||
"http://0.0.0.0/",
|
||||
],
|
||||
)
|
||||
def test_private_addresses_are_refused(url):
|
||||
with pytest.raises(FetchError, match="private or local"):
|
||||
check_url(url)
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"url", ["file:///etc/passwd", "ftp://host/x", "gopher://host/", "javascript:alert(1)"]
|
||||
)
|
||||
def test_only_http_and_https(url):
|
||||
with pytest.raises(FetchError, match="http"):
|
||||
check_url(url)
|
||||
|
||||
|
||||
def test_a_url_with_no_host_is_refused():
|
||||
with pytest.raises(FetchError):
|
||||
check_url("http:///nothing")
|
||||
|
||||
|
||||
def test_the_check_is_on_the_resolved_address(monkeypatch):
|
||||
"""A hostname pointing at 127.0.0.1 is the obvious way past a check that
|
||||
only reads the text of the URL."""
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket, "getaddrinfo", lambda *a, **k: [(2, 1, 6, "", ("127.0.0.1", 80))]
|
||||
)
|
||||
with pytest.raises(FetchError, match="private or local"):
|
||||
check_url("http://sneaky.example.com/")
|
||||
|
||||
|
||||
def test_one_private_address_among_several_is_still_refused(monkeypatch):
|
||||
"""A name resolving to one public and one private address must not be
|
||||
usable to reach the private one."""
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket,
|
||||
"getaddrinfo",
|
||||
lambda *a, **k: [(2, 1, 6, "", ("93.184.216.34", 80)), (2, 1, 6, "", ("10.0.0.1", 80))],
|
||||
)
|
||||
with pytest.raises(FetchError, match="private or local"):
|
||||
check_url("http://mixed.example.com/")
|
||||
|
||||
|
||||
def test_an_administrator_can_open_it_deliberately():
|
||||
assert check_url("http://127.0.0.1:8080/", allow_private=True)
|
||||
|
||||
|
||||
def test_a_public_address_passes(monkeypatch):
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket, "getaddrinfo", lambda *a, **k: [(2, 1, 6, "", ("93.184.216.34", 80))]
|
||||
)
|
||||
assert check_url("https://example.com/x") == "https://example.com/x"
|
||||
|
||||
|
||||
# --- Redirects ---------------------------------------------------------------
|
||||
async def test_a_redirect_to_a_private_address_is_refused(mock_http, monkeypatch):
|
||||
"""httpx's own following would validate the first address and then happily
|
||||
land on localhost, which is why redirects are followed by hand."""
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket,
|
||||
"getaddrinfo",
|
||||
lambda host, *a, **k: [(2, 1, 6, "", ("93.184.216.34", 80))]
|
||||
if host == "example.com"
|
||||
else [(2, 1, 6, "", ("127.0.0.1", 80))],
|
||||
)
|
||||
mock_http(
|
||||
lambda _r: httpx.Response(302, headers={"location": "http://127.0.0.1:8080/admin"})
|
||||
)
|
||||
with pytest.raises(FetchError, match="private or local"):
|
||||
await fetch("https://example.com/")
|
||||
|
||||
|
||||
async def test_endless_redirects_end(mock_http, monkeypatch):
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket, "getaddrinfo", lambda *a, **k: [(2, 1, 6, "", ("93.184.216.34", 80))]
|
||||
)
|
||||
mock_http(lambda r: httpx.Response(302, headers={"location": str(r.url)}))
|
||||
with pytest.raises(FetchError, match="redirected too many"):
|
||||
await fetch("https://example.com/")
|
||||
|
||||
|
||||
# --- Reducing a page ---------------------------------------------------------
|
||||
def test_script_and_style_are_dropped():
|
||||
_, text = html_to_text(
|
||||
"<html><body><script>alert(1)</script><style>p{}</style><p>Real text.</p></body></html>"
|
||||
)
|
||||
assert text == "Real text."
|
||||
|
||||
|
||||
def test_the_title_is_taken_and_not_repeated_in_the_body():
|
||||
title, text = html_to_text(
|
||||
"<html><head><title> A Page </title></head><body><p>Body.</p></body></html>"
|
||||
)
|
||||
assert title == "A Page"
|
||||
assert text == "Body."
|
||||
|
||||
|
||||
def test_block_tags_become_line_breaks():
|
||||
"""Without this the whole page arrives as one paragraph."""
|
||||
_, text = html_to_text("<p>One</p><p>Two</p><li>Three</li>")
|
||||
assert text.splitlines() == ["One", "Two", "Three"]
|
||||
|
||||
|
||||
def test_entities_are_unescaped():
|
||||
_, text = html_to_text("<p>Salt & pepper, 5 > 3</p>")
|
||||
assert text == "Salt & pepper, 5 > 3"
|
||||
|
||||
|
||||
# --- Fetching ----------------------------------------------------------------
|
||||
async def test_a_page_is_reduced_to_text(mock_http, monkeypatch):
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket, "getaddrinfo", lambda *a, **k: [(2, 1, 6, "", ("93.184.216.34", 80))]
|
||||
)
|
||||
mock_http(
|
||||
lambda _r: httpx.Response(
|
||||
200,
|
||||
headers={"content-type": "text/html"},
|
||||
text=(
|
||||
"<html><head><title>Mallorn</title></head>"
|
||||
"<body><p>A golden tree.</p></body></html>"
|
||||
),
|
||||
)
|
||||
)
|
||||
page = await fetch("https://example.com/mallorn")
|
||||
assert page.title == "Mallorn"
|
||||
assert page.text == "A golden tree."
|
||||
|
||||
|
||||
async def test_a_binary_response_is_refused_with_advice(mock_http, monkeypatch):
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket, "getaddrinfo", lambda *a, **k: [(2, 1, 6, "", ("93.184.216.34", 80))]
|
||||
)
|
||||
mock_http(
|
||||
lambda _r: httpx.Response(200, headers={"content-type": "image/png"}, content=b"\x89PNG")
|
||||
)
|
||||
with pytest.raises(FetchError, match="Attach it as a file"):
|
||||
await fetch("https://example.com/x.png")
|
||||
|
||||
|
||||
async def test_a_page_with_no_readable_text_says_so(mock_http, monkeypatch):
|
||||
import socket
|
||||
|
||||
monkeypatch.setattr(
|
||||
socket, "getaddrinfo", lambda *a, **k: [(2, 1, 6, "", ("93.184.216.34", 80))]
|
||||
)
|
||||
mock_http(
|
||||
lambda _r: httpx.Response(
|
||||
200,
|
||||
headers={"content-type": "text/html"},
|
||||
text="<html><body><div id=app></div></body></html>",
|
||||
)
|
||||
)
|
||||
with pytest.raises(FetchError, match="JavaScript"):
|
||||
await fetch("https://example.com/")
|
||||
Reference in New Issue
Block a user