bedrock tools
1.0.0
ไลบรารี Python ขนาดเล็กที่ทำให้การเรียกฟังก์ชัน Amazon Bedrock Converse API ง่ายขึ้น (เช่น การใช้เครื่องมือ)
ไลบรารีนี้จะลดโค้ดสำเร็จรูปที่จำเป็นในการผสานรวมฟังก์ชัน Python ดั้งเดิมเข้ากับ Amazon Bedrock Converse API ทำให้ง่ายต่อการสร้างแอปพลิเคชัน AI การสนทนาที่ทรงพลังและเสริมด้วยเครื่องมือได้ง่ายขึ้น
pip install bedrock-tools
from bedrock_tools import BedrockTools
# define native functions as tools (using type annotations)
def add_numbers ( a : int , b : int ) -> int :
"""Add two numbers together."""
return a + b
def greet ( name : str ) -> str :
"""Greet a person by name."""
return f"Hello, { name } !"
def get_weather ( city : str , state : str ) -> dict :
"""Get the weather for a location."""
return {
"city" : city ,
"state" : state ,
"temperature" : "75°F" ,
"condition" : "Partly Cloudy" ,
}
# setup
tools = BedrockTools ()
tools . add_function ( add_numbers )
tools . add_function ( greet )
tools . add_function ( get_weather )
# Use the config in your Bedrock Converse API call
response = bedrock . converse (
modelId = model_id ,
toolConfig = tools . get_tool_config ()
messages = messages ,
)
# When you receive a toolUse from the API, invoke the tool
if "toolUse" in content_block :
tool_results . append ( tools . invoke ( content_block [ "toolUse" ]))
message = { "role" : "user" , "content" : tool_results }
นี่คือตัวอย่าง (จากเอกสาร Bedrock Converse API) ที่มีและไม่มีไลบรารี:
ปัจจุบันรองรับพารามิเตอร์ฟังก์ชั่นประเภท:
Choose a make command to run
init run this once to initialize a new python project
install install project dependencies
start run local project
test run unit tests