Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
27 lines
848 B
Python
27 lines
848 B
Python
from openai.types.chat import ChatCompletionMessageParam
|
|
|
|
from browser_use.llm.messages import BaseMessage
|
|
from browser_use.llm.openai.serializer import OpenAIMessageSerializer
|
|
|
|
|
|
class OpenRouterMessageSerializer:
|
|
"""
|
|
Serializer for converting between custom message types and OpenRouter message formats.
|
|
|
|
OpenRouter uses the OpenAI-compatible API, so we can reuse the OpenAI serializer.
|
|
"""
|
|
|
|
@staticmethod
|
|
def serialize_messages(messages: list[BaseMessage]) -> list[ChatCompletionMessageParam]:
|
|
"""
|
|
Serialize a list of browser_use messages to OpenRouter-compatible messages.
|
|
|
|
Args:
|
|
messages: List of browser_use messages
|
|
|
|
Returns:
|
|
List of OpenRouter-compatible messages (identical to OpenAI format)
|
|
"""
|
|
# OpenRouter uses the same message format as OpenAI
|
|
return OpenAIMessageSerializer.serialize_messages(messages)
|