Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the website home “Key Features” cards to use image-based icons (instead of emoji), and adjusts a few LLM docs navigation labels/links for clarity/consistency.
Changes:
- Replace emoji feature icons with image assets and render them via an
<img>element in the home feature cards. - Update internal links in
llm/http.mdxto use absolute/docs/...paths. - Tweak the LLM docs
_meta.tslabel forapplicationto singular wording.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| website/src/movies/HomeStrengthMovie.tsx | Switch feature icons from emoji text to image assets rendered via Box component="img". |
| website/src/content/docs/llm/http.mdx | Update a couple of internal doc links to absolute /docs/... URLs. |
| website/src/content/docs/llm/_meta.ts | Rename the application nav label from plural to singular. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <Box | ||
| component="img" | ||
| src={props.icon} | ||
| alt={props.title} |
| ## Validation Feedback | ||
|
|
||
| When used through [MCP](../mcp), [Vercel AI SDK](../vercel), or [Agentica](../chat), `HttpLlm.controller()` embeds [`typia.validate<T>()`](/docs/validators/validate) in every tool for automatic argument validation. When validation fails, the error is returned as text content with inline `// ❌` comments at each invalid property: | ||
| When used through [MCP](/docs/llm/mcp), [Vercel AI SDK](/docs/llm/vercel), or [Agentica](/docs/llm/chat), `HttpLlm.controller()` embeds [`typia.validate<T>()`](/docs/validators/validate) in every tool for automatic argument validation. When validation fails, the error is returned as text content with inline `// ❌` comments at each invalid property: |
| Some LLM SDKs (Anthropic, Vercel AI, LangChain, MCP) parse JSON internally and return JavaScript objects directly. In these cases, use `IHttpLlmFunction.coerce()` instead of `IHttpLlmFunction.parse()` to fix types without re-parsing. | ||
|
|
||
| For more details, see [JSON Utilities](../json). | ||
| For more details, see [JSON Utilities](/docs/llm/json). |
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.
This pull request updates both documentation and UI components to improve clarity and visual consistency. The most important changes include updating icon usage in the
HomeStrengthMovie.tsxfeature cards from emojis to image assets, and refining documentation links for accuracy and consistency.UI improvements:
HomeStrengthMovie.tsx, providing a more professional and consistent appearance. ([[1]](https://github.com/samchon/typia/pull/1795/files#diff-818f5541e1dcffb0f05ca0d7c1e015824f1a0a452181a8704598981a16a4e927L18-R18),[[2]](https://github.com/samchon/typia/pull/1795/files#diff-818f5541e1dcffb0f05ca0d7c1e015824f1a0a452181a8704598981a16a4e927L28-R28),[[3]](https://github.com/samchon/typia/pull/1795/files#diff-818f5541e1dcffb0f05ca0d7c1e015824f1a0a452181a8704598981a16a4e927L38-R38),[[4]](https://github.com/samchon/typia/pull/1795/files#diff-818f5541e1dcffb0f05ca0d7c1e015824f1a0a452181a8704598981a16a4e927L48-R48),[[5]](https://github.com/samchon/typia/pull/1795/files#diff-818f5541e1dcffb0f05ca0d7c1e015824f1a0a452181a8704598981a16a4e927L58-R58))FeatureCardcomponent to render icons as images instead of text, ensuring proper display and accessibility. ([website/src/movies/HomeStrengthMovie.tsxL89-R94](https://github.com/samchon/typia/pull/1795/files#diff-818f5541e1dcffb0f05ca0d7c1e015824f1a0a452181a8704598981a16a4e927L89-R94))Documentation enhancements:
http.mdxto use absolute paths, improving navigation and link reliability. ([[1]](https://github.com/samchon/typia/pull/1795/files#diff-fd721d3670cc3a91986fec21ce6b794106034318129c2569717c62dcfb40fc76L220-R220),[[2]](https://github.com/samchon/typia/pull/1795/files#diff-fd721d3670cc3a91986fec21ce6b794106034318129c2569717c62dcfb40fc76L328-R328))applicationfunction in_meta.tsfor clarity. ([website/src/content/docs/llm/_meta.tsL4-R4](https://github.com/samchon/typia/pull/1795/files#diff-077ab5b8558ac299b27bd392e001c34468986bb23317e11642e5269b7a1ea740L4-R4))