Switch to using the more powerful GPT-3.5 LLM via OpenAI - #9
Open
hardbyte wants to merge 1 commit into
Open
Conversation
Owner
|
GPT-4: This pull request addresses the issue mentioned in #5, where the recommendations provided by the project were not very good. The proposed changes switch from the Codex model to GPT-3.5-turbo and use OpenAI's official Python wrapper instead of directly calling the REST API. The changes made are reasonable, and it's likely that GPT-3.5-turbo will provide better recommendations. I've reviewed the code changes and they look good. I suggest approving this pull request. Please make sure to test the updated code to ensure it works as expected before merging the changes. |
giorgiop
approved these changes
Mar 22, 2023
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.
As mentioned in #5, the recommendations suggested by this project were just not very good. Also the codex model we are currently using is apparently being deprecated tomorrow - not that I believe it will actually stop working straight away. https://news.ycombinator.com/item?id=35242069
This PR replaces codex with
gpt-3.5-turboand uses their official Python wrapper instead of directly calling the rest API.