fix(tests): add endpoint URLs to remaining session fixtures

This commit is contained in:
Alexandre Teixeira
2026-06-04 03:14:43 +01:00
committed by GitHub
parent eac354629a
commit be8f1fac85
2 changed files with 9 additions and 1 deletions

View File

@@ -45,6 +45,7 @@ def _make_session(sid, owner="alice"):
db = _TS()
try:
db.add(DbSession(id=sid, owner=owner, name="chat", model="gpt-4o",
endpoint_url="http://localhost:11434",
archived=False, message_count=1))
db.commit()
finally: