Add more sample content

This commit is contained in:
Ashwin Bharambe 2024-09-22 16:56:30 -07:00
parent 6cbc387851
commit ef042e1605
21 changed files with 198 additions and 1 deletions

View file

@ -3,3 +3,16 @@
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from .config import SampleConfig
from llama_stack.apis.inference import * # noqa: F403
class SampleInferenceImpl(Inference):
def __init__(self, config: SampleConfig):
self.config = config
async def initialize(self):
pass