Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/691c1dba-9228-800f-8463-13b3a9006306
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==== 1. Memory store β use SQLite + FAISS (local). Example simple pattern: - Keep memory table with timestamp, ingot_hash, synopsis, embedding_vector. - Compute embedding (sentence-transformers) for any session log you want to save. - Store embedding in FAISS and metadata in SQLite. ==== # Carousel ingot generator (Python snippet) <syntaxhighlight lang="python">import hashlib, json def carousel_ingot(lines, title="session"): joined = "\n".join(lines).encode('utf-8') digest = hashlib.sha256(joined).hexdigest()[:32] synopsis = lines[-3:] return {"title": title, "hash": digest, "synopsis": synopsis} </syntaxhighlight> # ZCP guard (policies.py snippet) <syntaxhighlight lang="python">def zcp_guard(fn): def wrapped(*args, **kwargs): result = fn(*args, **kwargs) assert isinstance(result, dict) # add checks β e.g. never claim actions, never return PII return result return wrapped </syntaxhighlight> # HPL Compiler / Runtime * Keep your hpl/ files as human-readable manifests. Use your compiler.py to compile to JSON. Have runtime.py read those manifests and run steps on local models. * Example: compiler.py β manifests/bridge_manifest.json β runtime.py executes steps via Python glue code calling the local LLM through the webui HTTP API or a direct python binding.
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)