mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-10 08:05:22 +02:00
20 lines
503 B
Python
20 lines
503 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from api.services.integrations.base import IntegrationPackageSpec
|
||
|
|
from api.services.integrations.registry import register_package
|
||
|
|
|
||
|
|
from .completion import run_completion
|
||
|
|
from .node import NODE
|
||
|
|
from .runtime import create_runtime_sessions
|
||
|
|
|
||
|
|
PACKAGE = register_package(
|
||
|
|
IntegrationPackageSpec(
|
||
|
|
name="tuner",
|
||
|
|
nodes=(NODE,),
|
||
|
|
create_runtime_sessions=create_runtime_sessions,
|
||
|
|
run_completion=run_completion,
|
||
|
|
)
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = ["PACKAGE"]
|