feat: add agent builder support and enhance project members API#469
Open
fern-api[bot] wants to merge 1 commit intomainfrom
Open
feat: add agent builder support and enhance project members API#469fern-api[bot] wants to merge 1 commit intomainfrom
fern-api[bot] wants to merge 1 commit intomainfrom
Conversation
Adds support for agent builder with simplified agent configuration using agent IDs, refactors agent settings structure for better type safety, and extends project members API with additional user information fields. Key changes: - Add agent builder support with string agent ID alternative to complex configuration - Restructure Agent type to union of complex config or simple string ID - Rename AgentV1SettingsAgentListenProvider to AgentV1SettingsAgentContextListenProvider - Add scopes, first_name, and last_name fields to project members response - Add comprehensive JSDoc comments to Listen V1/V2 and Speak V1 type definitions - Remove deprecated context7.json configuration file 🌿 Generated with Fern
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.
Version Bump: The Agent type changed from interface to union type, breaking existing callers who access nested properties like Agent.Context.
The Agent configuration type has been restructured as a union type that accepts either a detailed configuration object or a simple agent ID string for use with the agent builder. This change simplifies agent setup when using pre-built agents but requires updating existing code that accesses nested Agent properties. The AgentV1SettingsAgentListenProvider type has been renamed to AgentV1SettingsAgentContextListenProvider. Project members API now includes additional fields: scopes, first_name, and last_name.