mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
Fix typo in class name (#2189)
This commit is contained in:
parent
9f4734e84d
commit
a1d1e5e276
13 changed files with 37 additions and 37 deletions
|
|
@ -94,8 +94,8 @@ public static void runStreamingExample() {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onThinking(Session session, ThingkingAssistantContent thingkingAssistantContent) {
|
||||
logger.info("Thinking content received: {}", thingkingAssistantContent.getThinking());
|
||||
public void onThinking(Session session, ThinkingAssistantContent thinkingAssistantContent) {
|
||||
logger.info("Thinking content received: {}", thinkingAssistantContent.getThinking());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -170,7 +170,7 @@ The `SessionEventConsumers` interface provides callbacks for different types of
|
|||
The `AssistantContentConsumers` interface handles different types of content within assistant messages:
|
||||
|
||||
- `onText`: Handles text content (receives Session and TextAssistantContent)
|
||||
- `onThinking`: Handles thinking content (receives Session and ThingkingAssistantContent)
|
||||
- `onThinking`: Handles thinking content (receives Session and ThinkingAssistantContent)
|
||||
- `onToolUse`: Handles tool use content (receives Session and ToolUseAssistantContent)
|
||||
- `onToolResult`: Handles tool result content (receives Session and ToolResultAssistantContent)
|
||||
- `onOtherContent`: Handles other content types (receives Session and AssistantContent)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue