-
Notifications
You must be signed in to change notification settings - Fork 4k
Python: Added Brave search capability in SK(python) based on PR #9632 #11531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
269ad41
Python:Remove duplicate log statement in GoogleConnector search method
N-E-W-T-O-N 425344d
Python: Add BraveConnector and BraveSettings for Brave Search API int…
N-E-W-T-O-N 2d54af6
Python: Implement Brave Search API connector with settings and respon…
N-E-W-T-O-N 8633977
Python: Add Brave Search plugin for Semantic Kernel chat bot integration
N-E-W-T-O-N 2ca5f25
Python: Add BraveConnector and BraveSearch test fixtures and unit tests
N-E-W-T-O-N 8495c86
Minor Fix
N-E-W-T-O-N b7c6d43
Merge branch 'microsoft:main' into pySearch
N-E-W-T-O-N b5296f0
Remove BraveConnector and related settings from search engine connectors
N-E-W-T-O-N f9e3117
PYTHON:Refactors Brave Search connector structure
N-E-W-T-O-N b7444a3
Python:Add Brave Text Search plugin to README and fix import path in …
N-E-W-T-O-N 2935e71
Python:Refactor import statements in test_brave_search.py based on ne…
N-E-W-T-O-N db5bdd2
Python:Rename 'brave_search.py' to 'brave.py' and update the referenc…
N-E-W-T-O-N 5061982
Python:Add BRAVE_API_KEY to .env.example for configuration
N-E-W-T-O-N 8206388
Merge branch 'microsoft:main' into pySearch
N-E-W-T-O-N 167b637
Merge branch 'microsoft:main' into pySearch
N-E-W-T-O-N 76f2028
Python:Added project description in Brave Text Search plugin
N-E-W-T-O-N 60a355a
Python:Fix typo in BraveSettings region header and improve total coun…
N-E-W-T-O-N 4c0ed7d
Merge branch 'main' into pySearch
N-E-W-T-O-N d76a25a
Merge branch 'main' into pySearch
N-E-W-T-O-N 23b825e
Merge branch 'main' into pySearch
moonbox3 a26bfb2
CI: retrigger
N-E-W-T-O-N File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
126 changes: 126 additions & 0 deletions
126
python/samples/concepts/search/brave_text_search_as_plugin.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
# Copyright (c) Microsoft. All rights reserved. | ||
|
||
from collections.abc import Awaitable, Callable | ||
|
||
from semantic_kernel import Kernel | ||
from semantic_kernel.connectors.ai import FunctionChoiceBehavior | ||
from semantic_kernel.connectors.ai.open_ai import OpenAIChatCompletion, OpenAIChatPromptExecutionSettings | ||
from semantic_kernel.connectors.search.brave import BraveSearch | ||
from semantic_kernel.contents import ChatHistory | ||
from semantic_kernel.filters import FilterTypes, FunctionInvocationContext | ||
from semantic_kernel.functions import KernelArguments, KernelParameterMetadata, KernelPlugin | ||
|
||
kernel = Kernel() | ||
kernel.add_service(OpenAIChatCompletion(service_id="chat")) | ||
kernel.add_plugin( | ||
KernelPlugin.from_text_search_with_search( | ||
BraveSearch(), | ||
plugin_name="brave", | ||
description="Get details about Semantic Kernel concepts.", | ||
parameters=[ | ||
KernelParameterMetadata( | ||
name="query", | ||
description="The search query.", | ||
type="str", | ||
is_required=True, | ||
type_object=str, | ||
), | ||
KernelParameterMetadata( | ||
name="top", | ||
description="The number of results to return.", | ||
type="int", | ||
is_required=False, | ||
default_value=2, | ||
type_object=int, | ||
), | ||
KernelParameterMetadata( | ||
name="skip", | ||
description="The number of results to skip.", | ||
type="int", | ||
is_required=False, | ||
default_value=0, | ||
type_object=int, | ||
), | ||
], | ||
) | ||
) | ||
chat_function = kernel.add_function( | ||
prompt="{{$chat_history}}{{$user_input}}", | ||
plugin_name="ChatBot", | ||
function_name="Chat", | ||
) | ||
execution_settings = OpenAIChatPromptExecutionSettings( | ||
service_id="chat", | ||
max_tokens=2000, | ||
temperature=0.7, | ||
top_p=0.8, | ||
function_choice_behavior=FunctionChoiceBehavior.Auto(auto_invoke=True), | ||
) | ||
|
||
history = ChatHistory() | ||
system_message = """ | ||
You are a chat bot, specialized in Semantic Kernel, Microsoft LLM orchestration SDK. | ||
Assume questions are related to that, and use the Brave search plugin to find answers. | ||
""" | ||
history.add_system_message(system_message) | ||
history.add_user_message("Hi there, who are you?") | ||
history.add_assistant_message("I am Mosscap, a chat bot. I'm trying to figure out what people need.") | ||
|
||
arguments = KernelArguments(settings=execution_settings) | ||
|
||
|
||
@kernel.filter(filter_type=FilterTypes.FUNCTION_INVOCATION) | ||
async def log_brave_filter( | ||
context: FunctionInvocationContext, next: Callable[[FunctionInvocationContext], Awaitable[None]] | ||
): | ||
if context.function.plugin_name == "brave": | ||
print("Calling Brave search with arguments:") | ||
if "query" in context.arguments: | ||
print(f' Query: "{context.arguments["query"]}"') | ||
if "count" in context.arguments: | ||
print(f' Count: "{context.arguments["count"]}"') | ||
if "skip" in context.arguments: | ||
print(f' Skip: "{context.arguments["skip"]}"') | ||
await next(context) | ||
print("Brave search completed.") | ||
else: | ||
await next(context) | ||
|
||
|
||
async def chat() -> bool: | ||
try: | ||
user_input = input("User:> ") | ||
except KeyboardInterrupt: | ||
print("\n\nExiting chat...") | ||
return False | ||
except EOFError: | ||
print("\n\nExiting chat...") | ||
return False | ||
|
||
if user_input == "exit": | ||
print("\n\nExiting chat...") | ||
return False | ||
arguments["user_input"] = user_input | ||
arguments["chat_history"] = history | ||
result = await kernel.invoke(chat_function, arguments=arguments) | ||
print(f"Mosscap:> {result}") | ||
history.add_user_message(user_input) | ||
history.add_assistant_message(str(result)) | ||
return True | ||
|
||
|
||
async def main(): | ||
chatting = True | ||
print( | ||
"Welcome to the chat bot!\ | ||
\n Type 'exit' to exit.\ | ||
\n Try to find out more about the inner workings of Semantic Kernel." | ||
) | ||
while chatting: | ||
chatting = await chat() | ||
|
||
|
||
if __name__ == "__main__": | ||
import asyncio | ||
|
||
asyncio.run(main()) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.