-
-
Notifications
You must be signed in to change notification settings - Fork 380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GPT-4.5 preview #795
Comments
This is surprising: llm -m gpt-4.5-preview-2025-02-27 'tell me your training cutoff'
I wonder if that's correct? |
llm -m gpt-4.5-preview 'Generate an SVG of a pelican riding a bicycle' <svg xmlns="http://www.w3.org/2000/svg" width="300" height="250" viewBox="0 0 300 250">
<!-- Bicycle Wheels -->
<circle cx="90" cy="200" r="40" stroke="#000" stroke-width="4" fill="none"/>
<circle cx="210" cy="200" r="40" stroke="#000" stroke-width="4" fill="none"/>
<!-- Bicycle Frame -->
<line x1="90" y1="200" x2="150" y2="150" stroke="#000" stroke-width="4"/>
<line x1="150" y1="150" x2="210" y2="200" stroke="#000" stroke-width="4"/>
<line x1="150" y1="150" x2="150" y2="120" stroke="#000" stroke-width="4"/>
<line x1="90" y1="200" x2="130" y2="130" stroke="#000" stroke-width="4"/>
<line x1="130" y1="130" x2="180" y2="130" stroke="#000" stroke-width="4"/>
<line x1="210" y1="200" x2="180" y2="130" stroke="#000" stroke-width="4"/>
<!-- Bicycle Handlebar -->
<line x1="180" y1="130" x2="190" y2="115" stroke="#000" stroke-width="4"/>
<line x1="180" y1="130" x2="170" y2="115" stroke="#000" stroke-width="4"/>
<!-- Pelican Body -->
<ellipse cx="150" cy="90" rx="30" ry="40" fill="#fff8e7" stroke="#000" stroke-width="3"/>
<!-- Pelican Neck -->
<path d="M150 60 Q170 10 200 40" fill="none" stroke="#000" stroke-width="3"/>
<!-- Pelican Head -->
<ellipse cx="200" cy="40" rx="15" ry="20" fill="#fff8e7" stroke="#000" stroke-width="3"/>
<!-- Pelican Beak -->
<polygon points="215,45 250,55 210,65 200,50" fill="#f5c55f" stroke="#000" stroke-width="3"/>
<!-- Pelican Eye -->
<circle cx="205" cy="35" r="3" fill="#000"/>
<!-- Pelican Wing -->
<path d="M130 80 Q100 70 120 100 Q130 90 130 80" fill="#e8dcc0" stroke="#000" stroke-width="2"/>
</svg> |
Need to make sure I'm supporting the right features. https://platform.openai.com/docs/models#gpt-4-5 says:
|
Until there's a release out you can test this like so: uvx --with 'https://github.com/simonw/llm/archive/801b08bf40788c09aed6175252876310312fe667.zip' \
llm -m gpt-4.5-preview 'impress me, somehow' |
It's very expensive! https://openai.com/api/pricing/ - currently $75.00 / 1M tokens input and $150/1M output! For comparison o1 is $15/$60 and GPT-4o is just $2.50/$10. |
Blogged a bunch of notes here: https://simonwillison.net/2025/Feb/27/introducing-gpt-45/ |
Given OpenAI's lack of confidence that they'll be releasing a full model:
I'm going to assign the |
https://openai.com/index/introducing-gpt-4-5/
simonw/scrape-openai-models@018e600 shows model IDs:
gpt-4.5-preview-2025-02-27
gpt-4.5-preview
The text was updated successfully, but these errors were encountered: