Note the retired agent backends in the tool and LLM skills - #34
Open
Joetib wants to merge 3 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Companion to iblai/iblai-dm-pro#3005, which retires three agent backends in DM 4.363.0 — Google ADK/A2A, OpenAI Assistants, and the OpenAI Agents SDK. Tracked by iblai/iblai-platform#2416.
Two documented endpoints change their filtering semantics as a result. Neither is a shape change — same URLs, same auth, same response schema — so this is a docs-only update to two skills.
What changed on the platform
available-tools/(iblai-api-agent-tool) used to return a different tool set per agent backend, selected by the agent'sallow_google_agent/allow_openai_agent/allow_openai_assistantflags. Every agent now runs on the base agent, so it returns the base-agent set uniformly. An agent that previously ran on a retired backend sees a larger list than before.mentor-llms/?mentor_id=(iblai-api-agent-llm) used to narrow the provider/model cards to a single provider for agents on the Google ADK/A2A and OpenAI Agents SDK backends, because those backends were locked to one provider. The parameter still scopes the request to an agent and still 404s if that agent doesn't exist in the org, but it no longer narrows — every agent gets the org's full authorized list.What is deliberately not here
The
users/{user_id}/google-agents/list and detail endpoints are removed by #3005, but this repo never documented them, so there is nothing to delete. I checked forgoogle-agents,google_agents,GoogleAgent, and every retired backend name across the skills and MCP server — no other references exist.Verification
Both notes are additive; no existing prose was invalidated, since the old narrowing was never documented.