30 lines
799 B
Python
30 lines
799 B
Python
"""``harness: pi-native`` wrap for the native Pi TUI."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from omnigent.inner.executor import Executor
|
|
from omnigent.inner.pi_native_executor import PiNativeExecutor
|
|
from omnigent.runtime.harnesses._executor_adapter import ExecutorAdapter
|
|
|
|
|
|
def _build_pi_native_executor() -> Executor:
|
|
"""
|
|
Construct the native Pi bridge executor.
|
|
|
|
:returns: A :class:`PiNativeExecutor` configured from the harness
|
|
spawn environment.
|
|
"""
|
|
return PiNativeExecutor()
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
"""
|
|
Build the ``pi-native`` harness FastAPI app.
|
|
|
|
:returns: The FastAPI app from :class:`ExecutorAdapter`.
|
|
"""
|
|
adapter = ExecutorAdapter(executor_factory=_build_pi_native_executor)
|
|
return adapter.build()
|