chore: add missing ToolConfig import in groq.py

Imported `ToolConfig` from the `llama_stack.apis.inference` module to
resolve missing reference and ensure proper functionality within the
`groq.py` file.

Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
Sébastien Han 2025-02-06 13:48:41 +01:00
parent 3922999118
commit e18513f3f2
No known key found for this signature in database

View file

@ -26,6 +26,7 @@ from llama_stack.apis.inference import (
Message, Message,
ResponseFormat, ResponseFormat,
ToolChoice, ToolChoice,
ToolConfig,
) )
from llama_stack.distribution.request_headers import NeedsRequestProviderData from llama_stack.distribution.request_headers import NeedsRequestProviderData
from llama_stack.providers.remote.inference.groq.config import GroqConfig from llama_stack.providers.remote.inference.groq.config import GroqConfig