SShortSingh.
Back to feed

OpenAI Launches Zero Data Retention and Private Safety Processing for Enterprises

0
·4 views

OpenAI has introduced Zero Data Retention (ZDR) for enterprise customers using its frontier models, meaning prompts and responses will not be stored after each request is completed. Customer data will not be used to train OpenAI models unless the customer explicitly opts in. Enterprises can either keep content on their own infrastructure or store it on OpenAI's systems using encryption keys that remain under customer control, preventing OpenAI personnel from accessing them. A new Private Safety Processing layer complements ZDR by enabling pattern-based risk detection across interactions without exposing underlying customer content to OpenAI staff. The move targets regulated industries with strict data-governance requirements, though full product coverage and pricing details have yet to be specified.

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 ·

JPG to PNG Conversion: How Engineers Choose the Right Method for Any Batch

A software engineer has outlined a practical decision framework for converting JPEG images to PNG, drawing on experience across three real-world scenarios ranging from a 40,000-image CMS migration to a five-file Slack request. The guide highlights that switching formats is not always necessary, and teams should only convert when a downstream system requires PNG, transparency is needed, or a pipeline enforces a single container type. A key technical consideration is file size: a 200 KB JPEG can balloon to 1.4 MB as a PNG, impacting bandwidth costs and CDN budgets. For small batches under roughly 20 files, manual export via an image editor is recommended, while larger local batches are better handled with command-line tools like ImageMagick or Python's Pillow library. The core advice is that the right conversion method depends on batch size, privacy requirements, deadline pressure, and what the end consumer actually expects.

0
ProgrammingDEV Community ·

Google Gemini Adds Interactive 3D Visualizations in Chat, Excludes Workspace Users

Google has rolled out interactive 3D visualizations and charts within the Gemini app, enabling users to explore rotating models, fractals, and simulations directly inside a chat interface. Users can trigger the feature with prompts like 'show me' or 'help me visualize,' with some outputs including adjustable sliders to manipulate variables. The capability is designed to support scientific, technical, and educational use cases where visual exploration is more effective than text-based responses. The rollout is available globally but is restricted to the Pro model at gemini.google.com, excluding Education and Workspace account holders for now. Organizations considering integrating the feature into managed environments should note that access is not yet extended to enterprise or education accounts.

0
ProgrammingDEV Community ·

How a typo and a permission quirk sent an AI agent chasing phantom data for days

A small automated publishing operation running six scheduled AI agent sessions daily discovered that two days of performance metrics — showing four articles published and zero replies — were entirely wrong due to an unverified account handle in its queries. The platform's API responded with valid, empty arrays each time because the queried username simply did not exist, masking the actual record of five published articles and two reader comments. Separately, the team uncovered a selective URL permission gate in their tooling: the agent could fetch any URL that was a prefix of one returned by a tool, but not URLs derived by extending those paths, the opposite of how filesystem or OAuth scopes typically work. Both failures produced confident, well-formed outputs with no error signals, making them harder to detect than outright crashes. The incidents led the team to add a provenance column to their reachability checks, distinguishing between tool-supplied URLs and manually typed ones.

0
ProgrammingDEV Community ·

How JavaScript Code Actually Executes: From V8 Engine to CPU Instructions

When JavaScript runs in Node.js, it passes through multiple layers before the CPU executes it, starting with Google's V8 engine, which converts code into bytecode and then uses JIT compilation to produce optimized machine instructions. The CPU itself follows a basic fetch-decode-execute cycle, using components like registers, the ALU, and a program counter to process instructions billions of times per second. A key performance insight is that data storage exists in a hierarchy — from CPU registers and caches down to RAM and disk — where proximity to the CPU directly affects access speed. Cache hits and misses, driven by temporal and spatial locality, explain why two algorithms with identical Big-O complexity can perform very differently in practice. Understanding concepts like latency and bandwidth is essential for reasoning about performance across memory, storage, and network systems.