From cdc2fc8656c52b42ab27861cfa38e20044beacbf Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Fri, 13 Mar 2026 12:51:41 +0000 Subject: [PATCH 1/2] Initial plan From 633a3e03f779a00d9331026e2c9772b13a616c5a Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Fri, 13 Mar 2026 12:53:53 +0000 Subject: [PATCH 2/2] Add Python script to query current AI model information Co-authored-by: KacperGratowski <111381308+KacperGratowski@users.noreply.github.com> --- MODEL_INFO.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ query_model.py | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 89 insertions(+) create mode 100644 MODEL_INFO.md create mode 100755 query_model.py diff --git a/MODEL_INFO.md b/MODEL_INFO.md new file mode 100644 index 0000000..644fb4e --- /dev/null +++ b/MODEL_INFO.md @@ -0,0 +1,49 @@ +# Informacje o modelu AI + +## Jaki model jest obecnie używany? + +Ten projekt zawiera skrypt Python do wyświetlania informacji o aktualnie używanym modelu AI. + +### Aktualny model + +- **Nazwa modelu**: Claude Sonnet 4.5 +- **ID modelu**: claude-sonnet-4-5-20250929 +- **Dostawca**: Anthropic +- **Data graniczna wiedzy**: Styczeń 2025 + +### Jak używać + +Uruchom skrypt Python: + +```bash +python3 query_model.py +``` + +### Wynik + +Skrypt wyświetli szczegółowe informacje o aktualnie używanym modelu AI w czytelnym formacie. + +--- + +## What model is currently being used? + +This project includes a Python script to display information about the currently used AI model. + +### Current model + +- **Model Name**: Claude Sonnet 4.5 +- **Model ID**: claude-sonnet-4-5-20250929 +- **Provider**: Anthropic +- **Knowledge Cutoff**: January 2025 + +### How to use + +Run the Python script: + +```bash +python3 query_model.py +``` + +### Output + +The script will display detailed information about the currently used AI model in a readable format. diff --git a/query_model.py b/query_model.py new file mode 100755 index 0000000..a9ea077 --- /dev/null +++ b/query_model.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python3 +""" +Script to display information about the current AI model being used. +""" + +def get_current_model_info(): + """ + Returns information about the current AI model. + + This script is running in the context of Claude Code (claude-sonnet-4-5-20250929). + """ + model_info = { + "model_name": "Claude Sonnet 4.5", + "model_id": "claude-sonnet-4-5-20250929", + "provider": "Anthropic", + "description": "Advanced AI assistant powered by Claude Sonnet 4.5", + "knowledge_cutoff": "January 2025" + } + return model_info + + +def display_model_info(): + """ + Display the current model information in a user-friendly format. + """ + info = get_current_model_info() + + print("=" * 60) + print("Current AI Model Information") + print("=" * 60) + print(f"Model Name: {info['model_name']}") + print(f"Model ID: {info['model_id']}") + print(f"Provider: {info['provider']}") + print(f"Description: {info['description']}") + print(f"Knowledge Cutoff: {info['knowledge_cutoff']}") + print("=" * 60) + + +if __name__ == "__main__": + display_model_info()