generated from konveyor-ecosystem/template-repo
-
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.
* Fixes #81 Signed-off-by: JonahSussman <sussmanjonah@gmail.com> * Implements #85 Signed-off-by: JonahSussman <sussmanjonah@gmail.com> * Add logging support and fix trunk errors Signed-off-by: JonahSussman <sussmanjonah@gmail.com> * Fixes #99 Signed-off-by: JonahSussman <sussmanjonah@gmail.com> * Added documentation Signed-off-by: JonahSussman <sussmanjonah@gmail.com> --------- Signed-off-by: JonahSussman <sussmanjonah@gmail.com>
- Loading branch information
1 parent
faf38f6
commit d709950
Showing
17 changed files
with
244 additions
and
155 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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[postgresql] | ||
host = "127.0.0.1" | ||
database = "kai" | ||
user = "kai" | ||
password = "dog8code" | ||
|
||
[models] | ||
# How to run with: (look at model_provider.py for more info) | ||
# IBM served granite | ||
# provider = "IBMGranite" | ||
# args = { model_id = "ibm/granite-13b-chat-v2" } | ||
# IBM served mistral | ||
# provider = "IBMOpenSource" | ||
# args = { model_id = "ibm-mistralai/mixtral-8x7b-instruct-v01-q" } | ||
# IBM served codellama | ||
# provider = "IBMOpenSource" | ||
# args = { model_id = "meta-llama/llama-2-13b-chat" } | ||
# OpenAI GPT 3.5 | ||
# provider = "OpenAI" | ||
# args = { model_id = "gpt-4" } | ||
# OpenAI GPT 4 | ||
# provider = "OpenAI" | ||
# args = { model_id = "gpt-3.5-turbo" } | ||
provider = "IBMGranite" | ||
args = { model_id = "ibm/granite-13b-chat-v2" } | ||
|
||
# Here for later, we want to be able to configure which embeddings are used when | ||
# we start to integrate them into the project | ||
[embeddings] | ||
todo = true |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"postgresql": { | ||
"type": "object", | ||
"properties": { | ||
"host": { | ||
"type": "string" | ||
}, | ||
"database": { | ||
"type": "string" | ||
}, | ||
"user": { | ||
"type": "string" | ||
}, | ||
"password": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["host", "database", "user", "password"] | ||
}, | ||
"models": { | ||
"type": "object", | ||
"properties": { | ||
"provider": { | ||
"type": "string" | ||
}, | ||
"args": { | ||
"type": "object" | ||
} | ||
}, | ||
"required": ["provider", "args"] | ||
} | ||
}, | ||
"required": ["postgresql", "models"] | ||
} |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.