4cd2d4af2b
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Has been cancelled
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Has been cancelled
121 lines
2.6 KiB
Python
121 lines
2.6 KiB
Python
from typing import Any
|
|
|
|
from browser_use.llm.messages import (
|
|
AssistantMessage,
|
|
BaseMessage,
|
|
ContentPartImageParam,
|
|
ContentPartTextParam,
|
|
SystemMessage,
|
|
UserMessage,
|
|
)
|
|
|
|
|
|
class LiteLLMMessageSerializer:
|
|
@staticmethod
|
|
def _serialize_user_content(
|
|
content: str | list[ContentPartTextParam | ContentPartImageParam],
|
|
) -> str | list[dict[str, Any]]:
|
|
if isinstance(content, str):
|
|
return content
|
|
|
|
parts: list[dict[str, Any]] = []
|
|
for part in content:
|
|
if part.type == 'text':
|
|
parts.append(
|
|
{
|
|
'type': 'text',
|
|
'text': part.text,
|
|
}
|
|
)
|
|
elif part.type == 'image_url':
|
|
parts.append(
|
|
{
|
|
'type': 'image_url',
|
|
'image_url': {
|
|
'url': part.image_url.url,
|
|
'detail': part.image_url.detail,
|
|
},
|
|
}
|
|
)
|
|
return parts
|
|
|
|
@staticmethod
|
|
def _serialize_system_content(
|
|
content: str | list[ContentPartTextParam],
|
|
) -> str | list[dict[str, Any]]:
|
|
if isinstance(content, str):
|
|
return content
|
|
|
|
return [
|
|
{
|
|
'type': 'text',
|
|
'text': p.text,
|
|
}
|
|
for p in content
|
|
]
|
|
|
|
@staticmethod
|
|
def _serialize_assistant_content(
|
|
content: str | list[Any] | None,
|
|
) -> str | list[dict[str, Any]] | None:
|
|
if content is None:
|
|
return None
|
|
if isinstance(content, str):
|
|
return content
|
|
|
|
parts = []
|
|
for part in content:
|
|
if part.type == 'text':
|
|
parts.append(
|
|
{
|
|
'type': 'text',
|
|
'text': part.text,
|
|
}
|
|
)
|
|
elif part.type == 'refusal':
|
|
parts.append(
|
|
{
|
|
'type': 'text',
|
|
'text': f'[Refusal] {part.refusal}',
|
|
}
|
|
)
|
|
return parts
|
|
|
|
@staticmethod
|
|
def serialize(messages: list[BaseMessage]) -> list[dict[str, Any]]:
|
|
result: list[dict[str, Any]] = []
|
|
for msg in messages:
|
|
if isinstance(msg, UserMessage):
|
|
d: dict[str, Any] = {'role': 'user'}
|
|
d['content'] = LiteLLMMessageSerializer._serialize_user_content(msg.content)
|
|
if msg.name is not None:
|
|
d['name'] = msg.name
|
|
result.append(d)
|
|
|
|
elif isinstance(msg, SystemMessage):
|
|
d = {'role': 'system'}
|
|
d['content'] = LiteLLMMessageSerializer._serialize_system_content(msg.content)
|
|
if msg.name is not None:
|
|
d['name'] = msg.name
|
|
result.append(d)
|
|
|
|
elif isinstance(msg, AssistantMessage):
|
|
d = {'role': 'assistant'}
|
|
d['content'] = LiteLLMMessageSerializer._serialize_assistant_content(msg.content)
|
|
if msg.name is not None:
|
|
d['name'] = msg.name
|
|
if msg.tool_calls:
|
|
d['tool_calls'] = [
|
|
{
|
|
'id': tc.id,
|
|
'type': 'function',
|
|
'function': {
|
|
'name': tc.function.name,
|
|
'arguments': tc.function.arguments,
|
|
},
|
|
}
|
|
for tc in msg.tool_calls
|
|
]
|
|
result.append(d)
|
|
return result
|