Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Python SDK examples.
.claude/skills/team-telnyx-telnyx-seti-python/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -14% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -47% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -58% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -7% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -21% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
bashpip install telnyx
pythonimport os from telnyx import Telnyx client = Telnyx( api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted )
All examples below assume client is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
pythonimport telnyx try: result = client.messages.send(to="+13125550001", from_="+13125550002", text="Hello") except telnyx.APIConnectionError: print("Network error — check connectivity and retry") except telnyx.RateLimitError: # 429: rate limited — wait and retry with exponential backoff import time time.sleep(1) # Check Retry-After header for actual delay except telnyx.APIStatusError as e: print(f"API error {e.status_code}: {e.message}") if e.status_code == 422: print("Validation error — check required fields and formats")
Common error codes: 401 invalid API key, 403 insufficient permissions, 404 resource not found, 422 validation error (check field formats), 429 rate limited (retry with exponential backoff).
GET /10dlc/enum/{endpoint}
pythonresponse = client.messaging_10dlc.get_enum( "mno", ) print(response)
Returns the results of the various black box tests
GET /seti/black_box_test_results
pythonresponse = client.seti.retrieve_black_box_test_results() print(response.data)
Returns: black_box_tests (arrayobject]), product (string), record_type (string)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-02 | fail→pass | 10,351 | 6,105 | -41% | 1 | 1 | 0% | 2,153 | 1,844 | -14% | 0 | 0 | — |
case-01 | fail→pass | 12,467 | 3,713 | -70% | 1 | 1 | 0% | 2,345 | 1,235 | -47% | 0 | 0 | — |
case-03 | fail→pass | 13,189 | 2,687 | -80% | 1 | 1 | 0% | 2,456 | 1,035 | -58% | 0 | 0 | — |
case-04 | fail→pass | 5,144 | 2,266 | -56% | 1 | 1 | 0% | 1,055 | 985 | -7% | 0 | 0 | — |
case-05 | pass→pass | 3,472 | 2,326 | -33% | 1 | 1 | 0% | 656 | 907 | +38% | 0 | 0 | — |
case-06 | pass→pass | 12,238 | 4,975 | -59% | 1 | 1 | 0% | 2,533 | 1,550 | -39% | 0 | 0 | — |
case-07 | fail→pass | 9,508 | 4,629 | -51% | 1 | 1 | 0% | 1,922 | 1,525 | -21% | 0 | 0 | — |
case-08 | fail→pass | 10,809 | 2,874 | -73% | 1 | 1 | 0% | 2,066 | 1,149 | -44% | 0 | 0 | — |
case-09 | fail→pass | 8,057 | 2,672 | -67% | 1 | 1 | 0% | 1,361 | 928 | -32% | 0 | 0 | — |
case-10 | pass→fail | 11,466 | 6,606 | -42% | 1 | 1 | 0% | 2,318 | 1,858 | -20% | 0 | 0 | — |
case-11 | pass→pass | 2,030 | 1,213 | -40% | 1 | 1 | 0% | 294 | 686 | +133% | 0 | 0 | — |
case-12 | fail→pass | 7,315 | 3,013 | -59% | 1 | 1 | 0% | 1,498 | 1,197 | -20% | 0 | 0 | — |
case-13 | fail→pass | 9,297 | 4,087 | -56% | 1 | 1 | 0% | 1,765 | 1,355 | -23% | 0 | 0 | — |
case-14 | fail→pass | 9,081 | 5,611 | -38% | 1 | 1 | 0% | 1,790 | 1,620 | -9% | 0 | 0 | — |
case-15 | fail→pass | 7,871 | 3,212 | -59% | 1 | 1 | 0% | 1,517 | 1,218 | -20% | 0 | 0 | — |
case-16 | pass→pass | 8,397 | 4,717 | -44% | 1 | 1 | 0% | 1,563 | 1,491 | -5% | 0 | 0 | — |
case-17 | pass→pass | 4,256 | 1,420 | -67% | 1 | 1 | 0% | 692 | 763 | +10% | 0 | 0 | — |
case-18 | pass→pass | 5,887 | 2,907 | -51% | 1 | 1 | 0% | 1,002 | 835 | -17% | 0 | 0 | — |
case-19 | fail→pass | 5,492 | 1,530 | -72% | 1 | 1 | 0% | 931 | 780 | -16% | 0 | 0 | — |
case-20 | pass→pass | 3,121 | 2,530 | -19% | 1 | 1 | 0% | 579 | 1,016 | +75% | 0 | 0 | — |
case-21 | pass→pass | 14,736 | 11,493 | -22% | 1 | 1 | 0% | 2,974 | 2,988 | +0% | 0 | 0 | — |
case-22 | pass→pass | 6,978 | 5,047 | -28% | 1 | 1 | 0% | 1,363 | 1,520 | +12% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +50 percentage points is the difference between those two pass rates over the 22 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.