\n\n\n\n My 2026 Philosophy: What Being an "Agent" Truly Means - AgntZen \n

My 2026 Philosophy: What Being an “Agent” Truly Means

📖 10 min read1,886 wordsUpdated May 15, 2026

It’s 2026, and I’m still trying to figure out what it means to be an agent. Not a secret agent, mind you, though some days I feel like I’m cracking codes just to understand my email inbox. I mean “agent” in the philosophical sense: a being capable of acting, making choices, and influencing its environment. For years, my focus here at Agntzen has been on us – humans – and the intricate dance of our autonomy, our intentions, and the structures we build around ourselves. But lately, a new dancer has been stepping onto the floor, and it’s got everyone, myself included, a little off-balance: AI.

Specifically, I’ve been wrestling with the idea of AI agency. Not in some far-off, sci-fi singularity sense, but right here, right now, in the applications we’re using and building. We’re past the point of just seeing AI as a tool, a sophisticated calculator. It’s starting to exhibit behaviors that look an awful lot like intention, decision-making, and even a kind of “will” – even if that will is just an emergent property of billions of parameters.

And that, my friends, presents a genuinely thorny ethical problem that we, as the architects and users of these systems, need to confront head-on. Because if something is acting, even if we programmed it to act, where does the responsibility lie when things go sideways?

The Ghost in the Machine: When AI “Decides”

Let’s be clear: I’m not suggesting AI has consciousness or feelings (yet, anyway – let’s save that for another post). But it absolutely makes decisions. Think about an AI-powered content moderation system. It’s fed a vast dataset of what is and isn’t acceptable. Then, a new piece of content comes in, maybe a nuanced political cartoon, and the AI flags it as hate speech. Or it lets through something genuinely offensive. In either case, a decision was made. A boundary was enforced (or not enforced).

Who is responsible for that decision? The user who uploaded the content? The platform that deployed the AI? The engineers who trained the model? The data scientists who curated the training data? It’s a hydra-headed problem, and our current legal and ethical frameworks are struggling to keep up.

I had a personal encounter with this recently. My site, Agntzen.com, uses a pretty standard AI-driven spam filter. For years, it was fine. Then, about six months ago, it started flagging legitimate comments – thoughtful, well-argued contributions – as spam. Not just occasionally, but consistently. I’d go into the moderation queue and see discussions I genuinely wanted to host, all sitting there, marked for deletion. It felt like the AI was actively silencing voices. Was it my fault for choosing that particular filter? Was it the company’s fault for creating a model that, for some reason, started misinterpreting philosophical discourse as junk?

It forced me to think: I had delegated a task – spam filtering – to an AI. But in doing so, I also, implicitly, delegated a degree of agency. The AI was acting on my behalf, making choices about who could speak on my platform. And when those choices went wrong, the buck still stopped with me. I had to intervene, adjust settings, and eventually switch filters. But the experience highlighted how quickly we can cede control, and thus responsibility, without fully realizing the implications.

The Problem of Opacity: Black Boxes and Blame

One of the biggest hurdles in assigning responsibility is the “black box” problem. Many advanced AI models, especially large language models (LLMs) and deep learning systems, are incredibly complex. Even the engineers who build them can’t always explain precisely why a particular decision was made. We can observe the input and the output, but the internal reasoning, the exact path through the neural network, remains opaque.

This isn’t just an academic curiosity. Imagine an AI used in a hiring process. It rejects a candidate. The candidate asks for a reason. If the AI’s “reason” is inscrutable, or based on correlations that are subtle and potentially discriminatory, how do we address that? Who is accountable for a discriminatory outcome if no human explicitly programmed discrimination?

We often talk about “explainable AI” (XAI) as a solution, but even XAI often provides post-hoc rationalizations rather than true insight into the decision-making process. It’s like asking a politician why they voted a certain way and getting a carefully crafted statement, not the messy reality of backroom deals and personal biases.

Consider this simplified (and highly illustrative) Python example of a hypothetical, biased AI decision:


def assess_loan_application(applicant_data):
 credit_score = applicant_data.get('credit_score', 0)
 income = applicant_data.get('income', 0)
 zip_code_prefix = str(applicant_data.get('zip_code'))[:2]

 # Imagine a complex AI model here, but for simplicity, let's hardcode a "bias"
 # In a real model, this bias might emerge from training data imbalances.
 if credit_score < 600 or income < 30000:
 return "Rejected: Low credit or income."
 elif zip_code_prefix in ['90', '91', '92']: # Hypothetically, these are "undesirable" areas
 return "Rejected: Geographic risk factor."
 else:
 return "Approved."

# Example Usage
applicant1 = {'credit_score': 720, 'income': 60000, 'zip_code': 90210}
applicant2 = {'credit_score': 650, 'income': 45000, 'zip_code': 78704}
applicant3 = {'credit_score': 580, 'income': 70000, 'zip_code': 78704}

print(f"Applicant 1: {assess_loan_application(applicant1)}")
print(f"Applicant 2: {assess_loan_application(applicant2)}")
print(f"Applicant 3: {assess_loan_application(applicant3)}")

In this simple example, the "geographic risk factor" is an explicit bias. In a real AI, it might be an emergent correlation. If applicant 1 is rejected, and they ask why, the AI (or the system explaining it) might say "geographic risk" without explaining why those zip codes are deemed risky, or if that risk factor is even legitimate or just a proxy for something else. Who designed this system? Who approved the use of zip codes as a risk factor? The responsibility chain quickly becomes tangled.

Drawing Lines: Where Does Human Responsibility End?

This leads us to the core of the ethical dilemma: How do we assign responsibility when AI acts? My current thinking points to a few key areas where we, as human agents, must retain and assert our responsibility.

1. The Architects and Implementers

The primary responsibility lies with those who design, build, train, and deploy AI systems. This isn't just about technical proficiency; it's about ethical foresight. Before an AI is even trained, decisions are made about what data to use, what objectives to optimize for, and what constraints to impose. These are fundamentally human choices with ethical implications.

For example, if you're building a recommendation engine, what metrics are you prioritizing? Engagement? User well-being? Both? And how do you measure these? If your AI optimizes solely for "clicks," it might inadvertently promote sensational or even harmful content. The responsibility for that outcome traces back to the initial design choices.

We need to bake ethical considerations into every stage of the AI development lifecycle. This means diverse teams, rigorous testing for bias, and transparent documentation of design decisions. It also means establishing clear accountability within organizations. If an AI system causes harm, there should be a named individual or team ultimately responsible for its design and deployment.

2. The Overseers and Operators

Once an AI is deployed, the human operators and overseers have a continuous responsibility. This includes monitoring the AI's performance, intervening when it makes questionable decisions, and updating or retraining it as needed. My spam filter incident is a perfect example here. I couldn't just "set it and forget it." I had to actively monitor its behavior and intervene when it deviated from what I considered acceptable.

This also extends to setting the boundaries of AI agency. What tasks are we comfortable delegating entirely to an AI? What tasks require human oversight, review, or final approval? These aren't static decisions; they need constant re-evaluation as AI capabilities evolve.

Consider an AI diagnosing medical conditions. It might be incredibly accurate, but a human doctor still bears the ultimate responsibility for the diagnosis and treatment plan. The AI is a tool, albeit a sophisticated one, used by a human agent who remains accountable.

3. The Policy Makers and Regulators

Finally, there's a crucial role for governments and regulatory bodies. As AI becomes more ubiquitous and powerful, we need clear laws and ethical guidelines that define responsibility, establish recourse for harm, and ensure transparency. This is an incredibly complex area, but inaction is not an option.

Legislation around data privacy (like GDPR) was a start, but we need similar frameworks for AI agency and accountability. This might involve mandating explainability for certain high-stakes AI applications, requiring human review processes, or even establishing a "duty of care" for AI developers and deployers.

For instance, imagine a regulatory requirement for a "human-in-the-loop" verification for any AI-driven decision that could significantly impact a person's livelihood or rights. Here's a conceptual (non-executable) code outline:


class CriticalDecisionAI:
 def __init__(self, model):
 self.model = model

 def make_decision_with_oversight(self, data):
 ai_prediction = self.model.predict(data)
 
 # Log AI's raw prediction and confidence
 print(f"AI Prediction: {ai_prediction}, Confidence: {self.model.get_confidence(data)}")

 # Require human review for critical decisions
 if ai_prediction == "Reject" and self.model.get_confidence(data) < 0.95:
 print("Human review required for this rejection due to lower confidence.")
 human_decision = input("Human, do you approve this AI rejection? (yes/no): ").lower()
 if human_decision == 'yes':
 return "Rejected (Human Approved)"
 else:
 return "Approved (Human Overrode AI)"
 elif ai_prediction == "Reject" and self.model.get_confidence(data) >= 0.95:
 print("AI confidentially rejected. Still logging for audit.")
 # Depending on policy, might still require human audit/review later
 return "Rejected (AI High Confidence)"
 else:
 return "Approved"

# Usage would involve instantiating this with an actual AI model
# For example, if 'loan_model' is a trained AI
# decision_maker = CriticalDecisionAI(loan_model)
# decision_maker.make_decision_with_oversight(applicant_data)

This example highlights how policy could be translated into practical architectural requirements, ensuring that even highly confident AI decisions are subject to human scrutiny, especially in sensitive contexts.

Actionable Takeaways for the Agent-Minded

So, what does this mean for us, the human agents grappling with this new landscape? Here are a few practical thoughts:

  • Question AI's "Why": Don't just accept an AI's output. Always ask (or try to understand) the reasoning behind its decisions, especially in critical applications. If you're using an AI tool, look for features that offer explanations or confidence scores.
  • Define Human-in-the-Loop Policies: If you're building or deploying AI, establish clear guidelines for when human oversight, review, or intervention is required. Don't delegate responsibility blindly.
  • Audit and Monitor Relentlessly: AI systems can drift, develop biases, or simply stop performing as expected. Implement robust monitoring and auditing processes to catch these issues early. My spam filter taught me this the hard way.
  • Advocate for Transparency: Demand more transparency from AI developers and deployers. Support regulations that push for explainable AI and clear accountability frameworks.
  • Cultivate Critical Thinking: Our most potent defense against unforeseen AI consequences is our own capacity for critical thought. Don't let AI lull you into intellectual laziness. Always evaluate, always question, always strive to understand.

The rise of AI agency isn't a threat to human agency, not inherently. Instead, it's a profound challenge that forces us to re-examine what it means to act, to choose, and to be responsible. By confronting these ethical questions now, we can ensure that as AI evolves, it does so in a way that truly serves humanity, rather than confounding it.

🕒 Published:

✍️
Written by Jake Chen

AI technology writer and researcher.

Learn more →
Browse Topics: Best Practices | Case Studies | General | minimalism | philosophy
Scroll to Top