Skip to content

Bump litellm from 1.57.8 to 1.74.15.post1#171

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/litellm-1.74.15.post1
Closed

Bump litellm from 1.57.8 to 1.74.15.post1#171
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/litellm-1.74.15.post1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 4, 2025

Copy link
Copy Markdown

Bumps litellm from 1.57.8 to 1.74.15.post1.

Release notes

Sourced from litellm's releases.

litellm_v1.65.4-dev_fix

Full Changelog: BerriAI/litellm@v1.65.4-stable...litellm_v1.65.4-dev_fix

Docker Run LiteLLM Proxy

docker run \
-e STORE_MODEL_IN_DB=True \
-p 4000:4000 \
ghcr.io/berriai/litellm:main-litellm_v1.65.4-dev_fix

Don't want to maintain your internal proxy? get in touch 🎉

Hosted Proxy Alpha: https://calendly.com/d/4mp-gd3-k5k/litellm-1-1-onboarding-chat

Load Test LiteLLM Proxy Results

Name Status Median Response Time (ms) Average Response Time (ms) Requests/s Failures/s Request Count Failure Count Min Response Time (ms) Max Response Time (ms)
/chat/completions Passed ✅ 150.0 182.3086370464627 6.335489722473191 0.0 1894 0 112.72804899999755 1087.5013490000072
Aggregated Passed ✅ 150.0 182.3086370464627 6.335489722473191 0.0 1894 0 112.72804899999755 1087.5013490000072
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [litellm](https://github.com/BerriAI/litellm) from 1.57.8 to 1.74.15.post1.
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](https://github.com/BerriAI/litellm/commits)

---
updated-dependencies:
- dependency-name: litellm
  dependency-version: 1.74.15.post1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@coleam00

Copy link
Copy Markdown
Owner

Thanks for submitting this PR! I had to take a step back from Archon so I wasn't able to get to this, but for good reason! The massive overhaul for Archon turning it into the operating system for AI coding assistants is coming soon! I'll be closing this PR due to this, but if you want to implement something similar for the new Archon please feel free to make another PR!

@coleam00 coleam00 closed this Aug 13, 2025
@dependabot @github

dependabot Bot commented on behalf of github Aug 13, 2025

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/pip/litellm-1.74.15.post1 branch August 13, 2025 12:33
POWERFULMOVES added a commit to POWERFULMOVES/PMOVES-Archon that referenced this pull request Feb 12, 2026
…extraction-for-test_integration.py

Normalize PMOVES.yt ingest metadata extraction
coleam00 pushed a commit that referenced this pull request Apr 7, 2026
…) (#173)

* Investigate issue #171: RouterContext not populated for non-slash commands

* Fix: RouterContext not populated for non-slash commands on GitHub (#171)

The RouterContext was not being populated for non-slash commands on GitHub because
the orchestrator only extracted context from the issueContext parameter (used by
slash commands). For non-slash commands, the GitHub adapter embeds context in the
message parameter, which was being ignored.

Changes:
- Extract RouterContext from message when issueContext is undefined
- Prioritize issueContext over message when both are present (backward compatibility)
- Add contextSource field to debug logs to distinguish extraction source
- Add tests for non-slash command context extraction
- Add test to verify issueContext takes precedence over message

Fixes #171

* Archive investigation for issue #171

* Update investigation for issue #171: Regression in workflowType handling

* Fix: Only set isPullRequest when GitHub context markers present

The previous fix for issue #171 (commit 87b2ef3) introduced a regression
where isPullRequest was always set to true/false, preventing workflowType
from isolationHints from being used as a fallback type indicator.

Changes:
- Only set isPullRequest when GitHub context markers are detected
- Updated tests to include required GitHub context markers
- Allows workflowType to display correctly when no GitHub context

Fixes regression in workflowType handling from commit 87b2ef3

* Archive investigation update for issue #171

* fix: reduce log noise by gating context extraction behind GitHub markers

- Only extract title/labels when GitHub context markers are present
- Non-GitHub platforms (Telegram/Slack/Discord) no longer trigger noisy logs
- Removed "No labels found" log since many issues legitimately lack labels
- Kept title extraction warning when GitHub context IS present but format fails
- Maintains backward compatibility: issueContext always used for slash commands
Tyone88 pushed a commit to Tyone88/Archon that referenced this pull request Apr 16, 2026
…leam00#171) (coleam00#173)

* Investigate issue coleam00#171: RouterContext not populated for non-slash commands

* Fix: RouterContext not populated for non-slash commands on GitHub (coleam00#171)

The RouterContext was not being populated for non-slash commands on GitHub because
the orchestrator only extracted context from the issueContext parameter (used by
slash commands). For non-slash commands, the GitHub adapter embeds context in the
message parameter, which was being ignored.

Changes:
- Extract RouterContext from message when issueContext is undefined
- Prioritize issueContext over message when both are present (backward compatibility)
- Add contextSource field to debug logs to distinguish extraction source
- Add tests for non-slash command context extraction
- Add test to verify issueContext takes precedence over message

Fixes coleam00#171

* Archive investigation for issue coleam00#171

* Update investigation for issue coleam00#171: Regression in workflowType handling

* Fix: Only set isPullRequest when GitHub context markers present

The previous fix for issue coleam00#171 (commit 87b2ef3) introduced a regression
where isPullRequest was always set to true/false, preventing workflowType
from isolationHints from being used as a fallback type indicator.

Changes:
- Only set isPullRequest when GitHub context markers are detected
- Updated tests to include required GitHub context markers
- Allows workflowType to display correctly when no GitHub context

Fixes regression in workflowType handling from commit 87b2ef3

* Archive investigation update for issue coleam00#171

* fix: reduce log noise by gating context extraction behind GitHub markers

- Only extract title/labels when GitHub context markers are present
- Non-GitHub platforms (Telegram/Slack/Discord) no longer trigger noisy logs
- Removed "No labels found" log since many issues legitimately lack labels
- Kept title extraction warning when GitHub context IS present but format fails
- Maintains backward compatibility: issueContext always used for slash commands
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant