Skip to content

Commit

Permalink
Merge pull request #1 from lonestone/main
Browse files Browse the repository at this point in the history
new base with carryon context, rag optimization + settings
  • Loading branch information
mikelonestone authored Oct 30, 2024
2 parents c86c82b + 77d10f9 commit 5c61b6b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion base
Submodule base updated from d0c6e7 to 4cb6bd
3 changes: 3 additions & 0 deletions cooppilot/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ module "base" {
db_pwd = var.db_pwd
db_name = var.db_name

awsRuntimeAccessKeyId = var.awsRuntimeAccessKeyId
awsRuntimeSecretAccessKey = var.awsRuntimeSecretAccessKey

openai_api_key = var.openai_api_key

harvest_access_token = var.harvest_access_token
Expand Down
9 changes: 9 additions & 0 deletions cooppilot/infra/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ variable "db_pwd" {
sensitive = true
}

variable "awsRuntimeAccessKeyId" {
type = string
sensitive = true
}
variable "awsRuntimeSecretAccessKey" {
type = string
sensitive = true
}

variable "openai_api_key" {
type = string
sensitive = true
Expand Down

0 comments on commit 5c61b6b

Please sign in to comment.