mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-16 14:57:20 +00:00
initial branch commit
This commit is contained in:
parent
37b330b4ef
commit
cb1c093faa
3 changed files with 110 additions and 0 deletions
16
llama_stack/inline/test.py
Normal file
16
llama_stack/inline/test.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
from inline import LlamaStackInline
|
||||
from llama_stack.apis.inference.inference import Inference
|
||||
|
||||
from llama_stack.providers.datatypes import * # noqa: F403
|
||||
|
||||
|
||||
async def main():
|
||||
inline = LlamaStackInline("/home/dalton/.llama/builds/conda/nov5-run.yaml")
|
||||
await inline.initialize()
|
||||
print(inline.impls)
|
||||
|
||||
|
||||
# Run the main function
|
||||
import asyncio
|
||||
|
||||
asyncio.run(main())
|
Loading…
Add table
Add a link
Reference in a new issue