@tanagram/cli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/checker/llm_integration.go +2 -2
- package/checker/matcher.go +2 -2
- package/checker/violation_checker.go +2 -2
- package/go.mod +1 -1
- package/main.go +1 -1
- package/package.json +1 -1
|
@@ -5,8 +5,8 @@ import (
|
|
|
5
5
|
"fmt"
|
|
6
6
|
"strings"
|
|
7
7
|
|
|
8
|
-
"github.com/tanagram/
|
|
9
|
-
"github.com/tanagram/
|
|
8
|
+
"github.com/tanagram/cli/git"
|
|
9
|
+
"github.com/tanagram/cli/parser"
|
|
10
10
|
)
|
|
11
11
|
|
|
12
12
|
// CheckChangesWithLLM checks code changes against ALL policies using LLM
|
package/checker/matcher.go
CHANGED
|
@@ -6,8 +6,8 @@ import (
|
|
|
6
6
|
"fmt"
|
|
7
7
|
"strings"
|
|
8
8
|
|
|
9
|
-
"github.com/tanagram/
|
|
10
|
-
"github.com/tanagram/
|
|
9
|
+
"github.com/tanagram/cli/llm"
|
|
10
|
+
"github.com/tanagram/cli/parser"
|
|
11
11
|
)
|
|
12
12
|
|
|
13
13
|
// ViolationCheck represents a single policy violation check result from the LLM
|
package/go.mod
CHANGED
package/main.go
CHANGED