榜单与资源

Jev-awesome

@fanly1PythonNOASSERTION更新于 2026-09-20可当场跑

面向开发者的 Jev / TypeSafe 精选,说明每个项目中 Jev 负责的步骤、源码阅读顺序、依赖需求及未验证结论。

英文原文

面向开发者的 Jev / TypeSafe 精选:说明每个项目里 Jev 负责哪一步、先读哪段源码、需要什么依赖,以及哪些结论还没有运行验证。

fanly/Jev-awesome

它在哪儿调用了 Jev

"api.typesafe.ai",

src/jev_awesome/rendering/radar.py:79

链接指向我们抓取当天的那个 commit,行号是准的。

它问 Jev 的问题

下面是从这个项目源码里原样取出来的 question 组合。

取自 src/jev_awesome/classification/typesafe_adapter.py:68

  1. kind选项

    What kind of developer resource is this?

    • official_docOfficial TypeSafe documentation or changelog
    • sdkLanguage SDK, client, or framework integration
    • tutorialGetting-started guide, cookbook, or pattern write-up
    • applicationApplication or tool with a concrete implementation
    • evaluationEvaluation, benchmark, failure case, or limits study
    • researchResearch paper or independent reimplementation
    • insufficient_evidenceNot enough information to classify
    • unrelatedNot about TypeSafe / Jev
  2. relationship选项

    How does this resource relate to Jev / TypeSafe?

    • officialPublished by TypeSafe / typesafe-ai
    • calls_official_apiCalls the official TypeSafe API or SDK
    • community_sdkCommunity-maintained SDK or binding
    • inspired_independentInspired by Jev but independent implementation
    • mention_onlyOnly mentions Jev/TypeSafe without integration
    • unclearRelationship cannot be determined
    • not_relatedNot related
  3. review_priority打分

    How urgently should a human curator review this candidate?

    • 0Low priority / likely noise
    • 1Medium priority / plausible candidate
    • 2High priority / official or strong evidence

用你自己的内容跑一遍

代码
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    kind: { type: 'choice', instructions: 'What kind of developer resource is this?',
      criteria: { official_doc: 'Official TypeSafe documentation or changelog', sdk: 'Language SDK, client, or framework integration', tutorial: 'Getting-started guide, cookbook, or pattern write-up', application: 'Application or tool with a concrete implementation', evaluation: 'Evaluation, benchmark, failure case, or limits study', research: 'Research paper or independent reimplementation', insufficient_evidence: 'Not enough information to classify', unrelated: 'Not about TypeSafe / Jev' } },
    relationship: { type: 'choice', instructions: 'How does this resource relate to Jev / TypeSafe?',
      criteria: { official: 'Published by TypeSafe / typesafe-ai', calls_official_api: 'Calls the official TypeSafe API or SDK', community_sdk: 'Community-maintained SDK or binding', inspired_independent: 'Inspired by Jev but independent implementation', mention_only: 'Only mentions Jev/TypeSafe without integration', unclear: 'Relationship cannot be determined', not_related: 'Not related' } },
    review_priority: { type: 'score', instructions: 'How urgently should a human curator review this candidate?',
      criteria: ['Low priority / likely noise', 'Medium priority / plausible candidate', 'High priority / official or strong evidence'] },
  },
});

同类的其他项目