Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/llama_stack_client/types/agents/turn_create_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from typing import Dict, List, Union, Optional
from typing_extensions import Literal, TypeAlias

from pydantic import Field as FieldInfo

from .turn import Turn
from ..._models import BaseModel
from ..inference_step import InferenceStep
Expand Down Expand Up @@ -57,14 +55,12 @@ class AgentTurnResponseStreamChunkEventPayloadAgentTurnResponseStepProgressPaylo

step_type: Literal["inference", "tool_execution", "shield_call", "memory_retrieval"]

text_delta_model_response: Optional[str] = FieldInfo(alias="model_response_text_delta", default=None)
text_delta: Optional[str] = None

tool_call_delta: Optional[
AgentTurnResponseStreamChunkEventPayloadAgentTurnResponseStepProgressPayloadToolCallDelta
] = None

tool_response_text_delta: Optional[str] = None


AgentTurnResponseStreamChunkEventPayloadAgentTurnResponseStepCompletePayloadStepDetails: TypeAlias = Union[
InferenceStep, ToolExecutionStep, ShieldCallStep, MemoryRetrievalStep
Expand Down
Loading