Skip to content

--- ## 3️⃣ `sprintloop-sdk-python` ### About panel **Description:** > Python SDK for building agents, workflows, and integrations on top of the SprintLoop Enterprise OS. **Website:** > `https://sprintloop.ai` **Topics:**

License

Notifications You must be signed in to change notification settings

sprintloop/sprintloop-sdk-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

README.md

# SprintLoop Python SDK

Official Python SDK for integrating services, data pipelines, and agents with the **SprintLoop Enterprise OS**.

Use this SDK to:

- Invoke agents and workflows from Python  
- Build backend services on top of SprintLoop  
- Send frames and events into the OS  
- Collect evaluation metrics for governance

---

## 📦 Installation

```bash
pip install sprintloop
(or, for now:)

bash
Copy code
pip install -e .
🚀 Quickstart
python
Copy code
from sprintloop import SprintLoopClient
import os

client = SprintLoopClient(
    api_key=os.environ.get("SPRINTLOOP_API_KEY"),
    base_url=os.environ.get("SPRINTLOOP_API_URL", "https://api.sprintloop.ai"),
)

def main():
    result = client.agents.invoke(
        agent_id="claims-intake-agent",
        input={
            "member_id": "123456789",
            "utterance": "I need to check the status of my claim.",
            "channel": "voice"
        }
    )
    print(result["output"])

if __name__ == "__main__":
    main()

About

--- ## 3️⃣ `sprintloop-sdk-python` ### About panel **Description:** > Python SDK for building agents, workflows, and integrations on top of the SprintLoop Enterprise OS. **Website:** > `https://sprintloop.ai` **Topics:**

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published