mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-16 14:57:15 +00:00
9 lines
224 B
Python
9 lines
224 B
Python
from __future__ import annotations
|
|
|
|
from langbot_plugin.api.definition.plugin import BasePlugin
|
|
|
|
|
|
class QARunnerPlugin(BasePlugin):
|
|
async def initialize(self) -> None:
|
|
self.ready_marker = 'qa-agent-runner-ready'
|