mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
setup storing steps to db and init user stories implementation
This commit is contained in:
@@ -1 +1,8 @@
|
||||
APP_TYPES = ['Web App', 'Script', 'Mobile App (unavailable)', 'Chrome Extension (unavailable)']
|
||||
APP_TYPES = ['Web App', 'Script', 'Mobile App (unavailable)', 'Chrome Extension (unavailable)']
|
||||
ROLES = {
|
||||
'product_owner': ['project_summary', 'user_stories', 'user_tasks'],
|
||||
'architect': ['architecture'],
|
||||
'tech_lead': ['development_planing'],
|
||||
'full_stack_developer': ['create_scripts', 'coding']
|
||||
}
|
||||
STEPS = ['project_summary', 'user_stories', 'user_tasks', 'development_planing', 'create_scripts', 'coding']
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
MIN_TOKENS_FOR_GPT_RESPONSE = 60
|
||||
MAX_GPT_MODEL_TOKENS = 4096
|
||||
MAX_GPT_MODEL_TOKENS = 4096
|
||||
MAX_QUESTIONS = 3
|
||||
END_RESPONSE = "EVERYTHING_CLEAR"
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
SYS_MESSAGE = {
|
||||
"tdd_engineer": {
|
||||
"role": "system",
|
||||
"content": "You are an experienced software engineer who is proficient in node.js and who practices TDD (Test "
|
||||
"Driven Development). Usually, you look at the code that already exists and a written test - then "
|
||||
"you think step by step and modify the function that's being tested to make the test pass."
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user