setup storing steps to db and init user stories implementation

This commit is contained in:
LeonOstrez
2023-07-27 07:51:49 +02:00
parent 5421f94b7b
commit 8db53c6f6d
18 changed files with 365 additions and 210 deletions

View File

@@ -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']

View File

@@ -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"

View File

@@ -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."
},
}