feat: allow user to change openai base url and model for LocalAI support#35
Merged
piqoni merged 2 commits intopiqoni:mainfrom Sep 1, 2023
Merged
Conversation
Owner
|
Very cool, this looks quite useful. I cannot truly test this (I do have llama2 on one machine but dont have LocalAI) but LGTM :) Thanks for the addition! |
Contributor
Author
|
By the way, this works with litellm openai proxy and ollama + mistralai as well |
|
Hey @barakplasma any tweaks required for litellm proxy besides the int(time.time) patch? |
Contributor
Author
I don't think any other changes are needed. In my local patch I wrapped all the other occurrences of time time with int, but doing it at the top of main py should be enough |
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.
by changing the openai base url, we can use LocalAI to summarize articles instead of ChatGPT.
this also lets the user change the model (gpt-4 or gpt-3.5-turbo or openllama)
also bumps the dependencies for:
github.com/sashabaranov/go-openai v1.14.2
github.com/spf13/viper v1.16.0
my go linter removed a bunch of trailing spaces by accident
I tested with and without the config for openai_base_url and openai_model to make sure it works for existing configs.