AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Put yourself at #— for$Amount in dollars Every dollar is 100 aura, and your lifetime total is your rank. You don't have to beat #1 - any amount lands you above whoever you can afford to pass. Location detected from your…
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
Put yourself at #— for$Amount in dollars Every dollar is 100 aura, and your lifetime total is your rank. You don't have to beat #1 - any amount lands you above whoever you can aff…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Notifications You must be signed in to change notification settings Fork 0 Star 4 BranchesTags Open more actions menu Latest commit History 3 Commits 3 Commits Folders and files NameName Last commit message Last commit…
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
Notifications You must be signed in to change notification settings Fork 0 Star 4 BranchesTags Open more actions menu Latest commit History 3 Commits 3 Commits Folders and files N…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:The artificial intelligence industry wants enterprises to measure progress in tokens, model calls and usage. But those are largely vendor-revenue metrics — not enterprise-value metrics. The Canva example shows why. On Aug. 6, The Information reported that Canva Inc. cut its 2026 revenue-growth forecast from 30% to 20% because its AI features cost far more to […] The post From tokenmaxxing to sovereign alpha: Who controls your AI economics? appeared first on SiliconANGLE.
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
The artificial intelligence industry wants enterprises to measure progress in tokens, model calls and usage. But those are largely vendor-revenue metrics — not enterprise-value me…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Notifications You must be signed in to change notification settings Fork 0 Star 1 BranchesTags Open more actions menu Latest commit History 6 Commits 6 Commits Folders and files NameName Last commit message Last commit…
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
Notifications You must be signed in to change notification settings Fork 0 Star 1 BranchesTags Open more actions menu Latest commit History 6 Commits 6 Commits Folders and files N…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Notifications You must be signed in to change notification settings Fork 5 Star 51 BranchesTags Open more actions menu Latest commit History 39 Commits 39 Commits Folders and files NameName Last commit message Last comm…
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
Notifications You must be signed in to change notification settings Fork 5 Star 51 BranchesTags Open more actions menu Latest commit History 39 Commits 39 Commits Folders and file…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Notifications You must be signed in to change notification settings Fork 2 Star 6 BranchesTags Open more actions menu Latest commit History 16 Commits 16 Commits Folders and files NameName Last commit message Last commi…
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
Notifications You must be signed in to change notification settings Fork 2 Star 6 BranchesTags Open more actions menu Latest commit History 16 Commits 16 Commits Folders and files…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:AI agents and bot accounts 19 August 2026 — HotCRP.com sites can now be connected to AI agents. If conference administrators allow it, bot accounts can read submissions, set tags, and write reviews, and PC members can c…
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
AI agents and bot accounts 19 August 2026 — HotCRP.com sites can now be connected to AI agents. If conference administrators allow it, bot accounts can read submissions, set tags,…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:<p><strong>Release:</strong> <a href="https://github.com/simonw/llm/releases/tag/0.33">llm 0.33</a></p> <p>My highlights from this release:</p> <blockquote> <ul> <li>Upgraded to the OpenAI Python library 3.x and switched the HTTP client dependency from <code>httpx</code> to <code>httpx2</code>. <a href="https://github.com/simonw/llm/issues/1608">#1608</a>, <a href="https://github.com/simonw/llm/pull/1631">#1631</a></li> </ul> </blockquote> <p>I shipped a quick <a href="https://simonwillison.net/2026/Aug/21/llm/">0.32.1 fix</a> for this yesterday, but this is the more comprehensive fix.</p> <blockquote> <ul> <li><code>llm embed</code> and <code>llm embed-multi</code> now accept <code>--key</code>. The Python <code>EmbeddingModel.embed()</code>, <code>EmbeddingModel.embed_multi()</code>, <code>Collection.embed()</code> and <code>Collection.embed_multi()</code> methods accept <code>key=</code> too, passing the resolved per-call key to embedding plugins without changing shared model state. Existing plugins that read <code>self.key</code> continue to work through a compatibility fallback. Thanks, <a href="https://github.com/ChrisJr404">ChrisJr404</a>. <a href="https://github.com/simonw/llm/issues/757">#757</a>, <a href="https://github.com/simonw/llm/pull/1620">#1620</a></li> </ul> </blockquote> <p>The embedding models now use the same pattern for keys that regular LLM models do.</p> <blockquote> <ul> <li><code>llm prompt -t/--template</code> can now be repeated to combine templates in order. This allows model configuration and options from one template to be used with a prompt from another.</li> </ul> </blockquote> <p>This unlocks a neat pattern where you can create templates that package a model with a set of default options:</p> <pre><code>llm -m gpt-5.6-luna -o reasoning_effort high --save lhigh llm "Generate an SVG of a pelican riding a bicycle" --save pelican # Combine and run the templates llm -t lhigh -t pelican </code></pre> <blockquote> <ul> <li>Reasoning-capable Responses API models now support a <code>reasoning_summary</code> option with <code>auto</code>, <code>concise</code>, and <code>detailed</code> values. This can be used with <a href="https://llm.datasette.io/en/stable/other-models.html#openai-endpoint">llm openai endpoint --responses</a>. <a href="https://github.com/simonw/llm/issues/1600">#1600</a></li> </ul> </blockquote> <p>This is particularly useful for exercising different models that provide their own imitation of the OpenAI Responses API.</p> <p>Tags: <a href="https://simonwillison.net/tags/annotated-release-notes">annotated-release-notes</a>, <a href="https://simonwillison.net/tags/llm">llm</a></p>
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
<p><strong>Release:</strong> <a href="https://github.com/simonw/llm/releases/tag/0.33">llm 0.33</a></p> <p>My highlights from this release:</p> <blockquote> <ul> <li>Upgraded to t…
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Breathe new life into an old TV by setting it up as a monitor for your Mac, Windows, or Linux laptop with gear you may already have around the house.
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
Breathe new life into an old TV by setting it up as a monitor for your Mac, Windows, or Linux laptop with gear you may already have around the house.
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:Android has had the advantage when it comes to changing your message wallpaper - but there is an easy way to do it in iOS 26, too, as long as you don't mind one thing.
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
Android has had the advantage when it comes to changing your message wallpaper - but there is an easy way to do it in iOS 26, too, as long as you don't mind one thing.
AI サービスが一時的に利用できないため、復旧後に翻訳を補完します。ソース概要:AI and Chauffeur Knowledge In Poor Charlie’s Almanac, Charlie Munger tells a story that really struck me. “Max Planck, after he won the Nobel Prize, went around Germany giving the same standard lecture on the new quantu…
AI 生成が一時的に利用できないため、ソース内容とフォールバックメタデータを保存しました。
AI and Chauffeur Knowledge In Poor Charlie’s Almanac, Charlie Munger tells a story that really struck me. “Max Planck, after he won the Nobel Prize, went around Germany giving the…