EastofSilicon Tools and workflows from the Chinese internet

GPT-6 Astra needs a task console, not a bigger chat window

10 min read 2,365 words 36krifanrwoshipm
A protocol folder passing through approval gates toward a hand
A clinical workflow moves through visible checkpoints before a person approves the next step.Illustration: generated for this article

GPT-6 Astra points toward AI that runs work rather than merely extends a chat window. According to woshipm, it is positioned to operate computers and browsers, call tools, retain state across steps, and accept feedback while a task remains in progress.

Its API boundary makes that shift concrete. GPT-6 Astra supports the Responses API rather than the Chat Completions API; woshipm says that API can combine tool calls, remote MCP, computer operation, code execution, file retrieval, and multi-turn state. A task that can continue while a tool runs needs more than a transcript.

The product responsibility becomes visible control: what the agent is doing, which action was authorized, where a person can intervene, and how work can be stopped or reversed. As woshipm's author argues, enterprise backends may become task runtimes for long-running AI work, replacing the model gateway as the central operating layer.

A task runtime changes what the product is responsible for

GPT-6 Astra is available only through the Responses API, not the Chat Completions API. That boundary signals a different product contract. According to woshipm, the API can carry tool calls, remote MCP, computer operation, code execution, file retrieval, and multi-turn state. The model is therefore being placed inside an execution loop, where a request can persist beyond a single exchange.

The weakening of human-or-bot verification
  1. In 2000Carnegie Mellon researchers developed the Gimpy CAPTCHA system
  2. In 2014Google launched its "I am not a robot" checkbox
  3. By 2016Columbia researchers reached about 70% accuracy against Google's system
  4. In 2024An ETH Zurich student tested Google's checkbox with customized AI models
  5. In JuneGoogle introduced a knuckle-motion CAPTCHA
  6. Starting on September 15, 2026Cloudflare will block hybrid AI crawlers from ad-supported pages by default

A chat reply ends when it is sent. A task can remain active.

The distinction becomes sharper in Astra's handling of time and correction. Its development guidance emphasizes asynchronous tool calls, state continuity across steps, and changes to instructions while work is underway. woshipm says Astra can continue other work while a tool runs, and can accept new user instructions without restarting the whole task. A product using that pattern is responsible for preserving the task's current state, recording what remains pending, and applying a correction to the running work rather than treating it as a fresh prompt.

That is why the woshipm author describes an enterprise backend moving from a model gateway toward a task runtime for long-running AI work. The frontend must change with it. The same author argues that an agent interface should become a task console: one that exposes the goal, plan, tool calls, waiting steps, cited materials, and points requiring confirmation for risky actions. A larger chat window can display conversation, but it cannot by itself make an active task legible.

Start with work that can be stopped and reversed

Start with work that is repetitive, governed by clear rules, and unpleasant enough that people still have to complete it. According to woshipm, those are the strongest handoff points for an agent. Give each run a task ID before it begins, so the work can be tracked as one accountable unit rather than a loose sequence of chat prompts.

Choose actions whose mistakes cost little and can be reversed easily.

Least-privilege access should follow the task ID. A customer-service agent may open the ticketing system, retrieve order history, prepare standard replies, and submit them, as woshipm describes. That scope is useful because it is specific: the agent is authorized to handle a defined case, not granted open-ended control of every customer record or financial decision.

The boundary should tighten before an action changes money, exposes private information, or cannot be undone. In woshipm's refund example, the agent can complete the application, but approval stops until a person confirms it. The pause is part of the workflow, not an admission that the agent failed. It records where authority changes hands and gives the operator a chance to reject or revise the proposed action.

Visibility must remain available throughout the run. woshipm recommends making activity visible, placing pauses at consequential moments, and offering one-click takeover. A person should be able to intervene without reconstructing what the system has already done.

Measure the whole task as well. Model-call or token accounting can hide the cost of review, correction, and handoff; woshipm argues that enterprise cost management should assess complete task costs instead.

Browser agents make human checks the wrong boundary

CAPTCHAs were built to separate a person from an automated script. That boundary weakens when an agent can read a screen and act through ordinary controls. According to ifanr, GPT-6 cleared all 48 levels of the "I Am Not a Robot" game. ifanr also cites a 2023 USENIX Security study in which bots reached 85% to 100% accuracy on CAPTCHA types with comparable data, against measured human performance of 50% to 85%.

A human-looking interaction is no longer proof of human authorization.

The capability behind that shift is not limited to recognizing puzzle images. OpenAI's early Computer-Using Agent was designed to interpret screen pixels, move a virtual mouse and keyboard, then respond to feedback when errors occurred, according to ifanr. GPT-6 scored 92.7% on ScreenSpot-Pro in a tool-free setting, compared with 76.9% for GPT-5.6 Sol. Sites that rely on interface friction alone are therefore asking the wrong question: not who clicked, but whose instruction the click carries.

Gesture checks and phone QR scans raise the cost of automation, yet do not establish a durable delegation record. ifanr reports that Google introduced a camera-based CAPTCHA in June that tracks knuckle movements, and also tested QR-code scanning with a phone. The needed control is narrower than invasive identity verification: a site should know what action a user delegated, what permission applied, and when that permission was revoked. It should also retain an audit trail for consequential actions. For money, privacy, or irreversible operations, woshipm's author recommends mandatory confirmation; the same author calls for full visibility, key pauses, and one-click takeover.

Use APIs for transactions and browsers for the gaps

Direct integration should carry the transaction when a stable API exists. According to woshipm, the Responses API can support tool calling, remote MCP, code execution, file retrieval, computer operation, and multi-turn state. That path gives a product a defined place to apply permissions before a request reaches another system, rather than asking an agent to reproduce a person's clicks on a screen.

Browsers are the bridge, not the foundation.

GPT-6 Astra can view screens, click buttons, fill in forms, and complete tasks across software applications, woshipm reports. OpenAI reported a 72.6% score on OSWorld, against 65.7% for GPT-5.4, and a 47% reduction in completion time for related computer tasks. Those results make computer operation useful where no integration exists or where a page is unstructured. They do not turn a visible interface into a reliable transaction boundary.

A hybrid workflow assigns the API-backed step to the API, then uses browser operation for the remaining gap. The task console should show which route the agent chose, what it submitted through a tool, and where it encountered a page that required computer operation. Recovery also differs: a failed API request can be bounded by the operation it attempted, while a browser sequence may need inspection of the page state before work resumes. The woshipm author recommends placing trust boundaries around actions whose mistakes have low cost and are easy to reverse.

Confirmation must sit at the consequential handoff. In woshipm's customer-service example, the AI may fill in a refund application, but approval pauses for human confirmation. That is the practical split: let the agent navigate gaps, but reserve authorization for the transaction that changes the outcome.

Where to hand work to an agent-and where to keep a human in control

  • A workflow contains repetitive, clearly rule-based steps such as opening a ticketing system, looking up order history, and preparing standard replies. Use an agent for the operational handoff, particularly when the task is one users dislike but must complete. Make the running work visible rather than hiding it behind a chat response.
  • A system has stable APIs for the required action. Use the API as the preferred integration path. Reserve computer operation-screen reading, clicking, and form filling-for API gaps and unstructured pages.
  • An action concerns money, privacy, or an irreversible operation, such as approving a refund. Let the agent prepare the work, but require an explicit human confirmation before execution. The customer-service example supports filling in a refund application automatically while pausing approval for a person.
  • An agent is operating across a long-running, multi-step task with tool calls, waiting periods, and possible user corrections. Run it through a task runtime rather than treating each model call as an isolated exchange. The interface should expose the goal, plan, tool calls, waiting steps, cited materials, and confirmation points, while allowing mid-task correction and one-click takeover.
  • A team is choosing its first agentic workflow. Start with actions whose errors are low-cost and easy to reverse, then collect outcome feedback after completion. Ask whether the user was satisfied and, if not, which step went wrong before expanding the agent's scope.

Medidata Plus shows what workflow accountability looks like

Medidata Plus places AI inside the clinical-trial operating system rather than in a separate response box. According to a report, Medidata introduced the platform to unite capabilities previously distributed across products and embed them in pharmaceutical companies' existing workflows. Its architecture is intended to cover the full clinical-trial process.

Dot is the platform's core orchestration engine. Medidata describes it as connecting research, patient, and data experiences into collaborative trial workflows. That makes the useful unit of AI work a managed process with inputs and downstream work, rather than an isolated model answer.

Operational records already exist in the platform. Rave, Medidata's core product, collects and manages clinical-trial data from patients.

The platform also ties AI use to permissions over operational data. Anthony Costello said Medidata has data-rights agreements with more than 90% of its customers that authorize compliant use of that data. In a demonstration described by the report, the system took an uploaded study-protocol PDF, extracted visit schedules and assessment plans, then generated forms, validation rules, and test data. Medidata says a study build that traditionally takes 10 to 12 weeks can be reduced to several days with AI.

That is a task-level outcome that can be inspected before a trial begins. Jeff Ventimiglia said Medidata wants users to understand how a trial will run before it starts. The company says its AI has been used in more than 500 clinical studies over the past decade, and plans to extend Dot across more clinical workflows.

From conversational assistance to accountable workflow operation

Traditional AI assistantsGPT-6 Astra agent systemsMedidata Plus and Dot
Primary roleInformation and creative inspirationProcess automation and efficiency improvement through end-to-end tasksCollaborative clinical-trial workflows across research, patient, and data experiences
Work surfaceConversational interfaceComputers, browsers, tools, and software applicationsPharmaceutical companies' existing clinical workflows
Task executionnot coveredCan view screens, click buttons, fill in forms, call tools, and incorporate intermediate feedbackCan extract protocol information from an uploaded PDF and generate forms, validation rules, and test data
Long-running task supportnot coveredAsynchronous tool calls, mid-task correction, state continuity, and continued work while a tool runsnot covered
Human intervention modelnot coveredFull visibility, key pauses, and one-click takeover; confirmation before money, privacy, or irreversible actionsnot covered
Authorization and permissionsnot coveredRAG must ensure correct permissions and valid document versionsData-rights agreements with more than 90% of customers authorize compliant use of operational data
Evidence and task visibilitynot coveredTask consoles should show goals, plans, tool calls, waiting steps, cited materials, and confirmation pointsnot covered
Preferred integration approachnot coveredStable APIs should remain preferred; computer operation fills API gaps and handles unstructured pagesConnects AI capabilities previously distributed across products into a unified platform
Performance or operational outcomenot coveredOpenAI reported a 47% reduction in completion time for related computer tasksTraditional study build takes 10 to 12 weeks and can be shortened to several days with AI
Pricingnot covered$10 per million input tokens, $1 per million cached input tokens, and $50 per million output tokensnot disclosed in sources

Start with a bounded study-build task: turn an uploaded protocol PDF into visit schedules, assessment plans, forms, validation rules, and test data. According to a report, Medidata says this work can move from 10 to 12 weeks to several days. Treat that claim as a measurement plan, not a reason to grant broad access. Assign a task ID, use least-privilege credentials, log each generated artifact, and require approval before anything reaches a live study.

Watch the handoffs most closely. Medidata says about 11% of research sites enroll no patients, while its simulation system compares protocol variables with similar historical trials. Track completion, interventions, recovery after errors, and cost per completed task; preserve a one-click human takeover when the evidence is weak.

For readers outside China

  • Availability: GPT-6 Astra is described as supporting only the Responses API and not the Chat Completions API. The source material does not state which countries it is available in, whether it is available outside China, or the access terms for Medidata Plus and Dot.
  • Pricing: GPT-6 Astra costs $10 per million input tokens, $1 per million cached input tokens, and $50 per million output tokens. Input beyond 272,000 tokens is billed at 2 times the standard rate and output at 1.5 times the standard rate. Batch and Flex modes offer a 50% discount. Pricing for Medidata Plus and Dot is not disclosed in sources.
  • Closest Western equivalents: The closest conceptual comparison is a computer-using agent: a system that can read screen pixels and operate a virtual mouse and keyboard, rather than a conventional chat assistant.; For enterprise deployment, the relevant comparison is a task-runtime or workflow-orchestration layer that manages long-running tasks, tool calls, state continuity, approvals, and human takeover.; For clinical trials, Medidata Plus is presented as a unified AI platform embedded in existing clinical workflows, with Dot acting as an orchestration engine; the source material does not name a direct Western competitor.
  • Data residency: The source material does not cover data residency, storage location, cross-border transfers, retention, or customer-controlled deployment. It does say that Medidata has data-rights agreements with more than 90% of its customers authorizing compliant use of operational data, but that is not a data-residency disclosure.

Sources

The evidence: 31 facts from 4 Chinese articles

Each line below was extracted from the article it sits under, in Chinese, before any of this was written. The writing is done from these and never from the source prose - that separation is structural, not a promise. How we work.

36kr从单点工具到统一平台架构,临床试验AI加速落地 | 最前线

  • Medidata held its NEXT China annual conference in Shanghai on September 3 to discuss AI application trends and prospects for large-scale deployment in clinical trials.
  • Medidata executives, including CEO Anthony Costello and Chief Operating and Strategy Officer Lisa Moneymaker, presented Medidata Plus and the intelligent assistant Dot at the conference.
  • Medidata launched Medidata Plus in July.
  • Medidata introduced Medidata Plus to connect AI capabilities previously distributed across different products into a unified platform and embed them in pharmaceutical companies' existing clinical workflows.
  • Medidata's core product Rave collects and manages clinical-trial data from patients.
  • Medidata demonstrated a system that extracts visit schedules and assessment plans from an uploaded study-protocol PDF, then generates forms, validation rules, and test data.
  • Medidata plans to continue adding AI functions to Medidata Plus and use Dot to cover more clinical workflows.

ifanrGPT-6 让 48 个网页验证码失效了,最聪明的 AI 和最笨的人类相遇了

  • "I Am Not a Robot" is a web game created by independent developer Neal Agarwal on neal.fun.
  • The "I Am Not a Robot" game includes tasks such as finding Wally in a doodle wall, playing Simon Says on a soundboard, drawing a perfect circle, breaking up with a "girlfriend," and parking a car.
  • CAPTCHA stands for "Completely Automated Public Turing test to tell Computers and Humans Apart."
  • A 2023 study published at USENIX Security found that bots achieved accuracy rates of 85% to 100% on CAPTCHA types with comparable data, while measured human performance ranged from 50% to 85%.
  • In 2024, a PhD student at ETH Zurich developed customized AI models to test the robustness of Google's "I am not a robot" checkbox.
  • OpenAI's early Computer-Using Agent was designed to read screen pixels, operate a virtual mouse and keyboard, and handle errors based on feedback.
  • In 2000, Carnegie Mellon University researchers developed the distorted-text CAPTCHA system Gimpy, which Yahoo used to prevent bots from entering chat rooms.
  • Two years after Gimpy was developed, a University of California, Berkeley team created software that could crack about 30% of its CAPTCHAs.
  • Google launched its "I am not a robot" checkbox in 2014 and used image-based verification when it still suspected that a user was not human.
  • By 2016, Columbia University researchers had found a method that achieved about 70% accuracy against Google's "I am not a robot" system.
  • Starting on September 15, 2026, Cloudflare will block hybrid AI crawlers that both train and search from crawling ad-supported pages by default.
  • Cloudflare previously introduced a pay-per-crawl model that allows website publishers to charge AI crawlers for crawling their content.

woshipmGPT-6 Astra来了,AI产品经理该做这三件事

  • OpenAI officially released GPT-6 Astra on September 3 Eastern Time.
  • Sam Altman said at the launch event, "Welcome to the AGI era."
  • GPT-6 Astra has a 1.05 million-token context window.
  • Nvidia announced on the same day that it would acquire Hugging Face for $12.93 billion.
  • OpenAI stated for the first time that it would independently develop humanoid robots.

woshipm“GPT-6 Astra 正式登场”会怎样改变现有技术栈?

  • OpenAI released GPT-6 Astra on September 3, 2026.
  • GPT-6 Astra supports only the Responses API and does not support the Chat Completions API.
  • GPT-6 Astra has a context window of 1,050,000 tokens and a maximum output of 128,000 tokens.
  • GPT-6 Astra has a knowledge cutoff date of April 30, 2026.
  • GPT-6 Astra costs $10 per million input tokens, $1 per million cached input tokens, and $50 per million output tokens.
  • For GPT-6 Astra, input beyond 272,000 tokens is billed at 2 times the standard rate and output at 1.5 times the standard rate.
  • GPT-6 Astra's Batch and Flex modes offer a 50% discount.