-
Notifications
You must be signed in to change notification settings - Fork 87
stage: v1 wip #623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: staging
Are you sure you want to change the base?
stage: v1 wip #623
Conversation
Summary of ChangesHello @abhishekg999, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request marks a significant step towards a more structured and extensible API for the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces a significant amount of work towards a new v1 SDK, including a new API client generator, data models, and an OpenTelemetry-based tracing system. The overall structure is well-designed, using factories and clear separation of concerns. My review focuses on the new v1 implementation, where I've identified a couple of high-severity bugs related to caching and argument inspection in the tracer, along with some medium-severity style suggestions for the new API generator script to improve maintainability.
| def _format_inputs( | ||
| self, f: Callable[..., Any], args: Tuple[Any, ...], kwargs: Dict[str, Any] | ||
| ) -> Dict[str, Any]: | ||
| try: | ||
| params = list(inspect.signature(f).parameters.values()) | ||
| inputs: Dict[str, Any] = {} | ||
| arg_i = 0 | ||
| for param in params: | ||
| if param.kind == inspect.Parameter.POSITIONAL_OR_KEYWORD: | ||
| if arg_i < len(args): | ||
| inputs[param.name] = args[arg_i] | ||
| arg_i += 1 | ||
| elif param.name in kwargs: | ||
| inputs[param.name] = kwargs[param.name] | ||
| elif param.kind == inspect.Parameter.VAR_POSITIONAL: | ||
| inputs[param.name] = args[arg_i:] | ||
| arg_i = len(args) | ||
| elif param.kind == inspect.Parameter.VAR_KEYWORD: | ||
| inputs[param.name] = kwargs | ||
| return inputs | ||
| except Exception: | ||
| return {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current implementation of _format_inputs is complex and has a bug where it includes self in the captured arguments for instance methods. You can simplify this significantly and make it more robust by using inspect.signature().bind(). This will correctly handle all argument passing styles and allow you to easily remove self or cls from the result.
def _format_inputs(
self, f: Callable[..., Any], args: Tuple[Any, ...], kwargs: Dict[str, Any]
) -> Dict[str, Any]:
try:
bound_args = inspect.signature(f).bind(*args, **kwargs)
bound_args.apply_defaults()
arguments = bound_args.arguments
if "self" in arguments:
del arguments["self"]
if "cls" in arguments:
del arguments["cls"]
return arguments
except Exception:
return {}|
|
||
|
|
||
| def filter_schemas() -> Dict[str, Any]: | ||
| from typing import Generator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| check=True, | ||
| ) | ||
| finally: | ||
| import os |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
✔️ Propel has finished reviewing this change. |
No description provided.