-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding polygpt-alpha and sharing templates
- Loading branch information
mike dupont
committed
Oct 16, 2023
1 parent
daa901b
commit 7df95f5
Showing
5 changed files
with
156 additions
and
40 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,16 @@ | ||
standard () { | ||
local servicename="$1" | ||
local dirname="$2" | ||
cat template.yml | sed -e"s;SERVICENAME;${servicename};g" | sed -e"s;DIRNAME;${dirname};g" | ||
} | ||
|
||
standard jarvis vendor/Jarvis/autogpts/autogpt/ | ||
standard the_agency_1 vendor/TheAgency/autogpts/autogpt/Dockerfile | ||
standard the_agency_2 vendor/TheAgency/autogpts/ZEROAGPT_02/Dockerfile | ||
standard the_agency_3 vendor/TheAgency/autogpts/ZEROAGPT_01/Dockerfile | ||
standard the_agency_4 vendor/TheAgency/autogpts/ZEROAGPT_03/Dockerfile | ||
standard mason_boom vendor/MasonBoomPersonalAssistant/autogpts/autogpt/Dockerfile | ||
standard mason_boom_pa vendor/MasonBoomPersonalAssistant/autogpts/PersonalAssistant/Dockerfile | ||
standard mason_boom_testgpt vendor/MasonBoomPersonalAssistant/autogpts/testgpt/Dockerfile | ||
standard swarms_of_sparta vendor/Swarms-Of-Sparta/autogpts/autogpt/Dockerfile | ||
standard mljar vendor/mljar-agent/autogpts/autogpt/Dockerfile |
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,12 @@ | ||
SERVICENAME: | ||
entrypoint: bash -c "poetry run python -m autogpt -y --skip-news --ai-settings /tmp/ai_settings.yaml " | ||
environment: | ||
- GITHUB_PAT="${GITHUB_PAT}" | ||
- GITHUB_REPO="jmikedupont2/ai-ticket" | ||
- OPENAI_API_KEY=your-openai-api-key | ||
- OPENAI_API_BASE=http://mockopenai:5000/v1 | ||
build: | ||
context: vendor/DIRNAME/autogpts/autogpt/ | ||
volumes: | ||
- ./vendor/DIRNAME/autogpts/autogpt:/app/ #mount the source in for editing witho | ||
- ./vendor/Auto-GPT/autogpts/autogpt/ai_settings.yaml:/tmp/ai_settings.yaml |
Submodule PolyGPT-alpha
added at
a1c652