How to implement Agent with Semantic Kernel As of 08/08/2024? #7972
-
So now it seems we have various choices to implement agents. May I know the best possible choice for now that aligns the future path of the semantic kernel?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
+1 for @HuskyDanny questions - let me add an extra question: I have spend some time looking at some SK examples (agents etc) - what confuses me: What is actually production ready and what is not ? because most of the examples contains either class or methods that has warnings on them saying they are only for test use or something like that. |
Beta Was this translation helpful? Give feedback.
@markat1 Just a small explanation about such warnings - when new feature is added to Semantic Kernel, we usually mark it as
Experimental
. It means that when we deliver this feature, our next step is to evaluate how it works, whether there are some issues reported with it etc. If we find some issues, we could add some changes to such feature that may break your compilation process as soon as you update to the new version of a library (e.g. we can change method signature or name). So, the purpo…