SShortSingh.
Back to feed

Sam Altman Urges External Oversight and Shared Safety Standards for Advanced AI

0
·1 views

OpenAI CEO Sam Altman has publicly called for people outside AI laboratories — including independent experts, researchers, and affected communities — to have a meaningful say in how advanced AI is developed. He has also advocated for shared, measurable safety standards for frontier AI, potentially enforced through independent evaluations and audits. Altman frames safety standards as a competition issue, arguing that poorly designed rules could entrench the largest labs and disadvantage smaller developers and open-model companies. He supports a federal framework to establish consistent safety expectations, though key details — such as who sets the measures, who conducts audits, and which systems qualify as frontier AI — remain unresolved. Critics and observers note that the value of any such framework would depend heavily on credible criteria, genuine evaluator access, and clear consequences for non-compliance.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

JavaScript Operators Explained: Assignment, Arithmetic, and Beyond

JavaScript operators are symbols or keywords that instruct the computer to perform specific operations on values or variables, known as operands. They are broadly classified by functionality — including assignment, arithmetic, comparison, and logical operators — and by the number of operands they take. Assignment operators store values in variables, with shorthand forms like +=, -=, and *= combining assignment with arithmetic. Arithmetic operators handle mathematical tasks such as addition, subtraction, and multiplication, with the + operator also capable of concatenating strings. Notably, most arithmetic operators auto-convert string operands to numbers, except when the values are non-numeric, in which case the result is NaN.

0
ProgrammingDEV Community ·

How a Missing readOnly Flag Let JPA Silently Corrupt Production Data

A junior developer built a read-only internal API that unexpectedly corrupted production data due to a misunderstood JPA behavior. The developer used the @Transactional annotation while retrieving entities and modifying their fields temporarily to store intermediate processing state, without calling any explicit save or update method. Because the entities remained in a managed state within an active transaction, Hibernate's dirty-checking mechanism detected the field mutations and automatically issued UPDATE statements against the database at commit time. The fix was straightforward: replacing @Transactional with @Transactional(readOnly = true) instructs Hibernate to bypass dirty checking and flushing for that transaction context. The incident highlights how Hibernate's abstraction layer can produce serious side effects when developers lack a deep understanding of its lifecycle and persistence mechanisms.

0
ProgrammingDEV Community ·

WebForms Core Lets TypeScript Run the Same Code on Server and Browser

WebForms Core is a framework that enables TypeScript to function as an isomorphic WebForms Commander, meaning the same class can run on both the server side and in the browser. The system is split into two parts: the Commander, which generates commands using WebForms classes, and the Executor, which is the front-end library WebFormsJS that carries out those commands in the browser. Developers interact with WebForms class functions rather than manipulating the DOM directly, keeping the programming model consistent across environments. The TypeScript package is available via npm under the name webformscore-ts and supports front-end, server-side, and WebAssembly contexts. As a practical example, the framework can be used to build a button that continuously changes a webpage's background to a randomly generated RGB color at 500-millisecond intervals.

0
ProgrammingDEV Community ·

Study Finds Nine Major AI Services Hide Free Plan Message Limits From Users

A review of nine popular AI platforms — including ChatGPT, Gemini, Claude, and Grok — found that none publicly discloses a numeric cap on free-tier chat messages. Researchers preserved and timestamped 70 official pages from these services as of September 22, 2026, tying every documented value to its source. While companies maintain pricing pages and help centers, the relevant usage details are scattered, often undated, and subject to change without clear notice — one value changed during the research itself. Limits are typically described in vague terms such as "generous limits" or "practically unlimited," leaving users unable to anticipate when access will be cut off. The findings make no service recommendations but aim to document what each company discloses and, crucially, what it omits.

Sam Altman Urges External Oversight and Shared Safety Standards for Advanced AI · ShortSingh