# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= from mirage.accessor.langfuse import LangfuseAccessor from mirage.core.langfuse.glob import resolve_glob as _resolve_glob from mirage.resource.base import BaseResource from mirage.resource.langfuse.config import LangfuseConfig from mirage.resource.langfuse.prompt import PROMPT from mirage.types import ResourceName class LangfuseResource(BaseResource): name: str = ResourceName.LANGFUSE caches_reads: bool = True PROMPT: str = PROMPT def __init__(self, config: LangfuseConfig) -> None: super().__init__() self.config = config self.accessor = LangfuseAccessor(self.config) from mirage.commands.builtin.langfuse import COMMANDS from mirage.ops.langfuse import OPS as LANGFUSE_VFS_OPS for fn in COMMANDS: self.register(fn) for fn in LANGFUSE_VFS_OPS: self.register_op(fn) async def resolve_glob(self, paths, prefix: str = ""): return await _resolve_glob( self.accessor, paths, index=self._index, ) async def fingerprint(self, path: str) -> str | None: return None def get_state(self) -> dict: return self.config_state(self.config) def load_state(self, state: dict) -> None: pass