-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73f336c
commit eea073f
Showing
3 changed files
with
32 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
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,18 +1,40 @@ | ||
# Sets the the default model to use for llm() when no provider parameter is set. | ||
|
||
model: | ||
provider: azureopenai | ||
provider: openai | ||
parameters: | ||
api_key: <your-api-key> | ||
api_type: azure | ||
api_base: <your-api-base> | ||
api_version: <your-api-version> | ||
organization: <your-organization> # or null | ||
model: <your-model> | ||
api_key: null | ||
# example with azureopenai model | ||
# model: | ||
# provider: azureopenai | ||
# parameters: | ||
# api_key: <your-api-key> | ||
# api_type: azure | ||
# api_base: <your-api-base> | ||
# api_version: <your-api-version> | ||
# organization: <your-organization> # or null | ||
# model: <your-model> | ||
|
||
# example with huggingface model | ||
# model: | ||
# provider: huggingface | ||
# parameters: | ||
# model: uukuguy/speechless-llama2-hermes-orca-platypus-13b | ||
# device_map: auto | ||
# trust_remote_code: true | ||
|
||
# # example palm via vertex ai | ||
# model: | ||
# provider: palm | ||
# parameters: | ||
# model: chat-bison@001 | ||
# project_id: <your-project-id> | ||
# project_location: <your-project-location> | ||
# palm_key_file: <path-to-your-palm-key-file> | ||
|
||
# # example palm via makersuite | ||
# model: | ||
# provider: palm | ||
# parameters: | ||
# model: chat-bison-001 | ||
# api_key: <your-makersuite-api-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
VERSION = "0.0.12a" | ||
VERSION = "0.0.13a" | ||
APP_NAME = "llmx" |