You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Us (QSDA) team is launching a new code generation agent.
We have conducted experiments wIth the new code generation agent, we observed:
Removing planning phase produces higher quality code
Removing planning phase has general better user experience and remove the inconsistency of code gen & plan gen
We have discussed with product that the rollout of new code generation agent should also include planning phase removal as a whole, without an A/B testing mechanism nor backward compatible implementation. The endpoint for plan generation will still exist to support older toolkit versions.
We plan to release the new code generation agent experience in the week of September 9th.
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqFeatureDev/FeatureDevConstants.kt
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,7 @@ const val FEATURE_EVALUATION_PRODUCT_NAME = "FeatureDev"
7
7
8
8
constvalFEATURE_NAME="Amazon Q Developer Agent for software development"
9
9
10
-
// Max number of times a user can attempt to retry an approach request if it fails
11
-
constvalAPPROACH_RETRY_LIMIT=3
12
-
13
-
// Max number of times a user can attempt to retry a codegeneration request if it fails
10
+
// Max number of times a user can attempt to retry a code generation request if it fails
14
11
constvalCODE_GENERATION_RETRY_LIMIT=3
15
12
16
13
// The default retry limit used when the session could not be found
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqFeatureDev/FeatureDevExceptions.kt
-5Lines changed: 0 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,6 @@ class ContentLengthError(override val message: String, override val cause: Throw
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqFeatureDev/clients/FeatureDevClient.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqFeatureDev/clients/GenerateTaskAssistPlanResult.kt
0 commit comments