Skip to content

Commit 5f91521

Browse files
committed
bump openai_harmony version
Signed-off-by: wuhang <wuhang6@huawei.com>
1 parent 1ea4ad4 commit 5f91521

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ ninja # Required for xgrammar, rocm, tpu, xpu
4848
pybase64 # fast base64 implementation
4949
cbor2 # Required for cross-language serialization of hashable objects
5050
setproctitle # Used to set process names for better debugging and monitoring
51-
openai-harmony >= 0.0.3 # Required for gpt-oss
51+
openai-harmony >= 0.0.7 # Required for gpt-oss

vllm/entrypoints/tool.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,8 @@ async def get_result(self, context: "ConversationContext") -> Any:
130130
from vllm.entrypoints.context import HarmonyContext
131131
assert isinstance(context, HarmonyContext)
132132
last_msg = context.messages[-1]
133-
logger.info("*=*=*=*=*=*=Tool input: %s", last_msg)
134133
tool_output_msgs = []
135134
async for msg in self.python_tool.process(last_msg):
136-
logger.info("*=*=*=*=*=*=Tool output: %s", msg)
137135
tool_output_msgs.append(msg)
138136
return tool_output_msgs
139137

0 commit comments

Comments
 (0)