AQIT 0.1.0
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1# Copyright (c) 2025-present Aquin Labs Private Limited. All Rights Reserved.
2# This file is part of the Aquin Engine. Unauthorized copying, modification,
3# distribution, or use of this file, via any medium, is strictly prohibited.
4# Proprietary and confidential. See LICENSE for terms.
5
6"""
7Aquin SDK — Python API for every framework capability.
8
9The CLI is a thin argv/print layer over this package. Prefer::
10
11 import aquin
12 from aquin import sdk
13
14 aquin.init(...) # training recorder
15 sdk.session.load_model("meta-llama/Llama-3.2-1B-Instruct")
16
17Shipped loop is AQIT (`import aqit`; `aqit.train.run(...)`). These names stay as aliases.
18"""
19
20from __future__ import annotations
21
22from . import data, eval, inspect, patch, sae, session, simulate, train
23from ._runtime import AquinError, invoke
24
25__all__ = [
26 "AquinError",
27 "invoke",
28 "session",
29 "data",
30 "eval",
31 "inspect",
32 "patch",
33 "sae",
34 "simulate",
35 "train",
36]