mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-14 05:37:40 +02:00
8 lines
175 B
Python
8 lines
175 B
Python
from pydantic import BaseModel
|
|
from typing import Optional
|
|
|
|
class BrowserTab(BaseModel):
|
|
id: str
|
|
url: str = ""
|
|
title: str = ""
|
|
favicon: Optional[str] = None |