Why GL SDK?
Low Code
from glaip_sdk import Client
client = Client()
agent = client.create_agent(
name="hello-world-agent",
instruction="You are a friendly AI assistant."
)
agent.run("Hello! How are you today?")
agent.delete()from bosa_connectors.connector import BosaConnector
bosa = BosaConnector(api_base_url=BOSA_API_URL, api_key=API_KEY)
user = bosa.authenticate_bosa_user(identifier, secret)
params = {
"limit": 10,
"page": 1,
"owner": "GDP-ADMIN",
"repo": "bosa-sdk",
}
response = bosa.connect('github') \
.action('list_pull_requests') \
.params(params) \
.max_attempts(3) \
.token(user.token) \
.run()
print(response.get_data())Simple, But Flexible
Low Maintenance
One-Stop Shop
Designed with Developer Experience in Mind
Last updated
Was this helpful?