A module to add logging in json format that an AI could easily understand.
Project description
AI Logger
A Python module for structured logging in a format that's easily parsable by AI systems. It provides comprehensive, context-rich logs to help AI systems understand application behavior.
Features
- JSON-formatted logs optimized for AI consumption
- Automatic capturing of context (filename, line number, function)
- Decorators for easy function and class wrapping
- Support for different event types (model, data, error)
- Simple integration with existing Python logging
Installation
# Install from PyPI
pip install ai-logger
# Or install from source using Poetry
poetry install
Example Usage
The package includes a complete example with Click CLI commands to demonstrate the AI Logger functionality:
# Run all examples
poetry run run-example run-all
# Run just the function example
poetry run run-example run-function --size 200
# Run just the class example
poetry run run-example run-class --initial 10 --operations 8
# Run just the module example
poetry run run-example run-module
Basic Code Usage
Direct Import and Usage
# Import directly from the package
import logging
from ai_logger import init_ai_logger, auto_wrap, auto_wrap_class
# Initialize the global logger
logger = init_ai_logger(
app_name="my_app",
log_file="ai_logs.json",
console_output=True,
log_level=logging.INFO, # Optional, defaults to WARNING
capture_loggers=["sqlalchemy", "uvicorn", "custom_logger_name"], # Optional, capture other loggers
capture_all_loggers=False # Optional, capture all Python loggers
)
# Log a model event
logger.log_model_event(
model_name="gpt-4",
event_type="inference",
input_tokens=150,
output_tokens=30,
latency_ms=500
)
# Use the auto_wrap decorator for functions
@auto_wrap(component="data_processor")
def process_data(data):
# Function code here
return result
# Use the auto_wrap_class decorator for classes
@auto_wrap_class(component="ml_model")
class MyModel:
def predict(self, inputs):
# All methods are automatically wrapped
return prediction
def train(self, dataset):
# Training is also logged
return training_results
Advanced Usage with Manual Logger
from ai_logger import AILogger
# Create a logger instance manually
custom_logger = AILogger(
app_name="custom_app",
log_file="custom_logs.json",
console_output=True
)
# Log a data event
custom_logger.log_data_event(
data_source="database",
event_type="query",
record_count=1250,
details={"query_time_ms": 45, "table": "users"}
)
# Log an error event
try:
# Some code that might fail
result = 1 / 0
except Exception as e:
custom_logger.log_error(
error_type="ZeroDivisionError",
error_message=str(e),
component="math_operations",
include_traceback=True,
severity="ERROR"
)
# Wrap a function with this specific logger
@custom_logger.wrap_function(component="data_processor")
def process_data(data):
# Function code here
return result
# Wrap an entire class with this specific logger
@custom_logger.wrap_class(component="ml_model")
class MyModel:
def predict(self, inputs):
# Method code here
return prediction
Log Structure
Events are stored as JSON objects with the following structure:
{
"event_id": "unique-uuid",
"timestamp": "2023-07-20T14:30:00.123456",
"event_type": "inference",
"component": "model",
"file_name": "/path/to/file.py",
"line_number": 42,
"function_name": "predict",
"model_name": "gpt-4",
"input_tokens": 150,
"output_tokens": 30,
"latency_ms": 500,
"details": {
"app_name": "my_app",
"custom_field": "custom_value"
}
}
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ai_logger-0.1.1.tar.gz.
File metadata
- Download URL: ai_logger-0.1.1.tar.gz
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee6d4e03116592701b33e8ad8e2b98734e7a055b6575e943f98646a16b73950c
|
|
| MD5 |
e4fa7e4f7c0866af51568dc37a53be9a
|
|
| BLAKE2b-256 |
f1e45d6ae55c9abfa999a67626757404f121e56dcb994d6b5172a2fad4147925
|
File details
Details for the file ai_logger-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ai_logger-0.1.1-py3-none-any.whl
- Upload date:
- Size: 20.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66986da59f7478463011124ab117abf8717b3b650bd22de1a80e8b799792cc35
|
|
| MD5 |
b62205248f316b11283e87b0fe5ce41e
|
|
| BLAKE2b-256 |
54f965f800796a64cefd840ead0fb15c85d19bb973590c3a00be362fd55b05b2
|