After a non-consecutive 130-day stint as Donald Trump's AI and crypto czar, David Sacks is moving on. He's now co-chairing PCAST — an advisory body, not a policy-making one. What does this mean for AI developers?
What Actually Happened
Sacks confirmed to Bloomberg that his AI czar role is over. He's transitioning to co-chair PCAST (President's Council of Advisors on Science and Technology) alongside Michael Kratsios.
"Moving forward as co-chair of PCAST, I can now make recommendations on not just AI but an expanded range of technology topics." — David Sacks
Key difference: as AI czar, Sacks had a direct line to Trump and shaped policy. PCAST is advisory — it studies issues and sends recommendations, but doesn't make policy.
PCAST members include Jensen Huang (Nvidia), Mark Zuckerberg (Meta), Larry Ellison (Oracle), Sergey Brin, Marc Andreessen, Lisa Su (AMD), and Michael Dell.
5 Things AI Developers Need to Know
The AI Czar Position Is Effectively Downgraded — Expect slower, more fragmented AI policy decisions from Washington.
State-Level Regulation Risk Is Real — Sacks was fighting the "50 states, 50 regulations" problem. Without his direct influence, this fragmentation could worsen.
The National AI Framework Is Still in Play — Trump's national AI framework (March 2026) is Sacks' legacy. PCAST will push it forward, but implementation is uncertain.
Big Tech Now Has More Direct Influence — With Huang, Zuckerberg, Ellison, and Brin on PCAST, AI policy will increasingly reflect big tech interests.
Policy-Agnostic AI APIs Are Your Best Hedge — Whatever happens in Washington, your AI stack should work globally.
The Solution: Policy-Agnostic AI Infrastructure
While Washington shuffles its AI power players, your infrastructure doesn't have to be unstable. NexaAPI offers exactly what Sacks advocated for — cheap, open AI access:
# pip install nexaapi
from nexaapi import NexaAPI
# Works globally — no US policy dependency
client = NexaAPI(api_key='YOUR_API_KEY') # Get at nexa-api.com
response = client.image.generate(
model='flux-schnell', # 50+ models available
prompt='A developer building AI tools, independent and free',
width=1024,
height=1024
)
print(f'Image: {response.url}')
print(f'Cost: $0.003 — same price regardless of who is AI czar')
// npm install nexaapi
import NexaAPI from 'nexaapi';
const client = new NexaAPI({ apiKey: 'YOUR_API_KEY' });
const response = await client.image.generate({
model: 'flux-schnell',
prompt: 'AI-powered developer workspace, no political dependencies',
width: 1024,
height: 1024
});
console.log('Cost: $0.003/image — policy-agnostic pricing');
Links
- NexaAPI: https://nexa-api.com
- RapidAPI: https://rapidapi.com/user/nexaquency
- Python SDK: https://pypi.org/project/nexaapi
- Node.js SDK: https://npmjs.com/package/nexaapi
- Source: https://techcrunch.com/2026/03/26/david-sacks-is-done-as-ai-czar-heres-what-hes-doing-instead/
Top comments (0)