fix: replace deprecated watsonx model ibm/granite-3-3-8b-instruct - #117
Merged
jsntsay merged 2 commits intoAug 10, 2026
Merged
Conversation
watsonx.ai removed ibm/granite-3-3-8b-instruct, so every test that built a WatsonxLLMClient with it failed at ModelInference init (5 failures, 4 setup errors in CI). Switch tests, examples and docs to meta-llama/llama-3-3-70b-instruct, which is in the supported list and already used by the rest of the test suite. Signed-off-by: Osher-Elhadad <Osher.Elhadad@ibm.com>
OsherElhadad
force-pushed
the
fix/watsonx-deprecated-granite-model
branch
from
August 9, 2026 13:48
22ea950 to
cc594ab
Compare
mistralai/mistral-medium-2505 is no longer entitled on watsonx.ai, so the build_time tests failed at client init (3 failures + 1 collection error). Switch to mistralai/mistral-small-3-1-24b-instruct-2503, which is in the supported model list. Applied to tests, examples and docs. Full suite now passes locally against live watsonx: 359 passed, 8 skipped. Signed-off-by: Osher-Elhadad <Osher.Elhadad@ibm.com>
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.
Problem
CI test job fails with 5 failures + 4 setup errors, all one root cause:
watsonx.ai removed
ibm/granite-3-3-8b-instruct. Every test that builds aWatsonxLLMClientwith it dies at client init. Unrelated to any recent code change.Fix
Swap the model id to
meta-llama/llama-3-3-70b-instruct— it is in the supportedlist and is already the model the rest of the test suite uses (sparc, post_tool,
pre_response). Same swap applied to the examples and docs that carried the dead id.
Affected tests:
test_topic_extractor_chroma.py(5 failures)test_follow_up.py/test_wx_orchestrate.py(4 setup errors viaconftest.pyfixture)