MCPcopy Index your code
hub / github.com/microsoft/Webwright / __call__

Method __call__

src/webwright/models/base.py:565–570  ·  view source on GitHub ↗
(
        self,
        messages: list[dict[str, Any]],
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

563 self.config.max_output_tokens = original_max_output_tokens
564
565 def __call__(
566 self,
567 messages: list[dict[str, Any]],
568 **kwargs: Any,
569 ) -> str:
570 return run_async(self._complete_text_async(messages, **kwargs))
571
572 def query(self, messages: list[dict[str, Any]], **kwargs) -> dict[str, Any]:
573 return run_async(self._query_async(messages))

Callers

nothing calls this directly

Calls 2

_complete_text_asyncMethod · 0.95
run_asyncFunction · 0.90

Tested by

no test coverage detected