Tag: Python library

  • Simon Willison’s Weblog: gpt-image-1-mini

    Source URL: https://simonwillison.net/2025/Oct/6/gpt-image-1-mini/#atom-everything Source: Simon Willison’s Weblog Title: gpt-image-1-mini Feedly Summary: gpt-image-1-mini OpenAI released a new image model today: gpt-image-1-mini, which they describe as “A smaller image generation model that’s 80% less expensive than the large model." They released it very quietly – I didn’t hear about this in the DevDay keynote but I later…

  • Cloud Blog: Connect Spark data pipelines to Gemini and other AI models with Dataproc ML library

    Source URL: https://cloud.google.com/blog/products/data-analytics/gemini-and-vertex-ai-for-spark-with-dataproc-ml-library/ Source: Cloud Blog Title: Connect Spark data pipelines to Gemini and other AI models with Dataproc ML library Feedly Summary: Many data science teams rely on Apache Spark running on Dataproc managed clusters for powerful, large-scale data preparation. As these teams look to connect their data pipelines directly to machine learning models,…

  • Cloud Blog: AI Innovators: How JAX on TPU is helping Escalante advance AI-driven protein design

    Source URL: https://cloud.google.com/blog/topics/customers/escalante-uses-jax-on-tpus-for-ai-driven-protein-design/ Source: Cloud Blog Title: AI Innovators: How JAX on TPU is helping Escalante advance AI-driven protein design Feedly Summary: As a Python library for accelerator-oriented array computation and program transformation, JAX is widely recognized for its power in training large-scale AI models. But its core design as a system for composable function…

  • Simon Willison’s Weblog: OpenAI’s new open weight (Apache 2) models are really good

    Source URL: https://simonwillison.net/2025/Aug/5/gpt-oss/ Source: Simon Willison’s Weblog Title: OpenAI’s new open weight (Apache 2) models are really good Feedly Summary: The long promised OpenAI open weight models are here, and they are very impressive. They’re available under proper open source licenses – Apache 2.0 – and come in two sizes, 120B and 20B. OpenAI’s own…

  • Simon Willison’s Weblog: Trying out Qwen3 Coder Flash using LM Studio and Open WebUI and LLM

    Source URL: https://simonwillison.net/2025/Jul/31/qwen3-coder-flash/ Source: Simon Willison’s Weblog Title: Trying out Qwen3 Coder Flash using LM Studio and Open WebUI and LLM Feedly Summary: Qwen just released their sixth model(!) for this July called Qwen3-Coder-30B-A3B-Instruct – listed as Qwen3-Coder-Flash in their chat.qwen.ai interface. It’s 30.5B total parameters with 3.3B active at any one time. This means…

  • Cloud Blog: 25+ top gen AI how-to guides for enterprise

    Source URL: https://cloud.google.com/blog/products/ai-machine-learning/top-gen-ai-how-to-guides-for-enterprise/ Source: Cloud Blog Title: 25+ top gen AI how-to guides for enterprise Feedly Summary: The best way to learn AI is by building. From finding quick ways to deploy open models to building complex, multi-agentic systems, it’s easy to feel overwhelmed by the sheer volume of resources out there.  To that end,…

  • Simon Willison’s Weblog: awwaiid/gremllm

    Source URL: https://simonwillison.net/2025/Jul/4/gremllm/#atom-everything Source: Simon Willison’s Weblog Title: awwaiid/gremllm Feedly Summary: awwaiid/gremllm Delightfully cursed Python library by Brock Wilcox, built on top of LLM: from gremllm import Gremllm counter = Gremllm(“counter") counter.value = 5 counter.increment() print(counter.value) # 6? print(counter.to_roman_numerals()) # VI? You tell your Gremllm what it should be in the constructor, then it uses…

  • Simon Willison’s Weblog: My First Open Source AI Generated Library

    Source URL: https://simonwillison.net/2025/Jun/21/my-first-open-source-ai-generated-library/#atom-everything Source: Simon Willison’s Weblog Title: My First Open Source AI Generated Library Feedly Summary: My First Open Source AI Generated Library Armin Ronacher had Claude and Claude Code do almost all of the work in building, testing, packaging and publishing a new Python library based on his design: It wrote ~1100 lines…