Skip to content

Commit a678cca

Browse files
google-genai-botcopybara-github
authored andcommitted
fix: Removed FeatureDecorator class
Features that are under development will be marked as workInProgress in Javadoc for now. PiperOrigin-RevId: 791245932
1 parent 40af9bb commit a678cca

File tree

4 files changed

+10
-253
lines changed

4 files changed

+10
-253
lines changed

core/src/main/java/com/google/adk/agents/BaseAgentConfig.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
package com.google.adk.agents;
1818

1919
import com.fasterxml.jackson.annotation.JsonProperty;
20-
import com.google.adk.utils.FeatureDecorator.WorkInProgress;
2120

22-
/** Base configuration for all agents. */
23-
@WorkInProgress
21+
/**
22+
* Base configuration for all agents.
23+
*
24+
* <p>workInProgress: Config agent features are not yet ready for public use.
25+
*/
2426
public class BaseAgentConfig {
2527
private String name;
2628
private String description = "";

core/src/main/java/com/google/adk/agents/LlmAgentConfig.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
package com.google.adk.agents;
1818

1919
import com.fasterxml.jackson.annotation.JsonProperty;
20-
import com.google.adk.utils.FeatureDecorator.WorkInProgress;
2120

22-
/** Configuration for LlmAgent. */
23-
@WorkInProgress
21+
/**
22+
* Configuration for LlmAgent.
23+
*
24+
* <p>workInProgress: Config agent features are not yet ready for public use.
25+
*/
2426
public class LlmAgentConfig extends BaseAgentConfig {
2527
private String model;
2628
private String instruction;

core/src/main/java/com/google/adk/utils/FeatureDecorator.java

Lines changed: 0 additions & 162 deletions
This file was deleted.

core/src/test/java/com/google/adk/utils/FeatureDecoratorTest.java

Lines changed: 0 additions & 85 deletions
This file was deleted.

0 commit comments

Comments
 (0)