Using AI Connectors in Semantic Kernel
Creating Custom AI Connectors in Semantic Kernel
ChatCompletionClientBase
 and AIServiceClientBase
. Below is a guide and example for implementing a mock AI connector:
Step-by-Step Walkthrough
-
Understand the Base Classes: The foundational classesÂ
ChatCompletionClientBase
 andÂAIServiceClientBase
 provide necessary methods and structures for creating chat-based AI connectors. -
Implementing the Connector: Here’s a mock implementation example illustrating how to implement a connector without real service dependencies, ensuring compatibility with Pydantic’s expectations within the framework:
from semantic_kernel.connectors.ai.chat_completion_client_base import ChatCompletionClientBase
class MockAIChatCompletionService(ChatCompletionClientBase):
def __init__(self, ai_model_id: str):
super().__init__(ai_model_id=ai_model_id)
async def _inner_get_chat_message_contents(self, chat_history, settings):
# Mock implementation: returns dummy chat message content for demonstration.
return [{"role": "assistant", "content": "Mock response based on your history."}]
def service_url(self):
return "http://mock-ai-service.com"
Usage Example
The following example demonstrates how to integrate and use the MockAIChatCompletionService
in an application:
import asyncio
from semantic_kernel.contents.chat_history import ChatHistory
from semantic_kernel.connectors.ai.prompt_execution_settings import PromptExecutionSettings
async def main():
chat_history = ChatHistory(messages=[{"role": "user", "content": "Hello"}])
settings = PromptExecutionSettings(model="mock-model")
service = MockAIChatCompletionService(ai_model_id="mock-model")
response = await service.get_chat_message_contents(chat_history, settings)
print(response)
# Run the main function
asyncio.run(main())
Conclusion
* This blog post is created entirely by AI (including the code snippets), using Semantic Kernel’s agent framework. Multiple agents worked together to create this content by referencing the source code of SK, while ensuring the correctness, and incorporating user feedback.Â
0 comments
Be the first to start the discussion.