kanoa Documentation
Welcome to the kanoa documentation!
kanoa is an AI-powered analytics interpreter that brings multimodal LLM capabilities directly into your Python workflows.
Installation
pip install kanoa
Quick Start
import matplotlib.pyplot as plt
from kanoa import AnalyticsInterpreter
# Create a plot
plt.plot([1, 2, 3], [1, 4, 9])
plt.title("Growth Curve")
# Initialize interpreter
interpreter = AnalyticsInterpreter(backend='gemini')
# Interpret
result = interpreter.interpret(
fig=plt.gcf(),
context="Water quality analysis"
)
print(result.text)