chore!: change lib name for llmberjack#6
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request performs a comprehensive package rename from llmadapter to llmberjack throughout the codebase. The changes update all package declarations, import paths, type names, and documentation to reflect the new naming convention while maintaining all existing functionality.
- Package name changed from
llmadaptertollmberjackacross all Go files - Import paths updated from
github.com/checkmarble/llm-adaptertogithub.com/checkmarble/llmberjack - Main struct renamed from
LlmAdaptertollmberjack
Reviewed Changes
Copilot reviewed 35 out of 35 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| go.mod | Updates module name to new package identifier |
| adapter.go | Renames main struct and updates package declaration |
| sync.go | Updates function signatures to use new struct name |
| All other .go files | Updates package declarations and import paths |
| README.md | Updates documentation examples to use new package name |
| examples/ | Updates all example code to use new package and import paths |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
OrriMandarin
commented
Sep 3, 2025
| @@ -1,4 +1,4 @@ | |||
| # [WIP] LLM Adapter | |||
| # LLMberjack 🪵🪓🦊 | |||
Contributor
Author
There was a problem hiding this comment.
Confirm we can name and use those emojis
Pascal-Delange
approved these changes
Sep 3, 2025
| @@ -1,4 +1,4 @@ | |||
| # [WIP] LLM Adapter | |||
| # LLMberjack 🪵🪓🦊 | |||
| SearchDomainFilter: []string{"google.com", "wikipedia.org"}, | ||
| }). | ||
| WithText(llmadapter.RoleUser, "C'est une bonne situation ça Scribe ?") | ||
| WithText(llmberjack.RoleUser, "C'est une bonne situation ça Scribe ?") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request performs a comprehensive package rename from
llmadaptertollmberjackthroughout the codebase and documentation. The changes ensure that all references, identifiers, and import paths now use the new package name, maintaining consistency and avoiding confusion. No functional code changes are introduced; the update is strictly renaming for branding or organizational purposes.