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 gl_connectors_sdk.connector import GLConnectors
connector = GLConnectors(api_key="GL_CONNECTORS_API_KEY")
response = (connector.connect('google_drive')
.action('search_files')
.params({"query": "name contains 'wfo'"})
.token('GL_CONNECTORS_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?