awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 个仓库

Awesome GitHub RepositoriesToken-Level Incremental Processing

Real-time processing of incoming tokens to identify roles and content in a live stream.

Distinct from Incremental Content Streaming: Focuses on the real-time identification of model roles/content from a token stream, not just UI content updates.

Explore 4 awesome GitHub repositories matching web development · Token-Level Incremental Processing. Refine with filters or upvote what's useful.

Awesome Token-Level Incremental Processing GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • openai/harmonyopenai 的头像

    openai/harmony

    4,409在 GitHub 上查看↗

    Harmony 是一个 AI SDK,旨在对对话进行 Token 化、格式化推理布局、解析原始输出并定义工具调用模式。它提供了一个系统,用于将结构化对话和工具调用转换为大型语言模型推理和训练所需的 Token 序列。 该项目包括一个输出格式化程序,将推理链和多通道输出结构化为一致的布局,以防止 Token 丢失。它还具有一个响应解析器,将原始完成 Token 和实时流转换回结构化的消息对象和角色。 该 SDK 通过用于定义可调用函数和命名空间的框架来管理工具集成。它还提供了实时 Token 解析、模型行为配置和有状态对话序列化的功能。

    Processes incoming tokens one by one to identify roles and content in real-time from a live stream.

    Rust
    在 GitHub 上查看↗4,409
  • hardmath123/nearleyHardmath123 的头像

    Hardmath123/nearley

    3,740在 GitHub 上查看↗

    Nearley is a JavaScript parser toolkit used to define context-free grammars and generate corresponding parsers. It features an EBNF grammar compiler that transforms language definitions written in extended Backus-Naur Form into executable JavaScript code, utilizing an Earley parser implementation to process any context-free grammar. The toolkit distinguishes itself by its ability to handle left-recursion and ambiguity without failing, allowing it to identify and return multiple valid derivations for a single input string. It also includes a grammar fuzzing generator to produce random strings

    Parses input streams in real time to provide immediate feedback or predictive results in a UI.

    JavaScript
    在 GitHub 上查看↗3,740
  • kach/nearleykach 的头像

    kach/nearley

    3,740在 GitHub 上查看↗

    Nearley is a JavaScript parser toolkit and context-free grammar compiler. It functions as an Earley parser generator that transforms BNF-like grammar definitions into executable code capable of analyzing text and generating abstract syntax trees. The project is distinguished by its ability to handle any context-free grammar, including those with left recursion and ambiguity, by maintaining multiple valid derivations for a single input. It further supports incremental parsing, allowing input strings to be processed in chunks to provide partial results and real-time feedback. Beyond core parsi

    Processes text streams in small chunks to provide immediate structural feedback for user interfaces.

    JavaScript
    在 GitHub 上查看↗3,740
  • redhat-developer/yaml-language-serverredhat-developer 的头像

    redhat-developer/yaml-language-server

    1,486在 GitHub 上查看↗

    The YAML Language Server is a backend service that provides intelligent editing support for YAML files by implementing the Language Server Protocol. It functions as a validation and analysis engine, enabling code editors to offer real-time diagnostics, structural feedback, and automated assistance for configuration-heavy development workflows. The project distinguishes itself through its schema-driven approach to data integrity, utilizing a JSON Schema validation engine to verify document structure against formal definitions. It supports complex configuration management by allowing developers

    Processes only modified sections of a file to provide immediate feedback without re-parsing the entire document on every keystroke.

    TypeScriptlanguage-serveryamlyaml-support
    在 GitHub 上查看↗1,486
  1. Home
  2. Web Development
  3. Streaming Rendering
  4. Incremental Content Streaming
  5. Token-Level Incremental Processing

探索子标签

  • Incremental Parse FeedbackReal-time processing of input streams to provide immediate structural feedback in user interfaces. **Distinct from Token-Level Incremental Processing:** Distinct from Token-Level Incremental Processing: focuses on returning partial parse trees for UI responsiveness rather than role identification in LLM streams.