Import from the right path (#708)

Import BaseModel and Field from pydantic
This commit is contained in:
Botao Chen 2025-01-02 13:15:31 -08:00 committed by GitHub
parent 750604c7af
commit d9f75cc98f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View file

@ -6,9 +6,10 @@
from typing import Any, Dict, List, Literal, Optional, Protocol, Union
from llama_models.llama3.api.datatypes import BaseModel, Field
from llama_models.schema_utils import json_schema_type, webmethod
from pydantic import BaseModel, Field
from typing_extensions import Annotated
from llama_stack.apis.agents import AgentConfig