mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 22:39:47 +00:00
debug and fix
This commit is contained in:
parent
3bfbc212fa
commit
1a01ce6a2c
2 changed files with 7 additions and 2 deletions
|
|
@ -7,6 +7,7 @@
|
|||
from typing import Any
|
||||
from uuid import uuid4
|
||||
|
||||
import llama_stack_client as lsc_package
|
||||
import pytest
|
||||
import requests
|
||||
from llama_stack_client import Agent, AgentEventLogger, Document
|
||||
|
|
@ -134,7 +135,9 @@ def test_agent_simple(llama_stack_client, agent_config):
|
|||
|
||||
|
||||
def test_agent_name(llama_stack_client, text_model_id):
|
||||
print(f"llama stack client package location: {llama_stack_client.__file__}")
|
||||
print(f"llama stack client package version: {lsc_package.__version__}")
|
||||
print(f"llama stack client package location: {lsc_package.__file__}")
|
||||
|
||||
agent_name = f"test-agent-{uuid4()}"
|
||||
agent = Agent(
|
||||
llama_stack_client,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue