|
16 | 16 | from typing import Any |
17 | 17 |
|
18 | 18 | _PROFILES: dict[str, dict[str, Any]] = { |
| 19 | + "chatgpt-image-latest": { |
| 20 | + "name": "chatgpt-image-latest", |
| 21 | + "release_date": "2025-12-16", |
| 22 | + "last_updated": "2025-12-16", |
| 23 | + "open_weights": False, |
| 24 | + "max_input_tokens": 0, |
| 25 | + "max_output_tokens": 0, |
| 26 | + "text_inputs": True, |
| 27 | + "image_inputs": True, |
| 28 | + "audio_inputs": False, |
| 29 | + "video_inputs": False, |
| 30 | + "text_outputs": True, |
| 31 | + "image_outputs": True, |
| 32 | + "audio_outputs": False, |
| 33 | + "video_outputs": False, |
| 34 | + "reasoning_output": False, |
| 35 | + "tool_calling": False, |
| 36 | + "attachment": True, |
| 37 | + "temperature": False, |
| 38 | + "image_url_inputs": True, |
| 39 | + "pdf_inputs": True, |
| 40 | + "pdf_tool_message": True, |
| 41 | + "image_tool_message": True, |
| 42 | + "tool_choice": True, |
| 43 | + }, |
19 | 44 | "codex-mini-latest": { |
20 | 45 | "name": "Codex Mini", |
21 | 46 | "release_date": "2025-05-16", |
|
899 | 924 | "image_tool_message": True, |
900 | 925 | "tool_choice": True, |
901 | 926 | }, |
| 927 | + "gpt-image-1": { |
| 928 | + "name": "gpt-image-1", |
| 929 | + "release_date": "2025-04-24", |
| 930 | + "last_updated": "2025-04-24", |
| 931 | + "open_weights": False, |
| 932 | + "max_input_tokens": 0, |
| 933 | + "max_output_tokens": 0, |
| 934 | + "text_inputs": True, |
| 935 | + "image_inputs": True, |
| 936 | + "audio_inputs": False, |
| 937 | + "video_inputs": False, |
| 938 | + "text_outputs": False, |
| 939 | + "image_outputs": True, |
| 940 | + "audio_outputs": False, |
| 941 | + "video_outputs": False, |
| 942 | + "reasoning_output": False, |
| 943 | + "tool_calling": False, |
| 944 | + "attachment": True, |
| 945 | + "temperature": False, |
| 946 | + "image_url_inputs": True, |
| 947 | + "pdf_inputs": True, |
| 948 | + "pdf_tool_message": True, |
| 949 | + "image_tool_message": True, |
| 950 | + "tool_choice": True, |
| 951 | + }, |
| 952 | + "gpt-image-1-mini": { |
| 953 | + "name": "gpt-image-1-mini", |
| 954 | + "release_date": "2025-09-26", |
| 955 | + "last_updated": "2025-09-26", |
| 956 | + "open_weights": False, |
| 957 | + "max_input_tokens": 0, |
| 958 | + "max_output_tokens": 0, |
| 959 | + "text_inputs": True, |
| 960 | + "image_inputs": True, |
| 961 | + "audio_inputs": False, |
| 962 | + "video_inputs": False, |
| 963 | + "text_outputs": True, |
| 964 | + "image_outputs": True, |
| 965 | + "audio_outputs": False, |
| 966 | + "video_outputs": False, |
| 967 | + "reasoning_output": False, |
| 968 | + "tool_calling": False, |
| 969 | + "attachment": True, |
| 970 | + "temperature": False, |
| 971 | + "image_url_inputs": True, |
| 972 | + "pdf_inputs": True, |
| 973 | + "pdf_tool_message": True, |
| 974 | + "image_tool_message": True, |
| 975 | + "tool_choice": True, |
| 976 | + }, |
| 977 | + "gpt-image-1.5": { |
| 978 | + "name": "gpt-image-1.5", |
| 979 | + "release_date": "2025-11-25", |
| 980 | + "last_updated": "2025-11-25", |
| 981 | + "open_weights": False, |
| 982 | + "max_input_tokens": 0, |
| 983 | + "max_output_tokens": 0, |
| 984 | + "text_inputs": True, |
| 985 | + "image_inputs": True, |
| 986 | + "audio_inputs": False, |
| 987 | + "video_inputs": False, |
| 988 | + "text_outputs": True, |
| 989 | + "image_outputs": True, |
| 990 | + "audio_outputs": False, |
| 991 | + "video_outputs": False, |
| 992 | + "reasoning_output": False, |
| 993 | + "tool_calling": False, |
| 994 | + "attachment": True, |
| 995 | + "temperature": False, |
| 996 | + "image_url_inputs": True, |
| 997 | + "pdf_inputs": True, |
| 998 | + "pdf_tool_message": True, |
| 999 | + "image_tool_message": True, |
| 1000 | + "tool_choice": True, |
| 1001 | + }, |
902 | 1002 | "o1": { |
903 | 1003 | "name": "o1", |
904 | 1004 | "release_date": "2024-12-05", |
|
0 commit comments