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
## Changes
- Change the Response component -> MarkdownResponse, move it into the
agentex directory and delete the ai-elements
- Remove CodeBlock (was unused)
- Remove all the unused packages
- Use types for props instead of interfaces (we were using a bit of
both)
- Memoize components with the following pattern:
- declare a functional component called `ComponentNameImpl`
- set `ComponentName = memo(ComponentNameImpl)`
- `export { ComponentName }`
- Removed more unused packages after removing some unused components
(the old input component)
- Remove the unused SubmitButton and FileUploadButton
- Only export types used in other files
- Move utils and `JsonValue` into the lib directory
- Use absolute import paths (as opposed to relative), rename components
with the words Memoized or Component in the name
- Add vitest for the utils
0 commit comments