mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-07 22:36:02 +00:00
* refactor: pipeline routing rules - add routed_by_rule bypass and diagnostic logging - Add routing rules editor (RoutingRulesEditor component) - Add routed_by_rule bypass logic in response rules - Add diagnostic logging for pipeline routing - Database migration for bot pipeline routing rules - Extract RoutingRulesEditor component from BotForm - Revert log levels to debug * feat: add message_has_element routing rule type Support routing by message element type (Image, Voice, File, Forward, Face, At, AtAll, Quote) with eq/neq operators. * test: add unit tests for pipeline routing rules 20 tests covering _match_operator (eq/neq/contains/not_contains/ starts_with/regex/invalid) and resolve_pipeline_uuid (launcher_type/ launcher_id/message_content/message_has_element/first-match-wins/ skip-invalid/default-operator). * fix(web): add missing 'message_has_element' to routing rule type validation The Zod schema and TypeScript type for PipelineRoutingRule.type were missing the 'message_has_element' variant, causing silent form validation failure when saving routing rules with this type. * feat: add pipeline discard functionality and localization support * feat(web): improve drag-and-drop with DragOverlay, add discard monitoring and pipeline icons - Add DragOverlay for smooth cursor-following drag in routing rules editor - Remove transition to eliminate redundant swap animation on drop - Record discarded messages in monitoring system via _record_discarded_message - Display pipeline name (Workflow icon) and runner name (Play icon) on session monitor messages - Show discard badge on discarded messages in session monitor - Add i18n translations for discarded/userMessage/botMessage * fix: ensure discarded messages appear in session monitor and improve icons - Create/update monitoring session for discarded messages so they show in the bot session monitor (was only inserting message rows, not sessions) - Use human-readable 'Discarded' as pipeline_name instead of '__discard__' - Change runner icon from Play to Bot for better AI Agent semantics * fix: merge discarded messages into same session and remove session-level pipeline name - Use LauncherTypes enum for session_id in discarded messages to match the format used by monitoring_helper (fixes duplicate sessions) - Don't overwrite session pipeline info on discard — a session can have messages from multiple pipelines - Remove pipeline_name from session list and chat header since it's now shown per-message and a session is no longer single-pipeline * fix(web): only show save button on config tab in bot detail page * fix(web): scroll to bottom after messages render in session monitor --------- Co-authored-by: RockChinQ <rockchinq@gmail.com>
73 lines
2.5 KiB
Python
73 lines
2.5 KiB
Python
from __future__ import annotations
|
||
|
||
import asyncio
|
||
import typing
|
||
|
||
import langbot_plugin.api.entities.builtin.platform.message as platform_message
|
||
import langbot_plugin.api.entities.builtin.platform.events as platform_events
|
||
import langbot_plugin.api.entities.builtin.provider.session as provider_session
|
||
import langbot_plugin.api.entities.builtin.pipeline.query as pipeline_query
|
||
import langbot_plugin.api.definition.abstract.platform.adapter as abstract_platform_adapter
|
||
|
||
|
||
class QueryPool:
|
||
"""请求池,请求获得调度进入pipeline之前,保存在这里"""
|
||
|
||
query_id_counter: int = 0
|
||
|
||
pool_lock: asyncio.Lock
|
||
|
||
queries: list[pipeline_query.Query]
|
||
|
||
cached_queries: dict[int, pipeline_query.Query]
|
||
"""Cached queries, used for plugin backward api call, will be removed after the query completely processed"""
|
||
|
||
condition: asyncio.Condition
|
||
|
||
def __init__(self):
|
||
self.query_id_counter = 0
|
||
self.pool_lock = asyncio.Lock()
|
||
self.queries = []
|
||
self.cached_queries = {}
|
||
self.condition = asyncio.Condition(self.pool_lock)
|
||
|
||
async def add_query(
|
||
self,
|
||
bot_uuid: str,
|
||
launcher_type: provider_session.LauncherTypes,
|
||
launcher_id: typing.Union[int, str],
|
||
sender_id: typing.Union[int, str],
|
||
message_event: platform_events.MessageEvent,
|
||
message_chain: platform_message.MessageChain,
|
||
adapter: abstract_platform_adapter.AbstractMessagePlatformAdapter,
|
||
pipeline_uuid: typing.Optional[str] = None,
|
||
routed_by_rule: bool = False,
|
||
) -> pipeline_query.Query:
|
||
async with self.condition:
|
||
query_id = self.query_id_counter
|
||
query = pipeline_query.Query(
|
||
bot_uuid=bot_uuid,
|
||
query_id=query_id,
|
||
launcher_type=launcher_type,
|
||
launcher_id=launcher_id,
|
||
sender_id=sender_id,
|
||
message_event=message_event,
|
||
message_chain=message_chain,
|
||
variables={'_routed_by_rule': routed_by_rule},
|
||
resp_messages=[],
|
||
resp_message_chain=[],
|
||
adapter=adapter,
|
||
pipeline_uuid=pipeline_uuid,
|
||
)
|
||
self.queries.append(query)
|
||
self.cached_queries[query_id] = query
|
||
self.query_id_counter += 1
|
||
self.condition.notify_all()
|
||
|
||
async def __aenter__(self):
|
||
await self.pool_lock.acquire()
|
||
return self
|
||
|
||
async def __aexit__(self, exc_type, exc_val, exc_tb):
|
||
self.pool_lock.release()
|