LazyHumanity

> |

Pragmatic AI, informed by research and crafted to ship interesting products.

What We're Building

Tools and systems that bridge the gap between human creativity and AI efficiency

TinyLoop

TinyLoop

Open Source

A lightweight Python library for building AI-powered applications with clean function calling, vision support, and MLflow integration. Built on top of LiteLLM with 100% compatibility.

ai_app.py
from tinyloop.inference.litellm import LLM
from tinyloop.features.function_calling import Tool
from tinyloop.modules.tool_loop import ToolLoop
# Initialize AI model
llm = LLM("openai/gpt-4")
# Create function tools
tool = Tool(my_function)
# Create tool loop workflow
loop = ToolLoop(tools=[tool])
result = loop("Complete task")