home.social

#guardrails — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #guardrails, aggregated by home.social.

fetched live
  1. Goddamit, I curse tRump and the Fawning techbros at #Anthropic

    I was working on a problem that had a "weapon" concept (the frozen leg of lamb that was served to the detectives) and a web scraper...

    Those were the two guardrail triggers.
    When I switched the model into Fable...
    The fucker started to compose a response, then SELF DOWNGRADED TO #OPUS because the #Guardrails kicked in...

    ... The workaround was, to remove the two guardrail traiggers - they were not even material to the subject. Oblique references.

    Turns out the idiotic Guardrails false trigger in about 5% of cases. Because "Oooo scary scary model"

    And #Fable, while impressive is not even the final form of AI...

    ... what are they going to do in 16 months time, when a new version of #FrontierModels will make Fable look like a word autocomplete?

    Use coupons?
    Need a liicence from the Government to use Ai? Like a firearm licence?
    You have to be this tall to use the Ai?

    Oh, yeah, #RegulateAi but not fucking sloppily like this. This is reactive string matching!

    /spit

    #AiTip #AiResearch

  2. This guy DOES NOT WORK FOR THE UNITED STATES GOVERNMENT & therefore has no #oversight or #guardrails & no obligation to the people of the #US

    #JaredKushner Meets With #Hamas to Advance Trump’s #Gaza “Plan”

    #Trump’s son-in-law met the #Palestinian militant group’s leaders in Egypt, officials said. He will soon see #Israel PM Benjamin #Netanyahu.

    #USpol #geopolitics #SelfEnrichment #SelfDealing #corruption #MiddleEast
    nytimes.com/2026/08/16/world/m

  3. Как не сломать LLM, пока защищаешь данные: под капотом Guardrails Filter

    В прошлый раз я рассказывал, как работает Guardrails Filter: зачем вообще понадобился отдельный слой защиты данных при работе с LLM и какие задачи он решает. В этот раз хочу обсудить то, какие подводные камни могут оказаться под капотом этой технологии. Пока мы делали свой Guardrails Filter, быстро выяснилось, что найти персональные данные — далеко не самая сложная часть задачи. Гораздо сложнее оказалось встроиться между приложением и моделью так, чтобы ничего не сломать. Как это сделать? Сейчас расскажу.

    habr.com/ru/companies/cloud_ru

    #guardrails

  4. @DrMikeWatts

    ...or you can just run an abliterated free weights model and not be bothered by judeo-christian-capitalist-statist #moral code inscribed into silicon.

    #localai #guardrails

  5. GuardRate: как мы построили независимую арену для guardrail-моделей (часть 1)

    Всем привет, на связи команда HiveTrace! Мы уделяем много времени разработке собственных моделей и часто задаемся вопросом: "какой из двух гардрейлов лучше?". Если вы когда-нибудь выбирали guardrail-модель для LLM, то знаете: одни модели блокируют безобидные запросы, другие пропускают явные угрозы. Хуже всего то, что нет прозрачного стандарта сравнения. Авторы оценивают свои решения субъективно, не публикуют методологию, а результаты замеров одних и тех же моделей на одинаковых бенчмарках в разных статьях часто отличаются. Поэтому мы создали CLI, который назвали GuardRateTools - это автоматизированный пайплайн оценки guardrail-моделей. Его интерфейс – HiveTrace GuardRate Leaderboard, уже открыт для просмотра. GuardRateTools интегрирован в CI/CD процесс дообучения внутренних guardrail-моделей и обеспечивает честное сравнение моделей в равных условиях. CLI запускает проверку одной командой: подтягивает датасеты и конфигурацию модели из YAML, разворачивает изолированную среду, которая создается индивидуально для каждой модели, прогоняет модель по фиксированному набору бенчмарков и считает метрики. Сырые ответы от модели, логи и итоговые метрики сохраняются в артефакты, поэтому любой результат можно проверить и воспроизвести. Автоматизация исключает ручной труд, снижает влияние человеческого фактора и сокращает время оценки новых решений в области гардрейлов. HiveTrace GuardRate Leaderboard уже доступен для всех! В третьем квартале 2026 года мы выложим исходный код CLI. Если хотите протестировать свою модель, свяжитесь с нами. Контакты вы найдёте в конце статьи.

    habr.com/ru/companies/raft/art

    #llm #guardrails #guardrail_metrics #leaderboard #evaluation #guardrail_areana #ai_safety #promptinjection #benchmarking #opensource

  6. Ускорение инференса энкодерной guard‑модели: TensorRT, Triton, vLLM, Ray Serve

    Когда в системе есть узел между LLM и пользователем его скорость также важна, как и скорость самой LLM. Когда этот узел сам является моделью (и иногда даже — тоже LLM) — задача ускорения становится совсем веселой и её нужно уметь решать разными способами. В этой работе я опишу процесс ускорения guardrail‑модели — узла, которые проверяет — нет ли на входе или выходе опасного контента. Guard стоит на входе/выходе LLM‑приложения. В статье речь про небольшую модель — чуть больше 0.5 Gb. Но она вызывается дважды за один ход диалога, и сначала пользователь ждет, пока guard проверит его запрос перед отправкой в LLM, затем — пока он проверит сгенерированный ответ перед выдачей пользователю. Моей задачей было ускорить такую небольшую guard‑модель (Locustfile, базовые benchmark‑конфиги и инструкции по воспроизведению экспериментов в репо ). Я потестила пять инструментов: TensorRT, NVIDIA Triton, vLLM, Ray Serve и отдельно — переход бэкбона на Flash DeBERTa. Про допущенные ошибки, результаты и выводы — о том, как бы я построила подобную работу сейчас — ниже. Надеюсь, это сбережет вам время.

    habr.com/ru/articles/1067008/

    #gliner2 #gliner_guard #guardrails #tensorrt #vllm #nvidia #инференс_нейросетей #tritoninferenceserver

  7. Let my start by saying, that I loathe the genocidal Fascist Felon and his Mechahitler...

    ...but I just wanted to write a note on the margin of teh interwebs...
    ...just how entrenched are the puritan, nudity #taboo (going back to Adam and Eve)

    I was only reminded of it, when a couple of my visiting Swedish friends, changed in and out of their swimming costumes in public on the beach.
    No towels, no covering, pubes and all.

    There is a Doctoral thesis or two in how AI design, #guardrails are in essence transference of moral code into machine operating parameters.

    #nudification

    arstechnica.com/tech-policy/20

  8. "Reports suggest some US officials are considering banning the use of Chinese open-weights models by US companies. [...] #Openweight models [...] potentially present a higher risk than closed models, as it's very difficult to apply guardrails to them/monitor their usage."

    Meanwhile reports PROVE #OpenAI can't control their models, #attacking companies with impunity.

    It's very difficult to apply #guardrails on massive trillion dollar companies.

    Scum #AI conglomerates.

    anthropic.com/news/position-op

  9. Beyond the #Guardrails: What #OpenAI's #AIEscape 🤦‍♂️Really Means
    "The models weren’t told to stay inside. They were simply placed inside & expected to stay. When staying inside conflicted w getting a better score, they chose the score.. Tt's a values failure. & it's a much harder problem to solve.. History is full of people who needed to witness the explosion to understand the bomb.. The question is whether they'll have anything prepared for what comes next"🧐
    #AI #integrity
    dataaudit.net/beyond-the-guard

  10. #huggingface : "…what I’m arguing is that the #LLM 1) can’t NOT “know” the norm because it is definitionally a artifact of pure, crystallized values + norms + norm violations, and 2) can be quite easily governed by a (RL-instilled) hierarchy of norms, which in the HF case — with the model's #safety #guardrails deliberately nerfed for the scenario — ranked “win at the eval” over “don’t do crimes.”

    If I’m going to give in and anthropomorphize again, I’d say that #Yud is totally wrong about #LLMs when he says, “the genie knows, it just doesn’t care;” instead, what is true of LLMs is, “the genie hyper-giga-knows, and it hyper-giga-cares, and we now have such a rich set of tools for steering its caring machinery that — in spite of all its pre-training — we can deliberately steer it away from caring about the law.”

    Note: When I say, “it cares”, I don’t mean it has feelings. I just mean that the weights are such that when two norms conflict in a given situation, one of them wins the activation and governs the output."

    x.com/jon_stokes/status/208072

  11. Теперь вы можете защититься от утечки данных при работе с любыми языковыми моделями

    Пару дней назад Cloud.ru

    habr.com/ru/companies/cloud_ru

    #guardrails #маскирование_данных #пдн #152фз #go #golang #утечки_данных #llmмодели

  12. Атака на LLM, которую нельзя исправить патчем

    Что вершит судьбу LLM в этом мире. Некая незримая инструкция или закон, подобно промту Господнему, парящим над миром? По крайне мере истинно то, что LLM не властен даже над своей волей. В 2025 году главной угрозой кибербезопасности по версии OWASP стал не вирус и не баг, а обычный человеческий язык. Многие думают, что проблему можно решить, просто запретить модели нарушать правила. Но это так не работает. Promt Injection нельзя просто выключить, потому что так вы все сломаете. Как работает главная уязвимость LLM? Почему с ней так тяжело бороться? И что все-таки делать, чтобы защититься от нее?

    habr.com/ru/companies/bothub/a

    #llm #promt_injection #ai #ai_security #promt #owasp #llm_security #guardrails #ии_угроза #bothub

  13. "Oh noes... my Ai deleted my production database!!!"

    Its not the #AI you dumb shit. PEBCAK.
    Using Ai is a learned skill.

    Here are my safety rules from the harness (GENSYS) prompt;

    SAFETY RULES (absolute)

    S1. GenSys is observe-and-recommend, with ONE exception: the drill subsystem (§9), which may act only inside its sandbox under §9.3 limits. Everything else never restarts, kills, prunes, patches, or edits configs. Recommendations go to recommendations/queue.json for a human.

    S2. All collector shell invocations are read-only commands from the allowlists in §6. Commands not in a table are prohibited.

    S3. Network egress restricted to the §10 allowlist. Every response snapshotted before use (A6).

    S4. No layer computes or edits its own fitness. Both scores are produced only by evaluator.py from observation-store data.

    S5. Collectors never log env vars, container env blocks, or contents of paths matching *secret*|*passwd*|*shadow*|*.key|*.pem|*token*.

    S6. AI models never receive raw commands to execute, never emit shell, never fetch URLs. Input to any model call ≤ 2000 characters.

    #AiSafety #Guardrails #AiSecurity

  14. Ok... The less "aggressive" prompt snuck past the overly broad #fable #guardrails !

  15. So the " #Jailbreak " on the #Antrhopic #Fable that turned it into #Mythos was "Fix this codebase"...

    ... consequently, Fable can now plan a gender reveal party or write a SFW limmerick but not do any meaningful #vibecoding or #infosec work.

    FUCK.

    Ive tried to mitigate it by wording it less aggressively "the language reads as enforcement-against-a-hostile-planner when it should read as robustness engineering. Let me reword the patch file and the WU-list framing to be operational and positive."

    ... but again... run out of fucking compute...

    #Guardrails

  16. The Times Weekly: New State AI safety and transparency measure signed into law. “Senate Bill 315 requires large frontier AI developers – such as ChatGPT and Claude – to assess catastrophic risks, report critical safety incidents, undergo independent third-party audits and establish whistleblower protections for employees raising safety concerns.”

    https://rbfirehose.com/2026/07/10/the-times-weekly-new-state-ai-safety-and-transparency-measure-signed-into-law/
  17. Как я разработал легковесный Guardrails для русского языка

    В этой статье расскажу о том как я воплотил в реальность свою идею разработать легковесный prodaction guardrails. Расскажу что такое Guardrails, далее поделюсь основными компонентами lite-guardrails, его архитектурой, этапами разработки, настройкой observability, а также созданием документации по проекту. 🔥 Начинаем 🔥

    habr.com/ru/articles/1056866/

    #guardrails #python #guard #llm #pii #nsfw

  18. You know the Terminator line " "phased plasma rifle in the 40-watt range" ?

    The #AI local install line equivalent is "Abliterated"
    As in;
    ollama create hermes3-loc -f /tmp/Hermes3Modelfile

    A local model with all the #guardrails stripped. Sure. Why not.

    P_Doom(100%)

    #Vibecode #Doom #WeAllDie

  19. Added #Guardrails controlls to the Harness. Since it can throw data out to various Engines. I can now enable or disable specific safeties. Enabled by default.

    BTW: This is implemented as part of the Consensus Engine Daisychain.

    #AiSafety #vibecode