feat(planning): enable agent planning (#68)
* feat(planning): Allow the agent to plan subtasks Signed-off-by: mudler <mudler@localai.io> * feat(planning): enable planning toggle in the webui Signed-off-by: mudler <mudler@localai.io> * feat(planning): take in consideration the overall goal Signed-off-by: mudler <mudler@localai.io> * Update core/action/plan.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Signed-off-by: mudler <mudler@localai.io> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
638eedc2a0
commit
33483ab4b9
@@ -44,7 +44,7 @@ func (a *CounterAction) Run(ctx context.Context, params action.ActionParams) (ac
|
||||
|
||||
// Get current value or initialize if it doesn't exist
|
||||
currentValue, exists := a.counters[request.Name]
|
||||
|
||||
|
||||
// Update the counter
|
||||
newValue := currentValue + request.Adjustment
|
||||
a.counters[request.Name] = newValue
|
||||
@@ -93,3 +93,6 @@ func (a *CounterAction) Definition() action.ActionDefinition {
|
||||
}
|
||||
}
|
||||
|
||||
func (a *CounterAction) Plannable() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user