mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-02 08:44:44 +00:00
precommit fixes
This commit is contained in:
parent
d362d2d740
commit
c38d377eb7
1 changed files with 5 additions and 2 deletions
|
@ -6,11 +6,14 @@
|
|||
|
||||
from typing import Dict
|
||||
|
||||
from .config import ChromaRemoteImplConfig
|
||||
from llama_stack.providers.datatypes import Api, ProviderSpec
|
||||
|
||||
from .config import ChromaRemoteImplConfig
|
||||
|
||||
async def get_adapter_impl(config: ChromaRemoteImplConfig, deps: Dict[Api, ProviderSpec]):
|
||||
|
||||
async def get_adapter_impl(
|
||||
config: ChromaRemoteImplConfig, deps: Dict[Api, ProviderSpec]
|
||||
):
|
||||
from .chroma import ChromaMemoryAdapter
|
||||
|
||||
impl = ChromaMemoryAdapter(config, deps[Api.inference])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue