Add You.com integration to the integrations grid - #5084
Draft
tyler5673 wants to merge 4 commits into
Draft
Conversation
Add a card for the youdotcom-temporal plugin, which exposes You.com search, research, and webpage-contents calls as durable Temporal Activities. Proposes a new "Data source" tag for data-providing integrations; asking maintainers to confirm the category or rename it.
|
@tyler5673 is attempting to deploy a commit to the Temporal Team on Vercel. A member of the Team first needs to authorize it. |
Match the product term and distinguish from generic search.
Use a commit-tagged permalink (blob/v1.0.0/README.md) instead of the moving main branch ref, so the integrations grid always points at the reviewed release snapshot.
A pinned tag ref would go stale on every release and add maintenance burden for no benefit; the main branch ref always points at the latest README and never 404s while the repo exists.
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.
What this adds
A new card in the integrations grid (
docs.temporal.io/integrations) for You.com, linking to the standaloneyoudotcom-temporalplugin.The plugin exposes You.com web search, research, and webpage-contents calls as durable Temporal Activities with retry and error mapping, and ships a
SimplePluginfor one-line worker/client setup. It is a standalone package (not intemporalio/contrib/), which matches how other third-party integrations are listed here (e.g., Parseable, Mastra, Pydantic AI).Change
One entry appended to
src/components/IntegrationsGrid/integrations-data.json:{ "name": "You.com", "description": "Run You.com web search, research, and webpage-contents calls as durable Temporal Activities with retry and error mapping.", "tags": ["Data source"], "sdk": "Python", "href": "https://github.com/youdotcom-oss/youdotcom-temporal/blob/main/README.md" }This JSON is the single source for both the React grid (
src/components/IntegrationsGrid) and the markdown pipeline (scripts/component-handlers/integrations.mjs), so this one edit updates both renderings. No.mdxpage is added; the card links directly to the plugin's README, consistent with the OpenAI Agents SDK (Python) and Parseable entries.Tag: requesting maintainer input
I used a new
Data sourcetag. None of the existing tags (Agent framework,Agent observability,Framework,Governance,Observability,Temporal Cloud) fit a data-providing integration, and the tag list is auto-derived from this file, so the new value will appear as a filter chip with no component change.I chose
Data sourceover:Tools— too broad, and overlaps the SDK's own "tools" concept.Grounding/Retrieval— RAG jargon, too narrow for a public filter chip.Search— too narrow; the plugin also does research and webpage contents.Happy to rename or drop it if you'd prefer a different category, or would rather not add a new tag for a single entry.
Validation
python3 -m json.tool integrations-data.jsonpasses.Temporal.Headings,Temporal.RelativeLinks, scoped todocs/) do not apply to this file.yarn buildlocally (no Node toolchain in this environment); the change is a data-only JSON addition with no structural or code impact.CLA
I will sign the Temporal CLA when prompted.