remove response parser

This commit is contained in:
Xi Yan 2025-02-04 17:33:08 -08:00
parent 662f171e88
commit 42f0e91909
2 changed files with 0 additions and 4 deletions

View file

@ -26,7 +26,6 @@ from llama_stack.apis.common.content_types import ContentDelta, InterleavedConte
from llama_stack.apis.inference import (
CompletionMessage,
ResponseFormat,
ResponseOutputParser,
SamplingParams,
ToolCall,
ToolChoice,
@ -166,7 +165,6 @@ class AgentConfig(AgentConfigCommon):
instructions: str
enable_session_persistence: bool
response_format: Optional[ResponseFormat] = None
response_output_parser: Optional[ResponseOutputParser] = Field(default=ResponseOutputParser.default)
class AgentConfigOverridablePerTurn(AgentConfigCommon):

View file

@ -19,7 +19,6 @@ from typing import (
from llama_models.llama3.api.datatypes import (
BuiltinTool,
ResponseOutputParser,
SamplingParams,
StopReason,
ToolCall,
@ -320,7 +319,6 @@ class ChatCompletionRequest(BaseModel):
response_format: Optional[ResponseFormat] = None
stream: Optional[bool] = False
logprobs: Optional[LogProbConfig] = None
response_output_parser: Optional[ResponseOutputParser] = Field(default=ResponseOutputParser.default)
@json_schema_type