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
8 changes: 0 additions & 8 deletions core/src/main/java/com/google/adk/agents/LlmAgent.java
Original file line number Diff line number Diff line change
Expand Up @@ -757,14 +757,6 @@ public Single<Map.Entry<String, Boolean>> canonicalGlobalInstruction(ReadonlyCon
throw new IllegalStateException("Unknown Instruction subtype: " + globalInstruction.getClass());
}

/**
* @deprecated Use {@link #canonicalTools(ReadonlyContext)} instead.
*/
@Deprecated
public Flowable<BaseTool> canonicalTools(Optional<ReadonlyContext> context) {
return canonicalTools(context.orElse(null));
}

/**
* Constructs the list of tools for this agent based on the {@link #tools} field.
*
Expand Down
Loading