npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@000alen/fuzzy-xml

v1.0.0

Published

![License](https://img.shields.io/badge/license-MIT-blue.svg)

Downloads

68

Readme

fuzzy-xml

License

fuzzy-xml is a robust TypeScript library designed to parse semi-structured, XML-like tags interleaved with natural language text, commonly found in responses from Large Language Models (LLMs). It gracefully handles fuzzy and malformed tags, ensuring reliable extraction of structured data from otherwise unpredictable outputs.

Table of Contents

Features

  • Fuzzy Parsing: Handles semi-structured inputs with interleaved natural language and XML-like tags.
  • Error Tolerance: Continues parsing despite malformed or incomplete tags.
  • Nested Tag Support: Accurately parses nested tags, maintaining hierarchical relationships.
  • Lightweight: Minimal dependencies, ensuring fast and efficient parsing.
  • Extensible: Easily extendable to handle custom parsing requirements.
  • TypeScript Support: Provides strong type definitions for enhanced developer experience.

Installation

You can install fuzzy-xml via npm:

npm install @000alen/fuzzy-xml

Or using yarn:

yarn add @000alen/fuzzy-xml

Usage

Basic Example

import { FuzzyXMLParser, ParsedNode } from "@000alen/fuzzy-xml";

const llmResponse = `
Here is the summary of our findings:

<findings>
  The indemnification clause is overly broad.
  Additionally, the limitation of liability is insufficient.
  <details>
    This could expose us to significant risks.
  </details>
</findings>

Please review these points at your earliest convenience.

<recommendations>
  We should renegotiate the indemnification terms.
  Also, consider increasing the liability cap.
</recommendations>

Thank you.
`;

const parser = new FuzzyXMLParser(llmResponse);
const parsedNodes: ParsedNode[] = parser.parse();

console.log(JSON.stringify(parsedNodes, null, 2));

Output:

[
  {
    "content": "Here is the summary of our findings:",
    "children": []
  },
  {
    "tagName": "findings",
    "content": "The indemnification clause is overly broad.\nAdditionally, the limitation of liability is insufficient.",
    "children": [
      {
        "tagName": "details",
        "content": "This could expose us to significant risks.",
        "children": []
      }
    ]
  },
  {
    "content": "Please review these points at your earliest convenience.",
    "children": []
  },
  {
    "tagName": "recommendations",
    "content": "We should renegotiate the indemnification terms.\nAlso, consider increasing the liability cap.",
    "children": []
  },
  {
    "content": "Thank you.",
    "children": []
  }
]

Handling Nested Tags

The parser accurately captures nested structures, maintaining the hierarchy of tags and their respective contents.

const complexResponse = `
<report>
  Overview:
  <section>
    <title>Revenue Growth</title>
    Our revenue increased by 20%.
    <details>
      Major contributors include product A and product B.
    </details>
  </section>
  <section>
    <title>Profit Margins</title>
    Profit margins remained stable.
  </section>
</report>
`;

const parser = new FuzzyXMLParser(complexResponse);
const parsedNodes = parser.parse();

console.log(JSON.stringify(parsedNodes, null, 2));

Output:

[
  {
    "tagName": "report",
    "content": "Overview:",
    "children": [
      {
        "tagName": "section",
        "content": "Our revenue increased by 20%.",
        "children": [
          {
            "tagName": "title",
            "content": "Revenue Growth",
            "children": []
          },
          {
            "tagName": "details",
            "content": "Major contributors include product A and product B.",
            "children": []
          }
        ]
      },
      {
        "tagName": "section",
        "content": "Profit margins remained stable.",
        "children": [
          {
            "tagName": "title",
            "content": "Profit Margins",
            "children": []
          }
        ]
      }
    ]
  }
]

Error Handling

fuzzy-xml is designed to handle malformed tags without interrupting the parsing process. Text outside of tags or incorrect tag formats are treated as plain text.

const malformedResponse = `
Here is an overview:

<findings>
  The terms are unclear.
  <details>
    Missing clauses on liability.
  <!-- Missing closing tag for findings

Recommendations follow.

<recommendations>
  Clarify liability clauses.
  Add termination conditions.
</recommendations>
`;

const parser = new FuzzyXMLParser(malformedResponse);
const parsedNodes = parser.parse();

console.log(JSON.stringify(parsedNodes, null, 2));

Output:

[
  {
    "content": "Here is an overview:",
    "children": []
  },
  {
    "tagName": "findings",
    "content": "The terms are unclear.",
    "children": [
      {
        "tagName": "details",
        "content": "Missing clauses on liability.",
        "children": []
      }
    ]
  },
  {
    "content": "<!-- Missing closing tag for findings\n\nRecommendations follow.",
    "children": []
  },
  {
    "tagName": "recommendations",
    "content": "Clarify liability clauses.\nAdd termination conditions.",
    "children": []
  }
]

Contributing

Contributions are welcome! Whether it's reporting bugs, suggesting features, or submitting pull requests, your help is appreciated.

  1. Fork the Repository
  2. Create a Feature Branch
    git checkout -b feature/YourFeature
  3. Commit Your Changes
    git commit -m "Add some feature"
  4. Push to the Branch
    git push origin feature/YourFeature
  5. Open a Pull Request

Please ensure your code adheres to the existing style and includes relevant tests.

License

This project is licensed under the MIT License.