-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add google API key example. * Update required Poetry elements. * Enable openai's gpt 4o mini * Updating reference to gpt4o * Removing falcon7b as standard because the api now returns an error. * Updating to use gpt4o (mini) --------- Co-authored-by: Erik Oosterop <[email protected]>
- Loading branch information
1 parent
79268a6
commit 7e12aa4
Showing
7 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
OPENAI_API_KEY = "YOUR-KEY" | ||
HUGGINGFACEHUB_API_TOKEN = "YOUR-KEY" | ||
COHERE_API_KEY = "YOUR-KEY" | ||
REPLICATE_API_TOKEN = "YOUR-KEY" | ||
REPLICATE_API_TOKEN = "YOUR-KEY" | ||
GOOGLE_API_KEY = "YOUR-KEY" |
This file contains 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 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 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 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# @package _global_ | ||
defaults: | ||
- override /llm: gpt3-5 | ||
- override /llm: gpt4o | ||
- override /embedding: openai | ||
- override /question: eps |
This file contains 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# @package _global_ | ||
defaults: | ||
- override /llm: gpt3-5 | ||
- override /llm: gpt4o | ||
- override /embedding: huggingface | ||
- override /question: eps |
This file contains 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