mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-20 00:11:50 +00:00
Some checks failed
Adds integration contracts for MCP lifecycle, protocol errors and OAuth configuration, A2A wire versions, the OpenAI consumer path, persisted toolsets, callback delivery, guardrail effects, configured prices, the filtered spend ledger, and a CircleCI-owned browser flow for project detachment, with the ASGI, browser-state, client and MCP helpers they use. Consolidates the eleven commits previously stacked on litellm_integration_providers onto its rebased tip
13 lines
305 B
Python
13 lines
305 B
Python
import json
|
|
import sys
|
|
|
|
from integration._support.database import read_rows
|
|
|
|
if __name__ == "__main__":
|
|
print(
|
|
json.dumps(
|
|
read_rows(
|
|
'SELECT project_id, team_id, models FROM "LiteLLM_VerificationToken" WHERE token=%s', (sys.argv[1],)
|
|
)
|
|
)
|
|
)
|