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()