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
232 lines
7.3 KiB
Python
232 lines
7.3 KiB
Python
import logging
|
|
from dataclasses import dataclass
|
|
from typing import Any, Literal, TypeVar, overload
|
|
|
|
from groq import (
|
|
APIError,
|
|
APIResponseValidationError,
|
|
APIStatusError,
|
|
AsyncGroq,
|
|
NotGiven,
|
|
RateLimitError,
|
|
Timeout,
|
|
)
|
|
from groq.types.chat import ChatCompletion, ChatCompletionToolChoiceOptionParam, ChatCompletionToolParam
|
|
from groq.types.chat.completion_create_params import (
|
|
ResponseFormatResponseFormatJsonSchema,
|
|
ResponseFormatResponseFormatJsonSchemaJsonSchema,
|
|
)
|
|
from httpx import URL
|
|
from pydantic import BaseModel
|
|
|
|
from browser_use.llm.base import BaseChatModel, ChatInvokeCompletion
|
|
from browser_use.llm.exceptions import ModelProviderError, ModelRateLimitError
|
|
from browser_use.llm.groq.parser import try_parse_groq_failed_generation
|
|
from browser_use.llm.groq.serializer import GroqMessageSerializer
|
|
from browser_use.llm.messages import BaseMessage
|
|
from browser_use.llm.schema import SchemaOptimizer
|
|
from browser_use.llm.views import ChatInvokeUsage
|
|
|
|
GroqVerifiedModels = Literal[
|
|
'meta-llama/llama-4-maverick-17b-128e-instruct',
|
|
'meta-llama/llama-4-scout-17b-16e-instruct',
|
|
'qwen/qwen3-32b',
|
|
'moonshotai/kimi-k2-instruct',
|
|
'openai/gpt-oss-20b',
|
|
'openai/gpt-oss-120b',
|
|
]
|
|
|
|
JsonSchemaModels = [
|
|
'meta-llama/llama-4-maverick-17b-128e-instruct',
|
|
'meta-llama/llama-4-scout-17b-16e-instruct',
|
|
'openai/gpt-oss-20b',
|
|
'openai/gpt-oss-120b',
|
|
]
|
|
|
|
ToolCallingModels = [
|
|
'moonshotai/kimi-k2-instruct',
|
|
]
|
|
|
|
T = TypeVar('T', bound=BaseModel)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
@dataclass
|
|
class ChatGroq(BaseChatModel):
|
|
"""
|
|
A wrapper around AsyncGroq that implements the BaseLLM protocol.
|
|
"""
|
|
|
|
# Model configuration
|
|
model: GroqVerifiedModels | str
|
|
|
|
# Model params
|
|
temperature: float | None = None
|
|
service_tier: Literal['auto', 'on_demand', 'flex'] | None = None
|
|
top_p: float | None = None
|
|
seed: int | None = None
|
|
|
|
# Client initialization parameters
|
|
api_key: str | None = None
|
|
base_url: str | URL | None = None
|
|
timeout: float | Timeout | NotGiven | None = None
|
|
max_retries: int = 10 # Increase default retries for automation reliability
|
|
|
|
def get_client(self) -> AsyncGroq:
|
|
return AsyncGroq(api_key=self.api_key, base_url=self.base_url, timeout=self.timeout, max_retries=self.max_retries)
|
|
|
|
@property
|
|
def provider(self) -> str:
|
|
return 'groq'
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
return str(self.model)
|
|
|
|
def _get_usage(self, response: ChatCompletion) -> ChatInvokeUsage | None:
|
|
usage = (
|
|
ChatInvokeUsage(
|
|
prompt_tokens=response.usage.prompt_tokens,
|
|
completion_tokens=response.usage.completion_tokens,
|
|
total_tokens=response.usage.total_tokens,
|
|
prompt_cached_tokens=None, # Groq doesn't support cached tokens
|
|
prompt_cache_creation_tokens=None,
|
|
prompt_image_tokens=None,
|
|
)
|
|
if response.usage is not None
|
|
else None
|
|
)
|
|
return usage
|
|
|
|
@overload
|
|
async def ainvoke(
|
|
self, messages: list[BaseMessage], output_format: None = None, **kwargs: Any
|
|
) -> ChatInvokeCompletion[str]: ...
|
|
|
|
@overload
|
|
async def ainvoke(self, messages: list[BaseMessage], output_format: type[T], **kwargs: Any) -> ChatInvokeCompletion[T]: ...
|
|
|
|
async def ainvoke(
|
|
self, messages: list[BaseMessage], output_format: type[T] | None = None, **kwargs: Any
|
|
) -> ChatInvokeCompletion[T] | ChatInvokeCompletion[str]:
|
|
groq_messages = GroqMessageSerializer.serialize_messages(messages)
|
|
|
|
try:
|
|
if output_format is None:
|
|
return await self._invoke_regular_completion(groq_messages)
|
|
else:
|
|
return await self._invoke_structured_output(groq_messages, output_format)
|
|
|
|
except RateLimitError as e:
|
|
raise ModelRateLimitError(message=e.response.text, status_code=e.response.status_code, model=self.name) from e
|
|
|
|
except APIResponseValidationError as e:
|
|
raise ModelProviderError(message=e.response.text, status_code=e.response.status_code, model=self.name) from e
|
|
|
|
except APIStatusError as e:
|
|
if output_format is None:
|
|
raise ModelProviderError(message=e.response.text, status_code=e.response.status_code, model=self.name) from e
|
|
else:
|
|
try:
|
|
logger.debug(f'Groq failed generation: {e.response.text}; fallback to manual parsing')
|
|
|
|
parsed_response = try_parse_groq_failed_generation(e, output_format)
|
|
|
|
logger.debug('Manual error parsing successful ✅')
|
|
|
|
return ChatInvokeCompletion(
|
|
completion=parsed_response,
|
|
usage=None, # because this is a hacky way to get the outputs
|
|
# TODO: @groq needs to fix their parsers and validators
|
|
)
|
|
except Exception as _:
|
|
raise ModelProviderError(message=str(e), status_code=e.response.status_code, model=self.name) from e
|
|
|
|
except APIError as e:
|
|
raise ModelProviderError(message=e.message, model=self.name) from e
|
|
except Exception as e:
|
|
raise ModelProviderError(message=str(e), model=self.name) from e
|
|
|
|
async def _invoke_regular_completion(self, groq_messages) -> ChatInvokeCompletion[str]:
|
|
"""Handle regular completion without structured output."""
|
|
chat_completion = await self.get_client().chat.completions.create(
|
|
messages=groq_messages,
|
|
model=self.model,
|
|
service_tier=self.service_tier,
|
|
temperature=self.temperature,
|
|
top_p=self.top_p,
|
|
seed=self.seed,
|
|
)
|
|
usage = self._get_usage(chat_completion)
|
|
return ChatInvokeCompletion(
|
|
completion=chat_completion.choices[0].message.content or '',
|
|
usage=usage,
|
|
)
|
|
|
|
async def _invoke_structured_output(self, groq_messages, output_format: type[T]) -> ChatInvokeCompletion[T]:
|
|
"""Handle structured output using either tool calling or JSON schema."""
|
|
schema = SchemaOptimizer.create_optimized_json_schema(output_format)
|
|
|
|
if self.model in ToolCallingModels:
|
|
response = await self._invoke_with_tool_calling(groq_messages, output_format, schema)
|
|
else:
|
|
response = await self._invoke_with_json_schema(groq_messages, output_format, schema)
|
|
|
|
if not response.choices[0].message.content:
|
|
raise ModelProviderError(
|
|
message='No content in response',
|
|
status_code=500,
|
|
model=self.name,
|
|
)
|
|
|
|
parsed_response = output_format.model_validate_json(response.choices[0].message.content)
|
|
usage = self._get_usage(response)
|
|
|
|
return ChatInvokeCompletion(
|
|
completion=parsed_response,
|
|
usage=usage,
|
|
)
|
|
|
|
async def _invoke_with_tool_calling(self, groq_messages, output_format: type[T], schema) -> ChatCompletion:
|
|
"""Handle structured output using tool calling."""
|
|
tool = ChatCompletionToolParam(
|
|
function={
|
|
'name': output_format.__name__,
|
|
'description': f'Extract information in the format of {output_format.__name__}',
|
|
'parameters': schema,
|
|
},
|
|
type='function',
|
|
)
|
|
tool_choice: ChatCompletionToolChoiceOptionParam = 'required'
|
|
|
|
return await self.get_client().chat.completions.create(
|
|
model=self.model,
|
|
messages=groq_messages,
|
|
temperature=self.temperature,
|
|
top_p=self.top_p,
|
|
seed=self.seed,
|
|
tools=[tool],
|
|
tool_choice=tool_choice,
|
|
service_tier=self.service_tier,
|
|
)
|
|
|
|
async def _invoke_with_json_schema(self, groq_messages, output_format: type[T], schema) -> ChatCompletion:
|
|
"""Handle structured output using JSON schema."""
|
|
return await self.get_client().chat.completions.create(
|
|
model=self.model,
|
|
messages=groq_messages,
|
|
temperature=self.temperature,
|
|
top_p=self.top_p,
|
|
seed=self.seed,
|
|
response_format=ResponseFormatResponseFormatJsonSchema(
|
|
json_schema=ResponseFormatResponseFormatJsonSchemaJsonSchema(
|
|
name=output_format.__name__,
|
|
description='Model output schema',
|
|
schema=schema,
|
|
),
|
|
type='json_schema',
|
|
),
|
|
service_tier=self.service_tier,
|
|
)
|