Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions MODEL_INFO.md
Original file line number Diff line number Diff line change
@@ -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.
40 changes: 40 additions & 0 deletions query_model.py
Original file line number Diff line number Diff line change
@@ -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()