Fix environment variable loading, add OpenAI Organization support#23
Open
ngfgrant wants to merge 2 commits intotldraw:mainfrom
Open
Fix environment variable loading, add OpenAI Organization support#23ngfgrant wants to merge 2 commits intotldraw:mainfrom
ngfgrant wants to merge 2 commits intotldraw:mainfrom
Conversation
added 2 commits
February 8, 2024 17:03
previously the environment variables were not being loaded correctly
when using `process.env` directly. This is a next app and it seems we
need to reference them in `env{}` within next.config.js first.
OpenAI supports organizations which is useful if you are part of an org but also have a personal account via the same email address in the API. In order to use credit from the appropriate account you need to include the organization header in calls to OpenAI's API. I am not exposing this as a configurable option via the UI for now, though if we find that is required that is a reasonably trivial addition.
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.
59e8b4d Fix environment variable loading
previously the environment variables were not being loaded correctly
when using
process.envdirectly. This is a next app and it seems weneed to reference them in
env{}within next.config.js first.b392bc9 Add support for OpenAI organizations
OpenAI supports organizations which is useful if you are part of an org
but also have a personal account via the same email address in the API.
In order to use credit from the appropriate account you need to include
the organization header in calls to OpenAI's API.
I am not exposing this as a configurable option via the UI for now,
though if we find that is required that is a reasonably trivial
addition.