models api client fix

This commit is contained in:
Xi Yan 2024-09-18 14:52:37 -07:00
parent 8ad821a533
commit 24dbe448a3
2 changed files with 9 additions and 5 deletions

View file

@ -13,10 +13,10 @@ from typing import Any, Dict, List, Optional
import fire
import httpx
from llama_toolchain.core.datatypes import RemoteProviderConfig
from llama_stack.distribution.datatypes import RemoteProviderConfig
from termcolor import cprint
from .api import * # noqa: F403
from .models import * # noqa: F403
class ModelsClient(Models):