Examples in the ActionPlanner #1516
Replies: 1 comment 1 reply
-
It's a very good point which has come up several times. When using few-shots learning, it would be nice having an option to manage the prompt with a configurable list - still optional, ie one can still use a plain text prompt. Here's some relevant features I proposed a while back:
You might have noticed the new models launched in past few months, e.g. chat models, support for functions. In the past we also had Codex, fine tuned for coding (planning is a form of coding). I think over time we'll see these capabilities (planning and learning) exposed as specific models/APIs, potentially with runtime state and pluggable private memory. If you like, you could build all of this within ChatGPT and Copilot Chat leveraging plugins and RAG/semantic memory, with some work. |
Beta Was this translation helpful? Give feedback.
-
Hey folks,
I've been pondering over the idea of rewriting examples in the
ActionPlanner
class (semantic-kernel/dotnet/src/Extensions/Planning.ActionPlanner/ActionPlanner.cs
Line 160 in b31e36b
Suppose we reach a stage where we have an abundance of examples and need to select the most suitable one for a specific goal. In that case, wouldn't it be better to explore goal embeddings and leverage similarity search as an effective extension? As of now, it seems unnecessary to invest effort in generating examples through code when we have one good example and one edge case.
If I've overlooked something crucial, I'm open to being proven wrong and would appreciate your insights.
Cheers,
Lukasz
Beta Was this translation helpful? Give feedback.
All reactions