Batch salvage group 2: 10 low-risk new-contributor PRs (kanban/windows/credential-pool/deepseek-aux/etc)#27292
Merged
Merged
Conversation
Adds logger.info when large pastes are collapsed to file references in both paste-code paths (handle_paste and _on_text_changed). Logs paste ID, line count, character count, and file path so operators can correlate missing- content reports with specific paste files. This is a diagnostic aid, not a fix for the paste-drop issue.
The gateway already accepts plain-text config files (.ini, .cfg) and structured formats (.json, .yaml, .toml) as documents, but not common source-file extensions. Sending a .ts/.py/.sh file currently requires renaming it to .txt first. Adds .ts, .py, .sh as text/plain, consistent with the existing .ini/.cfg entries. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The install_open_webui function correctly resolved the python interpreter into the $py variable, but hardcoded 'python' in subsequent pip install commands. This caused 'command not found' or 'externally-managed-environment' errors on systems where 'python' is not implicitly aliased to 'python3'.
previously only checked provider ID and
base URL. When kimi-k2.6 is served via ollama-cloud (or any third-party
provider), provider is not 'kimi-coding' and base URL is not
api.kimi.com — so reasoning_content pad was never injected. This caused
HTTP 400 from Ollama Cloud's Go backend: 'invalid message content type:
map[string]interface {}'.
Fix: add model-name detection ('kimi' in model.lower()) so any route
serving a kimi model gets the required reasoning_content echo-back.
Refs the 400/401 Telegram errors where kimi-k2.6 via ollama-cloud
consistently failed after tool-call turns.
…firing Closes #26924 (and supersedes #26926) in spirit. DeepSeek was missing `default_aux_model` on its `ProviderProfile`, so `_get_aux_model_for_provider("deepseek")` returned an empty string and the compression / vision / session-search paths emitted "No auxiliary LLM provider configured -- context compression will drop middle turns without a summary." on every DeepSeek session, even when the user had perfectly working DeepSeek credentials. Fix lands at the profile layer rather than the legacy `_API_KEY_PROVIDER_AUX_MODELS_FALLBACK` dict the original PR targeted. Every modern provider (gemini, zai, minimax, anthropic, kimi-coding, stepfun, ollama-cloud, gmi, novita, kilocode, ai-gateway, opencode-zen) sets `default_aux_model` on its `ProviderProfile`; the fallback dict only exists for providers that predate the profiles system. Tests added under `tests/plugins/model_providers/test_deepseek_profile.py`: - `test_profile_advertises_deepseek_chat` -- pins the profile attribute - `test_consumer_api_returns_deepseek_chat` -- pins the consumer API behavior - `test_consumer_api_returns_non_empty` -- regression guard for the symptom in the issue Original diagnosis and aux-model choice from @kriscolab in PR #26926; moved one layer up. Co-authored-by: kriscolab <71590782+kriscolab@users.noreply.github.com>
…tors Adds release-note attribution mappings for 10 contributors from the low-hanging-fruit salvage group 2 batch: - @shellybotmoyer (PR #26661, #25576) - @ether-btc (PR #26632) - @LifeJiggy (PR #26516) - @nekwo (PR #26481) - @flooryyyy (PR #26374) - @dgians (PR #26034, incl. zealy-tzco bot-committer alias) - @flanny7 (PR #27030) - @hermesagent26 (PR #26438) - @kriscolab (PR #26926, co-author on salvage commit)
This was referenced May 17, 2026
Closed
Contributor
🔎 Lint report:
|
This was referenced May 17, 2026
1 task
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.
Batch salvage of 10 low-risk new-contributor PRs onto current
mainwith contributor authorship preserved per-commit. Group 2 of the LHF run (group 1 was #27247 / #27271).Salvaged PRs
--severityfilter uses>=comparison per documented "at or above" semantics_looks_like_error_outputhelper.ts/.py/.shtoSUPPORTED_DOCUMENT_TYPESlast_status_atduringfrom_dictrehydrationpythonvariable insetup_open_webui.shdefault_aux_modelon profile so "No aux LLM provider configured" warning stops firing (#26924)Salvage-with-redirect: #26926
#26926 diagnosed a real bug — deepseek users were seeing the
"No auxiliary LLM provider configured -- context compression will drop middle turns without a summary"warning on every session because_get_aux_model_for_provider("deepseek")returned"". The contributor's fix landed"deepseek": "deepseek-chat"in the legacy_API_KEY_PROVIDER_AUX_MODELS_FALLBACKdict.Per current main, that dict is legacy —
_get_aux_model_for_provider()checksProviderProfile.default_aux_modelfirst, and every modern provider (gemini, zai, minimax, anthropic, kimi-coding, stepfun, ollama-cloud, gmi, novita, kilocode, ai-gateway, opencode-zen) sets that on its profile. Deepseek was the only one missing the attribute.Salvage shape moved one layer up:
default_aux_model="deepseek-chat"is now set onDeepSeekProfile()directly. Tests landed undertests/plugins/model_providers/test_deepseek_profile.py::TestDeepSeekAuxModelcovering both the profile attribute and the consumer API (_get_aux_model_for_provider). Original diagnosis and aux-model choice credited to @kriscolab viaCo-authored-by:trailer.Attribution
@example.com,Hermes Agent <hermesagent26@gmail.com>,Zealy <zealy@tz.co>,Agent Coulson <coulson@shellybotmoyer.com>). Re-authored to the actual GitHub-login noreply form viacherry-pick --no-commit+--author=.Co-authored-by: kriscolabbecause the salvage shape diverged from the contributor's diff.AUTHOR_MAPentries inscripts/release.pyfor all 10 contributors plus thezealy-tzcobot-committer alias used in feat(gateway): add .ts/.py/.sh to SUPPORTED_DOCUMENT_TYPES #26034.Test plan
tests/plugins/model_providers/test_deepseek_profile.py— 29 passed in 0.89s (3 new aux-model tests + 26 existing)..pyfiles.Rebase-merge so contributor authorship survives per-commit.