-
Notifications
You must be signed in to change notification settings - Fork 138
feat(ui): move API to SDK #1737
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
Conversation
Summary of ChangesHello @PetrBulanek, 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 introduces a major architectural overhaul by migrating the existing API client and A2A extensions into a newly structured SDK. The primary goal is to enhance modularity, type safety, and error handling across the platform. The changes involve a comprehensive reorganization of code, the introduction of a more robust API interaction pattern, and a full update of the UI application to seamlessly adopt these new SDK capabilities. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. 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 and well-executed refactoring, moving the API client logic and type definitions into a dedicated agentstack-sdk-ts package. This greatly improves the overall architecture by creating a clear separation of concerns, enhancing type safety, and establishing a more robust and reusable API client. The new structure with a core API builder, modular endpoints, and structured error handling is a major step forward.
My review has identified a recurring critical issue across several new Zod schema definitions where z.enum() is used incorrectly with TypeScript enums, which will cause runtime errors. I've left specific comments with suggestions to use z.nativeEnum() instead. I also found a minor opportunity to improve the robustness of a URL-building utility function.
Once these issues are addressed, this will be an excellent contribution to the codebase.
apps/agentstack-sdk-ts/src/client/a2a/extensions/services/mcp/schemas.ts
Show resolved
Hide resolved
apps/agentstack-sdk-ts/src/client/a2a/extensions/ui/agent-detail/schemas.ts
Show resolved
Hide resolved
apps/agentstack-sdk-ts/src/client/a2a/runtime/buildLLMExtensionFulfillmentResolver.ts
Outdated
Show resolved
Hide resolved
apps/agentstack-sdk-ts/src/client/a2a/runtime/buildMessageBuilder.ts
Outdated
Show resolved
Hide resolved
apps/agentstack-sdk-ts/src/client/core/extensions/resolve-user-metadata.ts
Show resolved
Hide resolved
82f8c7a to
1d5300c
Compare
|
/gemini review |
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 is an excellent and extensive refactoring that significantly improves the codebase. Moving to the new agentstack-sdk with its well-defined API client, structured types, and improved error handling is a major step forward for maintainability and developer experience. The modularization of the SDK into core, api, and extensions is very clean. The consistent use of Zod for schema validation and type inference is also a great practice. The changes in the UI to adapt to the new SDK are well-executed. I've found a few minor issues and one critical one related to schema definitions, but overall, this is a very high-quality pull request.
apps/agentstack-sdk-ts/src/client/a2a/extensions/services/mcp/schemas.ts
Show resolved
Hide resolved
|
This is a breaking change for the whole TS SDK. |
kapetr
left a comment
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.
just a partail review - I'll continue tomorrow :)
apps/agentstack-ui/src/app/(main)/agent/[providerId]/ensure-model-selected.tsx
Show resolved
Hide resolved
kapetr
left a comment
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 SDK fails to validate /providers response as the API doesn't align with a2a types on null values, while the SDK schema does.
| if (data === null || typeof data !== 'object' || Array.isArray(data)) { | ||
| return data; | ||
| } |
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.
Wouldn't this bypass normalization for objects inside arrays?
Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add base for error handling Signed-off-by: Petr Bulánek <[email protected]> chore(ui): SDK folder structure rework (wip) Signed-off-by: Petr Bulánek <[email protected]> Signed-off-by: Petr Bulánek <[email protected]> Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add connectors api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add configuration api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add contexts api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add files api (wip) Signed-off-by: Petr Bulánek <[email protected]> chore(ui): update sdk folder structure Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add package entrypoints Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add response schemas Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add files api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add model providers api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add provider builds api (wip) Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add provider builds api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add providers api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add user feedback api Signed-off-by: Petr Bulánek <[email protected]> feat(ui): add missing api endpoints + error handling (work in progress) Signed-off-by: Petr Bulánek <[email protected]> feat(ui): fix api error handling Signed-off-by: Petr Bulánek <[email protected]> feat(ui): folder structure fix(ui): circular exports Signed-off-by: Petr Bulánek <[email protected]>
Signed-off-by: Petr Bulánek <[email protected]>
Signed-off-by: Petr Bulánek <[email protected]>
Signed-off-by: Petr Bulánek <[email protected]>
72fa74d to
bf13105
Compare
Summary
openapi-fetchclient in UI withagentstack-sdkclient usage across configuration, connectors, contexts, files, model providers, providers, user feedback, users and variables modules; remove legacy UI API types/utils.Linked Issues
Refs: #1692
Documentation
This PR is already huge in itself, so the documentation will be part of additional PR.