@mono-agent/agent-runtime 0.13.0 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/ai/backend.js DELETED
@@ -1,17 +0,0 @@
1
- import { RUNTIME_CAPABILITIES, runtimeCapabilities } from "./runtime/capabilities.js";
2
-
3
- // Back-compat export name for callers that still ask for backend capabilities.
4
- // The canonical source is the runtime bridge registry.
5
- export const BACKEND_CAPABILITIES = RUNTIME_CAPABILITIES;
6
-
7
- export function backendCapabilities(sdkOrModel) {
8
- return runtimeCapabilities(sdkOrModel);
9
- }
10
-
11
- export function backendUsesExecenvConfig(sdk) {
12
- return !!RUNTIME_CAPABILITIES[sdk]?.native_runtime_config;
13
- }
14
-
15
- export function backendSupportsSessionResume(sdk) {
16
- return !!RUNTIME_CAPABILITIES[sdk]?.supports_session_resume;
17
- }
@@ -1,5 +0,0 @@
1
- export {
2
- listRuntimeBridges as listProviders,
3
- resolveRuntimeBridge as findProviderForModel,
4
- runtimeCapabilities,
5
- } from "./runtime/registry.js";