Published · AI-generated, automated fact-check against live catalog · 中文版
Sergey Brin, Gemini, and the Open-Model API Shift
TL;DR: Google co-founder Sergey Brin recently revealed that Gemini—Google's own AI model—was once on the company's internal coding "no list," meaning employees weren't allowed to use it for certain tasks. This anecdote highlights how even major AI vendors struggle with internal adoption, and it's a useful reminder for developers to evaluate models on technical merit rather than brand loyalty. For cost-sensitive or specialized coding work, open-model APIs like those on TokShop offer a practical alternative worth benchmarking.
Why Sergey Brin's "No List" Comment Matters
Sergey Brin discovered that Gemini, the model Google launched as Bard in 2023, was on an internal list of tools employees were discouraged from using for coding tasks. The news, reported by Inshorts, came from Brin's own admission during a company meeting. The irony isn't lost: the co-founder of Google found out about his own company's model being sidelined by its engineers.
This matters because it reveals a practical truth about AI adoption: internal politics, historical performance, and team habits often outweigh technical capability. Gemini's early iterations had well-documented quality issues, and the "no list" was likely a holdover from that period. For developers, the lesson is straightforward—don't assume a model is right for your workload just because it comes from a famous lab.
Should Developers Care About Model Provenance?
The short answer is yes, but not in the way you might think. When Brin's anecdote surfaced, it trended because people enjoy seeing a tech giant stumble. For a developer, though, the actionable takeaway is about evaluation methodology.
You should be asking: What does my specific task require, and which model performs best on it at a price I can afford? Provenance—who built the model—matters for trust, licensing, and data handling. But it shouldn't be the sole factor. A model that was "on the no list" at one company might be excellent for your use case, and vice versa.
This is especially relevant for coding tasks. Google's internal ban likely stemmed from specific quality benchmarks that have since improved. Rather than relying on reputation, run your own tests. Many developers find that open models like DeepSeek V3.2 or Qwen3 Coder handle niche coding patterns better than general-purpose models from larger vendors.
What Are the Best Open-Model API Alternatives?
If you're exploring beyond the big-name APIs, TokShop offers several OpenAI-compatible endpoints that you can test with minimal setup. Here's a quick comparison of the current lineup:
| Model | Context Window | Input Price (per 1M tokens) | Output Price (per 1M tokens) | Best For |
|---|---|---|---|---|
| DeepSeek V3.2 | 128,000 | $0.42 | $0.63 | Budget-friendly general tasks |
| GLM 4.6 | 200,000 | $0.90 | $3.30 | Long documents, balanced quality |
| Kimi K2 | 131,072 | $0.855 | $3.45 | Complex reasoning, agent workflows |
| Qwen3 Coder | 262,144 | $2.25 | $11.25 | Code generation, large codebases |
The price differences are stark. DeepSeek V3.2 costs about a fifth of Qwen3 Coder for input tokens. But Qwen3 Coder offers double the context window and is specifically tuned for programming tasks. If you're processing a 200,000-token repository, Qwen3 Coder is your only option in this list.
For most developers, the sweet spot is testing two or three models against your actual workload. TokShop's pay-as-you-go model makes this cheap—you can run a few hundred test calls for under a dollar on the cheaper endpoints.
How Do I Actually Test These Models?
Getting started is straightforward. TokShop's API is OpenAI-compatible, so you can use any existing OpenAI SDK. Here's a minimal Python example:
from openai import OpenAI
client = OpenAI(
base_url="https://tokshop.xyz/v1",
api_key="sk-tok-your-key-here"
)
response = client.chat.completions.create(
model="deepseek-v3.2",
messages=[
{"role": "user", "content": "Write a Python function to reverse a linked list."}
]
)
print(response.choices[0].message.content)
You'll need to sign up at TokShop's registration page, create an API key in the dashboard, and add prepaid credits. Keys are shown only once at creation, so store them securely.
For a fair comparison, run the same prompt set across multiple models. Track not just correctness but also latency and token usage. TokShop logs every call with exact token counts and USD cost, which makes cost-per-successful-task calculations trivial.
What Should You Benchmark Before Switching?
Before you move any production workload to an open-model API, benchmark three things: output quality, latency, and total cost. Quality is subjective, so define success criteria for your domain. For coding, that might be unit test pass rate. For summarization, it might be factual consistency checks.
Latency matters for interactive applications. Check the 95th percentile response time, not just the average. Cost is more than price per token—factor in retry rates, prompt engineering effort, and any post-processing you need.
One practical tip: start with a small, non-critical workload. Run it in parallel with your existing solution for a week. Compare the logs. TokShop's usage dashboard makes this easy because every call is itemized. If the open model matches your quality bar at a lower price, scale up gradually.
FAQ
Is Gemini actually bad for coding?
No. The "no list" was an internal policy that likely reflected early performance issues. Modern Gemini versions are competitive. The anecdote is a reminder that internal policies lag behind model improvements, not a definitive quality verdict.
Can I use TokShop models for production coding tasks?
Yes, but with caveats. Models like Qwen3 Coder are specifically tuned for code generation, and DeepSeek V3.2 is cost-effective for high-volume tasks. However, you should always benchmark against your own test suite before committing production traffic.
How does TokShop pricing compare to Google's API?
TokShop's models are generally cheaper per token than major vendor APIs, but the exact comparison depends on which Google model you're using. Check the TokShop pricing page for current rates and compare against your existing invoice. Remember that total cost includes retries and prompt engineering, not just per-token price.
All models discussed are live on our OpenAI-compatible API with transparent per-token pricing. See pricing and get a key →