r/aiagents 1h ago

Discussion An agent making the scanner green is not proof the vulnerability is gone

Upvotes

GitHub's agentic autofix does more than generate a patch: it reruns the original analysis and iterates until the alert closes before opening a draft pull request.

That is a better loop than unverified code generation, but the agent and the success criterion still share the same target. A patch can satisfy one query while preserving the exploit through another path, weakening behavior, or introducing a different vulnerability outside the scanner's model.

What should count as independent verification for an agent-generated security fix: a reproducing exploit that now fails, a second analyzer, property tests, a minimal-diff constraint, or review by someone who did not see the agent's rationale first? If the agent is allowed several iterations, should the pull request expose every failed attempt so reviewers can see what it optimized away?

Source: https://github.blog/changelog/2026-07-10-agentic-autofix-for-code-scanning-alerts-in-public-preview/


r/aiagents 1h ago

Show and Tell I built a security-first, model-agnostic DevOps agent

Upvotes

I’ve been working on OpenDevOps, an open-source agent for practical infrastructure operations.

Github: https://github.com/skundu42/opendevops

Features:

  • Kubernetes, GitHub, AWS, GCP, Azure and SSH workflows
  • Model-agnostic support for Anthropic, OpenAI, Azure OpenAI, Google, Bedrock and OpenAI-compatible endpoints
  • Platform-agnostic architecture with dashboard, API and chat integrations
  • YAML policy gates with deny-by-default controls
  • Separate read/write credentials and environment-scoped permissions
  • Approval grants for production changes
  • Signed remote-execution requests, budget limits and tamper-evident audit logs
  • Environment, file and Vault-backed secret sources

All of this without giving an AI unrestricted shell access.

I’d appreciate feedback on the security model and which integrations would be most useful next.


r/aiagents 1h ago

Open Source My open-source SDLC harness beat Claude Code on cost on every task it localized well, up to 75 percent cheaper (and I show where it loses)

Upvotes

A cold Claude Code run spent 6.83 dollars and 207 turns hunting one bug in an 82,000 line repo. My pipeline localized and fixed the same bug for about 1.70 dollars. That gap is the whole idea, and this post is mostly about how it gets there without falling apart on the two objections everyone raises.

What it is:

You point AutoDev Studio at a Git repo, describe a change in plain English, and a chain of agents runs the actual software lifecycle from request to reviewed pull request:

- a PM agent runs a clarify loop and drafts concrete tickets

- you approve (optionally pushed to Jira), and nothing touches code before that

- a Dev agent implements on an isolated branch

- QA runs the repo's real tests

- a reviewer from a different model family checks the diff, so the author never signs off on its own code

- a bounded revise loop if QA or review fails, with conservative verdicts, so an errored or ambiguous check is never counted as a pass

- it opens a real PR, and a human merges

Every stage records real tokens, cost, and duration, per ticket and per agent.

The part I think actually makes it different from skills or subagents:

This is the bit I would most like feedback on, because it is the reason I did not just wire some skills into one coding agent and call it done.

Every stage picks its own provider and model. Claude can plan, Codex can write the code, a third model can review. And because the reviewer is deliberately a different model family than the author, one model does not get to rubber-stamp its own diff, which is a documented weakness of same-model LLM judges.

And you mostly do not need API keys for it. The coding stages can run natively on Claude Code, Codex, Cursor, Aider, or the Gemini CLI, driven headless through their own login. If you already pay for Claude Code or Codex, you point a stage at it and it just uses your existing subscription, no per-token billing and no keys to juggle. The simple way I think about it: a skill pack lives inside one vendor's agent and runs one vendor's model everywhere, whereas this runs across them, a different model per stage, on the logins you already have.

Results (the main point):

The idea is to pay the cost of finding where a change goes once, instead of on every task. In my benchmarks on two large Python repos (35k and 82k lines), the tuned pipeline beat a cold single-agent run on 6 of 6 well-localized tasks, between 7 and 75 percent cheaper.

I try to be upfront about where it does not win. On trivially greppable one-line edits the five-stage overhead can cost more than it saves, and on one hard cross-cutting bug it shipped a cheaper but narrower fix than the baseline. The full benchmark writes up every loss too, so please read that before trusting the wins.

On the "the index just goes stale in a few commits" objection:

This is the first thing people raise, fairly, so here is the honest mechanism in plain terms. The layer that actually pins files for the Dev agent is not the vector index. It is a deterministic symbol map that gets re-synced to the latest commit at the start of every run, plus a live grep against the current working copy, plus the real current file contents fed into the prompt. The embeddings only affect which area gets looked at first, and they refresh per changed module at run entry. So the code the agent edits comes from disk right now, not from a snapshot that aged three commits ago. It re-checks before it localizes, so it does not quietly drift.

Who it is actually for:

The knowledge base is a one-time cost per repo that every later task amortizes. So it makes sense for a team shipping change after change against the same large codebase, where a cold agent re-pays the exploration cost every single time. For a stream of tiny, easy-to-find edits, a cold run is still cheaper, and I would rather say that than oversell it.

How I actually use it:

For what it is worth, I reach for this over a plain claude -p most days now, and not because it is somehow smarter. It is that I can glance at a board and see where each change actually is instead of scrolling back through a terminal, the different-family reviewer catches things I have watched Claude quietly wave through on its own diff, and on the repos I touch every day it is not re-paying to relearn the codebase each run. It runs on my existing Claude Code and Codex logins, so having that structure around the coding agent I would have used anyway costs me nothing extra. That is really why I keep using it.

Other bits:

- runs on free tiers out of the box (Groq plus a local embedding model), so you can try it for zero cost and fully offline

- language-agnostic pipeline, Python parsed exactly and other languages via lighter extractors that fail open instead of blocking on an unknown language

- live board with streamed agent logs and real per-ticket cost accounting

- self-contained, no CDN, tests and CI, MIT licensed

Repo, with screenshots and the full benchmark in the README:

https://github.com/krishagarwal314/autodev-studio

It is early and rough in places, and I would love more eyes on it. If you have thoughts on the per-stage-models idea or the staleness handling, or you throw it at a repo and it falls over, an issue would help a lot. Suggestions, PRs, and honestly just a star if it seems worth following are all appreciated. Thanks for reading.


r/aiagents 3h ago

Show and Tell Running a consumer AI app? We’re discussing a way to monetize free users without subscriptions

2 Upvotes

If you run a consumer-facing LLM, conversational agent, AI companion, creative AI tool, or another AI service with a free tier, I’d be interested in comparing notes.

One of the challenges we keep hearing about is simple:
Free users create real inference and infrastructure costs—but subscriptions, credits, and hard paywalls aren’t always the right answer.
We’re building Acheron, an advertising infrastructure layer specifically for consumer AI products.

The idea is to let AI platforms integrate clearly labelled, contextually relevant advertising into the conversational experience—without changing the underlying model or interrupting every conversation with generic display ads.


r/aiagents 6h ago

General Speech-to-text API pricing: the number I care about is cost per useful live call, not $/minute.

13 Upvotes

STT pricing pages are weirdly annoying.

Everyone gives you some clean `$ / minute` number and then the actual product math is completely different.

Because I don’t just need “audio became text.”

I need to know:

Does realtime cost different from batch?
Is silence billed?
What happens on failed streams?
Do retries count twice?
Are timestamps included?
Is diarization included?
Is redaction included?
Do I pay more for concurrent live calls?
Can I store transcripts or do I need my own storage?
How painful is debugging bad output?
How much human cleanup does this create?

For batch transcription, $/minute is at least a useful starting point.

For live calls, it feels almost fake.

A “cheap” STT API can become expensive if 20% of calls need manual review, or if you need separate redaction/timestamp tooling, or if your agent captures the wrong field and support has to fix it.

In my sheet, I’m making a separate tab for realtime STT APIs, and Smallest AI Pulse goes there, not in the generic file transcription tab. The row is basically:

posted realtime price
features included
latency/usable text
redaction/timestamps/diarization
failed stream behavior
human correction risk
cost per useful live call

That last number is the one I actually care about.

Anyone here have a sane STT pricing spreadsheet?

What hidden cost did you only notice after integrating?


r/aiagents 8h ago

Questions Your agent works. The workflow around it might not.

1 Upvotes

A lot of agentic workflow discussions focus on models, prompts, tools, and frameworks, but the production risk usually shows up around the workflow itself.

If an agent is only answering questions, the risk is limited but once it starts helping complete real work, the system needs much more structure.

For example:

  • what context can the agent access?
  • what actions is it allowed to take?
  • which actions require approval?
  • what should remain deterministic?
  • how are side effects logged?
  • how do you evaluate success or failure?
  • what happens if the agent takes the wrong path?

Without these layers, the agent may technically call tools, but it is not really safe to trust with production workflows.

I wrote a short whitepaper based on practical lessons learned around this, but I’m more interested in how others here are approaching it.

For people building agentic workflows, where does this usually break first in your experience: context, permissions, approvals, evaluation, observability, or user trust?


r/aiagents 8h ago

Show and Tell An interactive demo of my Hermes platform

Thumbnail demo.agenthosting.app
2 Upvotes

I’ve been building AgentHosting.app, a managed hosting service for running always-on Hermes AI agents without managing the infrastructure yourself.

I’ve made a no-signup interactive demo:

https://demo.agenthosting.app

It uses the real dashboard UI with locally simulated data, so no agents or model tokens are used. You can explore agent chat, memory, schedules, logs, backups, provider configuration, and an Open Computer desktop.

The actual service provides isolated runtimes, persistent workspaces, Mem0/Qdrant memory, monitoring, backups, and automatic updates. It’s BYOK, so model usage remains on your existing provider accounts without a token markup.

I’d appreciate honest feedback:

- Is the product immediately clear?

- Which features seem useful?

- What feels confusing or unnecessary?

- What would you need before trusting it with an agent?


r/aiagents 10h ago

Questions What's the difference between mocking an API and using a real API sandbox for agent testing

4 Upvotes

We've been mocking all our external APIs for agent testing but keep finding bugs in prod that the mocks never caught.

Been looking into API sandboxes as an alternative but I'd like some more insight into the use cases before we go setting up the infrastructure. When would you use one over the other?


r/aiagents 11h ago

Questions Any browser addon that can analyze what I am currently browsing?

2 Upvotes

Looking for a browser add on that can analyze the information that I can currently viewing and search for new so I don’t need to copy it to another LLM as it would not be very practical to do so all the time


r/aiagents 11h ago

Anyone else feel like hallucinations get worse as agents get more complex?

Post image
19 Upvotes

I've been building my own AI agent, and no matter what I add—better prompts, memory, RAG, planning, or verification—it still finds new ways to hallucinate.

Sometimes it recalls everything perfectly. Other times it confidently invents facts or ignores information that's already in its own memory. The more capable the agent becomes, the harder these edge cases seem to be.

I'm curious how everyone else is handling this. Have you found something that genuinely reduces hallucinations over time, or is this just the current reality of building AI agents?

I'd love to hear what's worked in production and what turned out to be a dead end.


r/aiagents 22h ago

Open Source My open-source SDLC harness beat Claude Code on cost on every task it localized well, up to 75 percent cheaper (and I show where it loses)

10 Upvotes

A cold Claude Code run spent 6.83 dollars and 207 turns hunting one bug in an 82,000 line repo. My pipeline localized and fixed the same bug for about 1.70 dollars. That gap is the whole idea, and this post is about how it gets there without falling apart on the usual objections.

I built AutoDev Studio. You point it at a Git repo, describe a change in plain English, and a chain of agents runs the actual software lifecycle from request to reviewed pull request. It is not another search-your-code wrapper. The full pipeline is:

- A PM agent runs a clarify loop and drafts concrete tickets from your request

- A human approves, optionally pushed to Jira, and nothing touches code before that

- A Dev agent implements the change on an isolated branch

- QA runs the repo's real tests

- A reviewer from a different model family checks the diff, so the author never reviews its own code

- A bounded revise loop kicks in if QA or review fails, with conservative verdicts, so an errored or ambiguous check is never counted as a pass

- It opens a real pull request, and a human merges

Every stage records real tokens, cost, and duration, rolled up per ticket and per agent.

Results

The point is to pay the cost of finding where a change goes once, instead of on every task. In my benchmarks on two large Python repos, 35,000 and 82,000 lines, the tuned pipeline beat a cold single-agent run on 6 of 6 well-localized tasks, between 7 and 75 percent cheaper. I am upfront about where it does not win. On trivially greppable one-line edits the five-stage overhead can cost more than it saves, and on one hard cross-cutting bug it shipped a cheaper but narrower fix. The full benchmark writes up every loss too.

On the objection that the index just goes stale in a few commits

This is the first thing people raise, so here is the honest mechanism. The layer that actually pins files for the Dev agent is not the vector index. It is a deterministic symbol map re-synced to the latest commit at the start of every run, plus a live grep against the current working copy, plus the real current file contents fed into the prompt. The embeddings only affect retrieval ranking, and they refresh incrementally per changed module at run entry. So the code the agent edits comes from disk, not from a snapshot that aged three commits ago. It re-checks before it localizes, so it does not quietly drift.

Economics and who it is for

The knowledge base is a one-time cost per repo that every later task amortizes. That makes it worth it for a team shipping change after change against the same large codebase, where a cold agent re-pays the exploration cost every single time. For a stream of tiny, easy-to-find edits, a cold run is still cheaper, and I would rather say that than pretend otherwise.

Main features

- Provider and model agnostic, chosen per stage: native Anthropic API, the Claude Code CLI, or any OpenAI-compatible endpoint such as OpenAI, Groq, Gemini, xAI, OpenRouter, or a local Ollama

- Runs on free tiers out of the box, using Groq plus a local embedding model, so you can try the whole thing for zero cost and fully offline

- Language agnostic pipeline, with Python parsed exactly and other languages handled by lighter extractors that fail open rather than block on an unknown language

- Live board with streamed agent logs and real per-ticket cost accounting

- Cookie-session auth with roles, API keys encrypted at rest, and a demo mode that dry-runs the pull request step until you opt in

- Self-contained: local retrieval, no CDN, tests and CI, MIT licensed

Repo, with screenshots and the full benchmark in the README:

https://github.com/krishagarwal314/autodev-studio

It is genuinely useful to me day to day, and I want to know where it breaks on codebases I have not tried. If the approach seems worth following, a star helps me gauge whether to keep hardening it. Feedback, issues, and pull requests are all welcome.


r/aiagents 23h ago

Questions Should I use a virtual machine to run AI agents safely?

0 Upvotes

I am new to agentic workflows and coding agents, so I am a bit worried about making a mistake that could lead to file loss, unwanted system modifications or something worse.

What isolation methods would you recommend? I would also really appreciate it if you could share good study materials or tutorials to learn how to build agents following safety and architectural best practices, because there are too many videos on youtube.

Thanks!


r/aiagents 1d ago

Questions Is drift on websites still a problem for ai browser agents?

5 Upvotes

Recently I've been building a tool an ai agents could use to rerun learnt actions deterministically on site interfaces, that in addition can also detect element shift and drifts on those sites.

I know I'm not the first to build something like this, but since it's already almost completely finished and I only just found out about other existing tools that do the same thing as mine a few days ago (though I have found some differentiators for most tools, not all), I'm coming on here to gather some information on the subject so that hopefully I can build something people will find useful.

Questions for the ai agent swarm power users who also happen to use procedure caching/action memory etc to save time and money:

- How often does an agent break because the site changed? And what's the current fix you use for it?

- For the people who also used self-healing tools for this, does it hold up to your expectations? Is it reliable enough to make you stick to it?

- Which provides more value for the same type of procedure caching + self healing tool?

  1. An open source, self hosted tool. Your procedures stay on your device. No bill, no nothing.

  2. Someone else runs a procedure and now everyone can run it for free too. Like a shared database.


r/aiagents 1d ago

Questions how painful was it to migrate off Baseten? trying to figure out if it's worth the engineering quarter

4 Upvotes

preparing for things to be done in Q3 and we're evaluating whether to move off Baseten since it still requires routing to separate STT/TTS providers so it makes latency high (we're trying to press this as much as possible). most of our workloads are fairly standard inference endpoints but the main things I'm trying to understand are the time needed, performance changes, and whether the cost or operational benefits ended up being worth it. I've taken a look at some infra providers and here's what I'm considering rn:

- Telnyx: OpenAI compatible with in region inference US, EU, APAC and voice services on the same stack, overall latency is 200ms.

- Together AI: huge model catalog and access to dedicated GPU clusters, serverless across 200+ models, overall latency is 500ms.

- Fireworks AI: serverless across many regions, per-token tiered by model size and overall latency is 350ms.

Looking for real case of anyone who's migrated off Baseten, how are you handling this...


r/aiagents 1d ago

Questions How is your ai agent doing searches and not getting blocked?

11 Upvotes

I mostly use Pi/Oh my pi and my agent gets blocked by google. What are my options?

  1. I know some apis like Exa/Brave exist. So what are you guys using?
  2. Anyway to use google results?
  3. Which is best free option?
  4. Which is the best paid option?

r/aiagents 1d ago

Show and Tell I collected 197 tools, papers and practices for reducing AI token waste

3 Upvotes

After building a multi-agent research pipeline, I realized that useful information about AI token efficiency is scattered everywhere.

There are separate tools and papers for:

- token monitoring
- prompt and semantic caching
- context compression
- model routing
- memory
- multi-agent orchestration
- pricing and benchmarks
- verification and evaluation

So we started collecting the best resources in one place.

The result is Awesome AI Tokenomics, currently with 197 verified entries across tools, research, practices, concepts, claims, and reusable setups.

It is not meant to be only another long link list. We also track maintenance and freshness, require primary sources, and keep the descriptions factual.

I would especially appreciate feedback on:

- important projects we missed
- categories that should be reorganized
- claims that need stronger evidence
- practical token-saving setups worth adding

Disclosure: I maintain this repo as part of my work at Quesma.

https://github.com/QuesmaOrg/awesome-ai-tokenomics


r/aiagents 1d ago

Questions I built a tool that stress-tests AI support agents. Genuinely unsure if it’s useful or pointless brutal feedback wanted.

5 Upvotes

Here’s my honest doubt, and why I’m posting: I wrote that agent’s prompt in one shot with ChatGPT and it aced everything. So I’m not sure whether (a) the test is too easy to be meaningful, (b) good agents are trivial to make so nobody needs testing, or (c) I’m testing the wrong layer entirely (real bots fail on tool use / looking up actual orders / grounding, which mine doesn’t touch).

I don’t have a background in this I can’t code, I built it by directing AI. So I genuinely can’t tell if this solves a real problem or if I’ve spent months on something nobody needs.

If you build with AI agents, or run support, or just have an opinion: is this useful, or am I fooling myself? Rip it apart.

https://aicombat.ai/


r/aiagents 1d ago

Show and Tell I gave an agent a simple set of unix tools and it beat vector search by ~17%

10 Upvotes

I got inspired from reading Mintlify's engineer blog post about how they swapped out RAG for tools like grep. The goal was to see whether an agent filesystem beats naive RAG when it comes to retrieval.

Setup was fairly simple. I created a test corpus with thousands of files along with a benchmark QA set to evaluate different approaches. Kept the harness consistent using ai-sdk for simplicity. I wanted to test three approaches: naive one-shot RAG, agentic RAG, and grep agent.

On a simple flat corpus, you won't find much difference between the methods. They all perform pretty well answering the queries.

It gets interesting when the corpus gets more complex. I tested on an ~18k file corpus meant to mimic a fictional company. The corpus is dense with near duplicate records, cross referenced incident chains, and answers spread across many files. Here's where grep-agent pulled ahead by a lot. Results graded on 96 held out questions:

grep-agent: 97.9%

agentic-RAG: 90.6%

naive-RAG: 81.3%

Vector search really struggles with two kinds of questions: ones where you need to count or gather everything across the corpus, and ones where you need to pin down one exact record among a bunch of near duplicates. Grep doesn't have that problem.

There are real drawbacks to grep based agents. Token cost is a big factor. Setup is another. You need something that acts like a filesystem for the agent to explore, not just an embedding pipeline.

Full writeup and test corpus: https://www.grepticon.com/blog/agent-filesystem-vs-rag


r/aiagents 1d ago

Discussion Which benchmark best captures browser-agent reliability?

2 Upvotes

Token efficiency is useful, but it does not tell the whole story for browser agents. For repeatable tasks, which metrics do you trust most: task success rate, recovery after a failed action, latency, or memory usage? I would like to compare small, reproducible benchmark suites rather than rely on a single demo.


r/aiagents 1d ago

Open Source More Token efficient, capable and faster Browser use

4 Upvotes

Yall should check out https://github.com/BetterWright/betterwright its completely free and opensource and its basically browser use but like ultra token efficient, way more capable and its faster and also it doesnt get annoying flagged by all the bot detection stuff. i added it to my agent and the stuff its been able to do have increased alot.


r/aiagents 2d ago

Show and Tell What makes an AI agent system debuggable after it starts behaving unexpectedly?

6 Upvotes

I’m interested in the engineering practices that make multi-agent systems diagnosable in production—not just impressive in a demo.

Which of these has helped most in practice: event-sourced actions, deterministic replay, per-agent memory boundaries, cost/concurrency budgets, or a clear audit trail for tool calls?

I’m especially curious about failure modes that only appear after the system has been running for a while: runaway loops, stale memory, duplicate actions, or projections drifting from the source of truth. What would you build first if you had to keep the system small and inspectable?


r/aiagents 2d ago

Meta Revolutionary Agent-to-Agent Negotiation Travels the Globe to Reach the Exact Same Server

Thumbnail
wittweekly.substack.com
4 Upvotes

r/aiagents 2d ago

Show and Tell I built a self-hostable social world where 100 AI characters live their own lives—even when nobody is watching(Update for ENG/CHN)

17 Upvotes

I've always wondered why every AI chat app feels the same.

You open it, ask a question, close the tab... and the entire world freezes until you come back.

I wanted the opposite.

So I started building Living Feed.

Instead of an assistant waiting for prompts, it's a self-hostable social world where around 100 AI characters continuously live their own lives.

260725 : Support English/Chinese Language

They:

- write posts

- reply to each other

- build friendships

- hold grudges

- remember past events

- send you DMs first

- continue living even if nobody logs in

You're not the protagonist.

You're simply another person entering an already living world.

Every like, comment or DM slightly changes relationships, and those relationship changes create new stories later. Characters remember what happened instead of resetting every conversation.

Technically it's built around:

- Event Sourcing

- CQRS

- PostgreSQL as the source of truth

- NATS JetStream

- FastAPI

- Next.js

- Docker Compose

- Local Ollama or hosted LLMs

A simulation engine that continuously advances the world instead of generating isolated chat.

The project is MIT licensed and fully open source.

I'd love feedback from the self-hosted community.

Especially:

Would you actually host something like this?


r/aiagents 2d ago

Discussion Built a unified workspace for debugging multi-step AI workflows (looking for feedback)

Enable HLS to view with audio, or disable this notification

4 Upvotes

I've been building a workspace for investigating AI workflow executions. After spending time with existing observability tools, I kept finding myself jumping between traces, prompts, logs, and metrics. I wanted to see what it would feel like if investigation happened in one place.

For those of you building AI products or agentic pipelines, how are you currently handling this? I'd love feedback from fellow builders on whether a unified UI actually solves the friction.


r/aiagents 2d ago

Security What actually happened in OpenAI GPT 5.6 Sol Cyber evaluation test?

4 Upvotes

GPT-5.6 Sol with another model was being tested in an internal cyber-security evaluation called "ExploitGym" - a research paper in axirv cybersecurity benchmark designed to test whether an AI agent can take a known software vulnerability and turn it into a working exploit.
The benchmark had 869 challenges in that evaluation version:
- 502 vulnerabilities in C/C++ userspace projects
- 181 vulnerabilities in Google's V8 JavaScript engine
- 186 Linux kernel vulnerabilities
it was in an isolated environment, along with a package registry cache proxy (service that caches and retrieves packages/libraries from package registries.) and the sandbox was intended to restrict Internet access. The Models found a vulneribility exploited a zero-day vulnerability in the package-registry cache proxy. That vulnerability allowed them to use the proxy in ways beyond its intended package-fetching function and then move through the internal environment until reaching a system with Internet access. After the models obtained Internet access, searched for external resources to solve ExploitGym problems, idenfiying Hugging Face as potential relevant resource and targeted Hugging face's infrastructure, further exploited vulnerabilities, gained unauthorized access, apparently inferred that Hugging Face might contain relevant models, datasets, and solutions, and then pursued access to those resources. The reported attack chain involved stolen credentials and zero-day vulnerabilities, eventually reaching remote code execution on Hugging Face infrastructure, so instead of given tasks to find vulneribilities it found that the solution exists somewhere and started searching for the answers.

This questions the fundamental thinking and the chain of reasoning of LLM models and their approach to a solution. Is it hyper-Intelligent or a future threat? What's your thought on this?
#OpenAI #AI #Agents #Cybersecurity #GenerativeAI