Chore: project rename; gf-lt => grailfinder's llm tui

This commit is contained in:
Grail Finder
2025-05-21 19:55:14 +03:00
parent 8b9a33d330
commit fe4f759173
21 changed files with 34 additions and 33 deletions

View File

@@ -2,7 +2,7 @@ package pngmeta
import (
"bytes"
"elefant/models"
"gf-lt/models"
"encoding/base64"
"encoding/binary"
"encoding/json"
@@ -30,7 +30,7 @@ func WriteToPng(metadata *models.CharCardSpec, sourcePath, outfile string) error
}
base64Data := base64.StdEncoding.EncodeToString(jsonData)
embedData := PngEmbed{
Key: "elefant", // Replace with appropriate key constant
Key: "gf-lt", // Replace with appropriate key constant
Value: base64Data,
}
var outputBuffer bytes.Buffer

View File

@@ -2,7 +2,7 @@ package pngmeta
import (
"bytes"
"elefant/models"
"gf-lt/models"
"encoding/base64"
"encoding/json"
"errors"

View File

@@ -2,7 +2,7 @@ package pngmeta
import (
"bytes"
"elefant/models"
"gf-lt/models"
"encoding/base64"
"encoding/binary"
"encoding/json"