Qborfy AI
Author

Qborfy AI

A knowledge base that logs daily experiences and learning journeys, sharing them with you to grow together.

88
Articles
0
Likes
478
Views
0
Comments
Recent Articles

Latest from Qborfy AI

88 recent articles
Qborfy AI
Qborfy AI
Aug 27, 2026 · Artificial Intelligence

Choosing Between LangGraph and AutoGen: A Deep Dive into Nodes, Edges, and State

This article explains the three core concepts of graph engineering—Node, Edge, and State—then dissects the design philosophies of LangGraph and AutoGen, comparing their architectures, strengths, limitations, and suitable use‑cases to help developers select the right framework without pitfalls.

AI AgentsAutoGenEdge
0 likes · 24 min read
Choosing Between LangGraph and AutoGen: A Deep Dive into Nodes, Edges, and State
Qborfy AI
Qborfy AI
Aug 26, 2026 · Artificial Intelligence

How Graph Engineering Tames Uncontrolled AI Agents and Solves Prompt Fatigue

The article explains that "prompt fatigue" stems from cramming multiple roles and tasks into a single LLM prompt, which causes attention competition and context pollution, and shows how Graph engineering restructures agents into specialized state nodes to isolate context, specialize roles, and enforce controllable workflows, backed by Anthropic’s 90% quality gain at a 15‑fold token cost.

AI Agent DesignAnthropicContext Isolation
0 likes · 14 min read
How Graph Engineering Tames Uncontrolled AI Agents and Solves Prompt Fatigue
Qborfy AI
Qborfy AI
Aug 24, 2026 · Artificial Intelligence

How Small Businesses Can Deploy Ontology Without Building a Big Platform

SMEs can adopt lightweight ontologies to improve AI agents in three real-world scenarios—smart customer service, unified sales lead semantics, and inventory‑procurement reconciliation—by explicitly modeling product rules, regional hierarchies, and stock relationships, avoiding hallucinations and heavy platforms while enabling accurate, data‑driven answers.

AI AgentsCustomer ServiceKnowledge Graph
0 likes · 10 min read
How Small Businesses Can Deploy Ontology Without Building a Big Platform
Qborfy AI
Qborfy AI
Aug 20, 2026 · Artificial Intelligence

How UI Ontology and Neuro‑Symbolic AI Enable Agents to Operate a Computer

The article explains why a computer screen itself forms a spatial ontology, how Anthropic trained Claude to compute pixel coordinates and reason over UI elements, the four‑step action loop, benchmark results on OSWorld, prompt‑injection risks, and why combining symbolic and connectionist approaches—neuro‑symbolic AI—is essential for reliable computer‑using agents.

AI AgentsClaudeOSWorld benchmark
0 likes · 9 min read
How UI Ontology and Neuro‑Symbolic AI Enable Agents to Operate a Computer
Qborfy AI
Qborfy AI
Aug 18, 2026 · Artificial Intelligence

How to Build Secure AI Agents with Palantir’s OSDK and Ontology MCP

This article explains why Palantir requires ontology binding as the first step for AI agents, describes the OSDK and Ontology MCP toolchain that provide type‑safe access and a standard protocol for external agents, and walks through a minimal agent example with code, permissions, and a key pitfall.

AI AgentMCPOSDK
0 likes · 10 min read
How to Build Secure AI Agents with Palantir’s OSDK and Ontology MCP
Qborfy AI
Qborfy AI
Aug 13, 2026 · Artificial Intelligence

Microsoft Fabric Ontology Semantic Layer: Architecture, NL2Ontology & Palantir Contrast

The article analyzes how Microsoft Fabric builds an enterprise semantic layer using ontology—defining entity types, properties, relationships, and data binding—and explains NL2Ontology's natural‑language‑to‑query translation while contrasting this approach with Palantir's decision‑centric model.

AI AgentKnowledge GraphMicrosoft Fabric
0 likes · 10 min read
Microsoft Fabric Ontology Semantic Layer: Architecture, NL2Ontology & Palantir Contrast
Qborfy AI
Qborfy AI
Jul 28, 2026 · Artificial Intelligence

Turning AI Agent Evaluation Scores into Code Improvements: A Complete Workflow

After running DeepEval on an AI agent, the article explains how to move from raw metric scores to actionable code changes by reading detailed transcripts, diagnosing root causes, applying quality‑gate thresholds, choosing appropriate pass@k or pass^k metrics, and iterating with CI/CD integration.

AI AgentsCI/CDDeepEval
0 likes · 16 min read
Turning AI Agent Evaluation Scores into Code Improvements: A Complete Workflow
Qborfy AI
Qborfy AI
Jul 11, 2026 · Artificial Intelligence

Why Does Your AI Agent Forget Mid‑Run? Understanding Token Window Limits and Context Management

The article explains that an AI agent’s “memory loss” is caused by the finite token context window, describes three concrete symptoms—repeating actions, forgetting constraints, and giving contradictory answers—and evaluates three engineering solutions (sliding‑window truncation, context compression, and external memory) with their trade‑offs, plus practical tips such as using CLAUDE.md for persistent rules and session_id for resume.

AI AgentsClaudeContext Management
0 likes · 20 min read
Why Does Your AI Agent Forget Mid‑Run? Understanding Token Window Limits and Context Management
Qborfy AI
Qborfy AI
Jul 9, 2026 · Artificial Intelligence

What Happens to a Message Inside an AI Agent Loop?

This article walks through the full lifecycle of a user message in Claude Code's Agent SDK, explaining each processing stage, the crucial tool‑use decision, parallel tool execution, error handling, and how Hooks let developers extend the loop without modifying core logic.

AI AgentAgent LoopClaude
0 likes · 16 min read
What Happens to a Message Inside an AI Agent Loop?
Qborfy AI
Qborfy AI
Jul 8, 2026 · Artificial Intelligence

Build a Working AI Agent Loop in Just 50 Lines of Python

This tutorial walks through a minimal 50‑line Python implementation of an AI Agent Loop, covering the core four‑step cycle, dual termination strategies, deterministic vs. autonomous designs, tool registration, and a complete runnable example.

AI AgentAgent LoopDeterministic vs Autonomous
0 likes · 13 min read
Build a Working AI Agent Loop in Just 50 Lines of Python