You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add agent builder support and enhance project members API
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
* 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.
0 commit comments