SShortSingh.
0
ProgrammingDEV Community ·

ChatGPT Search Reddit Citations Drop 86% After Retrieval Change, Data Shows

Reddit's share of citations in ChatGPT Search plummeted from 3.83% to 0.52% between early and mid-August 2026, an 86.4% relative decline in just four days, according to analytics firm Promptwatch. The shift coincided with an August 8 change in ChatGPT's fan-out query behavior, where use of domain-scoped 'site:' operators jumped from roughly 0.37% to 16.8%, potentially altering which pages were retrieved and cited. Promptwatch characterizes the drop as a ChatGPT-side retrieval adjustment rather than a targeted penalty against Reddit. By comparison, Google AI Overviews and Google AI Mode showed more gradual Reddit citation declines of approximately 11% and 30% respectively over the same period. Promptwatch cautions that its data are provisional and that content teams should diversify AI visibility strategies across multiple platforms rather than relying on any single source.

0
Crypto & Web3CoinDesk ·

Nvidia Beats Earnings Estimates, Projects $108B Revenue Next Quarter

Nvidia reported its fiscal second-quarter financial results after market close on Wednesday. The tech giant surpassed analyst earnings expectations, continuing its strong performance streak. Looking ahead, Nvidia provided forward guidance projecting approximately $108 billion in revenue for the next quarter. The results reinforce Nvidia's position as a key bellwether for the broader technology sector.

0
IndiaTimes of India ·

India to mandate low-beam headlamps by default in new motor vehicle rules

India's road transport ministry has proposed draft amendments to the Central Motor Vehicles Rules to make low-beam headlamps the default setting in vehicles. The move comes after awareness campaigns urging drivers to use low-beam mode failed to produce the desired results. The proposed changes also include a mandatory requirement for buses and other heavy vehicles to use genuine reflective tapes. These measures aim to improve road visibility during nighttime driving and in adverse weather conditions.

0
ProgrammingDEV Community ·

Foodmartex Shares 6-Week Dev Progress on Nigeria-Focused E-Commerce Platform

Foodmartex, a Nigerian e-commerce startup, has outlined six weeks of technical and product development on its multi-vendor platform serving customers, vendors, and delivery riders. Early work focused on overhauling backend infrastructure, including timezone-aware vendor opening hours for Lagos and strengthened payment reconciliation via Paystack. The team subsequently added admin analytics dashboards, a careers module, and improved subscription plan management for vendors. Engagement features such as Premier League predictions, spin-wheel rewards, and raffle campaigns were also introduced to drive customer retention. The platform aims to consolidate food, pharmacy, and grocery purchases in one place while ensuring timely pay and trip tracking for delivery riders.

0
ProgrammingDEV Community ·

Minions.AI ditches LLM-controlled agents in favor of deterministic finite state machines

Developer Parvej Shah describes how Minions.AI rebuilt its automated content pipeline after an LLM-orchestrated multi-agent system failed roughly 30% of the time in early 2025. The original setup used a central LLM to coordinate research, drafting, critique, and formatting agents, but suffered from loop oscillations, context window pollution, and wildly inconsistent output lengths and costs. The core problem was that LLMs were making control-flow decisions — state transitions, termination, and error routing — tasks they handle poorly due to their non-deterministic nature. The team rewrote the pipeline as a formal Finite State Machine in TypeScript, where all state transitions are governed by typed code and LLMs handle only content tasks like drafting, critiquing, and revising. The redesign enforced strict revision limits and hard exit conditions, eliminating runaway loops and unpredictable inference costs.

0
IndiaTimes of India ·

India and China Announce 8-Point Consensus Ahead of Xi Jinping's Visit

India and China have reached an 8-point consensus, announced through a rare joint statement following diplomatic talks. The agreement includes advancing boundary delimitation discussions aimed at an early and substantial resolution. Both sides agreed to establish additional meeting points and hotlines to strengthen border management mechanisms. The consensus also focuses on improving mutual understanding of the Line of Actual Control through continued diplomatic and military engagements. Additionally, the two nations plan to expand trans-border trade and enhance cooperation on shared river resources.

0
ProgrammingDEV Community ·

Why AI Agent Eval Suites Miss Critical Production Failures Beyond Final Output

AI agent evaluation frameworks that only score final answers are giving development teams a false sense of security, according to a widely discussed analysis in the developer community. An agent can produce a correct-looking response while having accessed unauthorized data, leaked private context, or triggered irreversible side effects that never surface in the output string. This "final answer bias" means evaluation suites routinely mark dangerous or inefficient runs as successful. Gartner projects that over 40 percent of agentic AI projects will be canceled by end of 2027, with 32 percent of organizations citing output quality as the top deployment barrier. Experts argue that robust evaluation must shift focus to trajectory-level metrics — examining intermediate steps, tool calls, and resource access — not just the last message returned.

0
ScienceWIRED ·

FEMA Official Gregg Phillips, Known for Teleportation Claim, Remains on Federal Payroll

Gregg Phillips, a FEMA official who gained notoriety for claiming he had teleported to a Waffle House, was reportedly removed from his position in June. Despite reports of his ouster, Phillips continues to be employed by the federal government. He has also been seen meeting with a figure described as a Trump fixer. The situation raises questions about personnel accountability within the current administration.

0
ProgrammingDEV Community ·

Lessons from deploying AI agents across 23 rental properties: hard limits matter

A short-let operator managing 23 vacation rental properties spent 18 months integrating AI agents to handle repetitive tasks like guest messaging and nightly repricing. The operator discovered that safety constraints placed only in AI prompts are unreliable, as a pricing agent once breached a set price floor because the instruction was treated as one consideration among many. The key fix was enforcing critical rules in code after the model responds, making constraints mathematical rather than instructional. Agents were also deployed in a default 'Suggest' mode, where they prepare actions but wait for human approval before executing, building trust gradually. This approach also generated a natural feedback loop, as every user edit to an agent's draft served as a free, real-world labelled data point for improving the system.

0
ProgrammingDEV Community ·

Google Gemini Live Voice Feature Now Free, But Regional and Tool Limits Apply

Google has added Gemini Live, a voice-enabled chat mode, to its free Gemini plan at no monthly cost, allowing users to interact with the assistant through speech or text. The feature supports real-time visual context and can integrate with Google apps such as Gmail, Drive, Calendar, Maps, YouTube, and Keep, depending on regional availability and compatibility. However, certain tools including Gems and Notebooks are not accessible during Live voice sessions, limiting direct feature transfers from other workflows. Paid tiers — AI Plus, AI Pro, and AI Ultra — offer broader access to Live capabilities and additional Gemini tools beyond what the free plan provides. Google cautions that regional support, age restrictions, and setup requirements vary, and businesses operating across multiple markets should verify availability for each location individually.

0
IndiaTimes of India ·

SC Judge Files Complaint Against Rajasthan Acting CJ; CJI Seeks Response

A Supreme Court judge, Justice Mehta, has lodged a complaint against the Acting Chief Justice of Rajasthan High Court, Justice Sharma, alleging poor leadership and maladministration on both judicial and administrative fronts. The complaint also includes allegations of malpractice within the High Court. Chief Justice of India Surya Kant has acknowledged the matter and sought a response through established institutional mechanisms. CJI Kant cautioned that such disputes should not be played out in the media, emphasizing that the Supreme Court would not allow competing public claims to determine the outcome. The matter is expected to be addressed through the judiciary's internal resolution process.

0
ProgrammingDEV Community ·

How Minions.AI Cut Voice AI Phone Response Latency to Under 1.8 Seconds

Developer Parvej Shah published a technical breakdown of how the team behind Minions.AI, a voice dispatch platform for trade contractors, reduced AI phone response latency from roughly 2,900ms to under 1,800ms. The original pipeline processed audio sequentially — transcription, LLM generation, and speech synthesis each waiting on the previous step — making calls feel unresponsive and causing callers to hang up. The team replaced silence-based turn detection with a neural Voice Activity Detection model operating on 20ms audio frames, cutting end-of-turn detection from 800ms to 280ms. They also eliminated the wait for full LLM output by streaming tokens directly into the text-to-speech engine clause by clause, allowing audio playback to begin before the AI finished generating its response. Together, these architectural changes transformed the system from a sequential pipeline into an overlapping, event-driven stream that more closely mirrors natural human conversation timing.

0
ProgrammingGitHub Blog ·

GitHub Copilot App Can Now Automate Dependabot Pull Request Triage

GitHub has introduced a beginner-friendly use case for its Copilot app, focused on automating the triage of Dependabot pull requests. Dependabot automatically generates pull requests to keep project dependencies up to date, but reviewing and managing them can be repetitive and time-consuming. The GitHub Copilot app can be configured to handle this type of routine task, reducing manual effort for developers. This tutorial targets beginners looking to explore practical automation workflows using GitHub Copilot. The announcement was published on the official GitHub Blog.

0
ProgrammingHacker News ·

Most EU Software Vendors Lack security.txt File as CRA Deadline Approaches

A recent study found that 76% of 623 EU software vendors do not have a security.txt file on their websites. This file is set to become a key requirement under the EU Cyber Resilience Act (CRA), which mandates a 24-hour vulnerability reporting rule. The security.txt standard provides a standardized way for researchers to report security vulnerabilities to organizations. The findings highlight a significant compliance gap among EU vendors as CRA obligations draw closer.

0
ProgrammingDEV Community ·

Study Finds LLM Agent Pipelines Silently Downgrade Hard Constraints Into Suggestions

A new ArXiv paper identifies a failure mode in multi-stage LLM agent workflows where hard constraints lose their binding force as they pass between pipeline stages. Researchers call this phenomenon 'constraint weakening,' noting that intermediate agents preserve the semantic content of a constraint but strip its operational enforcement during summarization or handoff. Across 1,296 synthetic test episodes, normal handoff compression resulted in 100% constraint deactivation and 54.2% execution of explicitly forbidden actions. The study identifies five specific transformation mechanisms — including compression, plan assimilation, and ownership deferral — each of which reliably converts a blocker into a caveat. The authors highlight a critical testing gap: most multi-agent systems verify that a constraint is mentioned in a summary but do not verify that it actually prevents downstream action when unresolved.

0
ProgrammingDEV Community ·

Infisical's Agent Vault Proxies API Credentials to Keep AI Agents Secure

Infisical has introduced Agent Vault, an HTTP proxy designed to manage API credentials for AI agents without exposing secrets to the agent runtime. Instead of embedding API keys in prompts or environment variables, the proxy intercepts outbound requests and injects the appropriate credentials on the fly based on configured route patterns. The system enforces least-privilege access, blocking any request to an unconfigured API route with a 403 response, and logs every transaction for auditing. Agent Vault also handles credential rotation transparently through lazy refresh and background polling, so long-running agent workflows are never disrupted by expiring secrets. No SDK changes are required on the agent side, as the agent simply points its tool calls to the proxy endpoint instead of the real API.

0
ProgrammingDEV Community ·

Malaaz Project Explores Decentralized Mesh Networks for Post-EMP Signal Recovery

A developer has shared a project called Malaaz on DEV Community, focused on simulating decentralized mesh network behavior under extreme electromagnetic disruption scenarios. The project investigates how communication infrastructure could survive and recover from events such as electromagnetic pulses or severe storms. Central to the approach are distributed autoencoders and mesh architectures designed to reconstruct signals without relying on centralized systems. The author is seeking feedback from systems engineers, backend developers, and network specialists. The post invites open discussion on the viability of such resilient communication strategies.

0
ProgrammingDEV Community ·

Mem0, Zep, LangChain, Letta: A Technical Breakdown of AI Memory Architectures

Four prominent AI memory frameworks — Mem0, Zep, LangChain Memory, and Letta — each claim to solve conversational memory but use fundamentally different approaches under the hood. LangChain's memory classes are modular building blocks that give developers full control but require them to handle conflict resolution and storage logic themselves. Mem0 uses a two-stage LLM process to extract facts and reconcile contradictions, automatically updating or deleting stale information rather than accumulating conflicting entries. This conflict-resolution step addresses a core weakness in simpler vector-store approaches, where outdated facts can persist alongside newer ones and skew retrieval results. The choice between these tools depends on use case: LangChain suits developers building custom pipelines, while Mem0 targets multi-session products where user facts evolve over time.

0
IndiaTimes of India ·

Rare English moth rediscovered at Northumberland estate after 70-year absence

A rare moth species, missing from England for 70 years, has been rediscovered at the National Trust's Wallington Estate in Northumberland. Conservationists made the find in just 10 minutes, crediting extensive habitat restoration work at the site. The moth had previously been considered at risk of extinction in England. The rediscovery has raised hopes that other hidden or presumed-lost insect populations may also be found through similar conservation efforts.

← NewerPage 404 of 3586Older →