We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b3961 commit ab5faecCopy full SHA for ab5faec
README.md
@@ -16,8 +16,24 @@ A tiny library to repair JSON string output from LLM. It fixes most of the commo
16
17
## Usage
18
19
+## Add dependency
20
+
21
+```xml
22
+ <dependency>
23
+ <groupId>com.github.coderphonui</groupId>
24
+ <artifactId>jsonautorepair</artifactId>
25
+ <version>1.0.0</version>
26
+ </dependency>
27
+```
28
29
+Your Java code
30
31
```java
- String originalJSON = """
32
33
+import com.cdpn.jsonautofix.JSONAutoFixer;
34
35
+JSONAutoFixer jsonAutoRepairer = new JSONAutoFixer();
36
+String originalJSON = """
37
```json
38
{
39
"name": "Alice",
0 commit comments