AQIT
0.1.0
Toggle main menu visibility
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
"""
7
Aquin SDK — Python API for every framework capability.
8
9
The 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
17
Shipped loop is AQIT (`import aqit`; `aqit.train.run(...)`). These names stay as aliases.
18
"""
19
20
from
__future__
import
annotations
21
22
from
.
import
data, eval, inspect, patch, sae, session, simulate, train
23
from
._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
]
aquin
sdk
__init__.py
AQIT · Aquin Labs Private Limited · Apache 2.0 · Generated by
1.18.0