-
Notifications
You must be signed in to change notification settings - Fork 19
added ollama support for running local LLM's, Two new environment var… #43
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| package ollama | ||
|
|
||
| import ( | ||
| "fmt" | ||
| "net/http" | ||
| "encoding/json" | ||
| "bytes" | ||
| "io" | ||
|
|
||
| "github.com/dfanso/commit-msg/pkg/types" | ||
|
|
||
| ) | ||
|
|
||
| type OllamaRequest struct { | ||
| Model string `json:"model"` | ||
| Prompt string `json:"prompt"` | ||
| } | ||
|
|
||
| type OllamaResponse struct { | ||
| Response string `json:"response"` | ||
| Done bool `json:"done"` | ||
| } | ||
|
|
||
| func GenerateCommitMessage(_ *types.Config, changes string, url string, model string) (string, error) { | ||
| // Use llama3:latest as the default model | ||
| if model == "" { | ||
| model = "llama3:latest" | ||
| } | ||
|
|
||
| // Preparing the prompt | ||
| prompt := fmt.Sprintf("%s\n\n%s", types.CommitPrompt, changes) | ||
|
|
||
| // Generating the request body - add stream: false for non-streaming response | ||
| reqBody := map[string]interface{}{ | ||
| "model": model, | ||
| "prompt": prompt, | ||
| "stream": false, | ||
| } | ||
|
|
||
| // Generating the body | ||
| body, err := json.Marshal(reqBody) | ||
| if err != nil { | ||
| return "", fmt.Errorf("failed to marshal request: %v", err) | ||
| } | ||
|
|
||
| resp, err := http.Post(url, "application/json", bytes.NewBuffer(body)) | ||
| if err != nil { | ||
| return "", fmt.Errorf("failed to send request to Ollama: %v", err) | ||
| } | ||
| defer resp.Body.Close() | ||
|
|
||
| // Read the full response body for better error handling | ||
| responseBody, err := io.ReadAll(resp.Body) | ||
| if err != nil { | ||
| return "", fmt.Errorf("failed to read response body: %v", err) | ||
| } | ||
|
|
||
| // Check HTTP status | ||
| if resp.StatusCode != http.StatusOK { | ||
| return "", fmt.Errorf("Ollama API returned status %d: %s", resp.StatusCode, string(responseBody)) | ||
| } | ||
|
|
||
| // Since we set stream: false, we get a single response object | ||
| var response OllamaResponse | ||
| if err := json.Unmarshal(responseBody, &response); err != nil { | ||
| return "", fmt.Errorf("failed to decode response: %v", err) | ||
| } | ||
|
|
||
| // Check if we got any response | ||
| if response.Response == "" { | ||
| return "", fmt.Errorf("received empty response from Ollama") | ||
| } | ||
|
|
||
| return response.Response, nil | ||
| } | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.