-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add example configuration files and update inference class ref #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,10 @@ | ||||||||||||||||||||||
| parameters: | ||||||||||||||||||||||
| user_full_name: John Doe # [First Name(s)] [Last Name] | ||||||||||||||||||||||
| links: | ||||||||||||||||||||||
| # blog Posts | ||||||||||||||||||||||
| - https://johndoe.blog/post1 | ||||||||||||||||||||||
| - https://johndoe.blog/post2 | ||||||||||||||||||||||
| # github Repositories | ||||||||||||||||||||||
|
Comment on lines
+4
to
+7
|
||||||||||||||||||||||
| # blog Posts | |
| - https://johndoe.blog/post1 | |
| - https://johndoe.blog/post2 | |
| # github Repositories | |
| # Blog Posts | |
| - https://johndoe.blog/post1 | |
| - https://johndoe.blog/post2 | |
| # GitHub Repositories |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent capitalization: "github Repositories" should be "GitHub Repositories" to properly capitalize the brand name and maintain consistency.
| # github Repositories | |
| # GitHub Repositories |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| parameters: | ||
| author_full_names: | ||
| - John Doe | ||
| - Jane Smith |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| from .inference import LLMInferenceTransformersLocal | ||
| from .inference import LLMInferenceTransformers | ||
| from .run import InferenceExecutor | ||
|
|
||
| __all__ = ["InferenceExecutor", "LLMInferenceTransformersLocal"] | ||
| __all__ = ["InferenceExecutor", "LLMInferenceTransformers"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after the comment delimiter. Should be
llama3.2:3b # replace with your modelfor consistency with other comment formatting.