Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the SDK’s TEE/x402 integration to work with newer model identifiers and an experimental x402 module, while adding client-side normalization for block-structured chat content and changing the default TEE LLM endpoint.
Changes:
- Update
TEE_LLMmodel enum values (add new models, remove older identifiers). - Add ad-hoc TLS certificate fetching/pinning and pass
verify=into the x402 httpx client. - Change default TEE LLM server URLs to an HTTPS IP endpoint; bump SDK + dependency versions; tweak CLI/Makefile examples.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 12 comments.
Show a summary per file
| File | Description |
|---|---|
| src/opengradient/types.py | Updates the list of supported TEE model IDs (but removes existing enum members). |
| src/opengradient/defaults.py | Points default LLM endpoints to a hard-coded IP address and adds a TODO about registry-based discovery. |
| src/opengradient/client/llm.py | Adds TLS “pinning” logic, wires it into the HTTP client, and normalizes block-list content responses. |
| src/opengradient/cli.py | Normalizes list-of-block content when printing chat output. |
| requirements.txt | Bumps og-test-v2-x402 version. |
| pyproject.toml | Bumps package version and og-test-v2-x402 dependency. |
| Makefile | Updates default MODEL and adds tool-calling examples; adjusts .PHONY. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.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.
Currently using experimental x402 module locally, will remove and use official pypi version once validated.