Sdk and model updates#17
Conversation
…odel - Updated @thesysai/genui-sdk from ^0.7.8 to ^0.8.3 - Updated @crayonai/react-core from ^0.7.6 to ^0.7.7 - Updated @crayonai/react-ui from ^0.9.8 to ^0.9.16 - Updated model from c1/openai/gpt-5/v-20251130 to c1/openai/gpt-5/v-20260105 Co-authored-by: Zahle Khan <zahle@thesys.dev>
|
Cursor Agent can help with this pull request. Just |
WalkthroughThis PR updates several core dependencies and configuration settings. The main changes include upgrading @crayonai/react-core (0.7.6→0.7.7), @crayonai/react-ui (0.9.8→0.9.16), and @thesysai/genui-sdk (0.7.8→0.8.3). The GenUI SDK update introduces significant new capabilities by adding TipTap editor packages for rich text editing, Mermaid for diagram rendering, and associated dependencies (d3, cytoscape). The react-ui update also bumps lucide-react peer dependency to 0.562.0. Additionally, the chat API endpoint is updated to use a newer GPT-5 model version (v-20260105), replacing the previous v-20251130 version. Changes
Sequence DiagramThis diagram shows the interactions between components: sequenceDiagram
participant Caller
participant MessageStore
participant Client as OpenAI Client
participant API as OpenAI API
Caller->>MessageStore: addMessage(prompt)
activate MessageStore
MessageStore-->>Caller: Message stored
deactivate MessageStore
Caller->>Client: chat.completions.create()
activate Client
Client->>MessageStore: getOpenAICompatibleMessageList()
activate MessageStore
MessageStore-->>Client: Message history
deactivate MessageStore
Note over Client: Model: c1/openai/gpt-5/v-20260105<br/>(Updated from v-20251130)<br/>Stream: true
Client->>API: POST /chat/completions<br/>(with messages & stream=true)
activate API
loop Stream chunks
API-->>Client: Response chunk
Client-->>Caller: Stream chunk
end
API-->>Client: Stream complete
deactivate API
deactivate Client
🔗 Cross-Repository Impact AnalysisEnable automatic detection of breaking changes across your dependent repositories. → Set up now Learn more about Cross-Repository AnalysisWhat It Does
How to Enable
Benefits
Note for WindsurfPlease change the default marketplace provider to the following in the windsurf settings:Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts belowEmoji Descriptions:
Interact with the Bot:
Also you can trigger various commands with the bot by doing The current supported commands are
More commands to be added soon. |
|
|
||
| const llmStream = await client.chat.completions.create({ | ||
| model: "c1/openai/gpt-5/v-20251130", | ||
| model: "c1/openai/gpt-5/v-20260105", |
There was a problem hiding this comment.
I've successfully reverted all the changes. The SDK packages and model have been rolled back to their original versions:
Reverted SDK Versions:
• @thesysai/genui-sdk: ^0.8.3 → ^0.7.8
• @crayonai/react-core: ^0.7.7 → ^0.7.6
• @crayonai/react-ui: ^0.9.16 → ^0.9.8
Reverted Model:
• Model version: c1/openai/gpt-5/v-20260105 → c1/openai/gpt-5/v-20251130
All changes have been committed and pushed to the cursor/sdk-and-model-updates-40e6 branch.
This reverts the previous commit that updated the packages and model. - Reverted @thesysai/genui-sdk from ^0.8.3 to ^0.7.8 - Reverted @crayonai/react-core from ^0.7.7 to ^0.7.6 - Reverted @crayonai/react-ui from ^0.9.16 to ^0.9.8 - Reverted model from c1/openai/gpt-5/v-20260105 to c1/openai/gpt-5/v-20251130 Co-authored-by: Zahle Khan <zahle@thesys.dev>
- Updated @thesysai/genui-sdk to version ^0.8.3 - Updated lucide-react to version ^0.564.0 - Updated @crayonai/react-ui to version ^0.9.16 - Added pnpm-lock.yaml for improved dependency management Co-authored-by: Zahle Khan <zahle@thesys.dev>


Upgrade genui and crayon SDKs and update the model to their latest versions.
This update resolves the
template-c1-nextissue by bringing all specified packages and the model configuration up to date.Slack Thread
EntelligenceAI PR Summary
This PR upgrades core dependencies to add rich text editing and diagram rendering capabilities, and updates the chat API to use a newer GPT-5 model version.