mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-09 13:17:55 -05:00
Renamed the repo
This commit is contained in:
7
.gitignore
vendored
7
.gitignore
vendored
@@ -161,10 +161,7 @@ cython_debug/
|
||||
|
||||
|
||||
# Logger
|
||||
/euclid/logger/debug.log
|
||||
/pilot/logger/debug.log
|
||||
|
||||
# workspace
|
||||
workspace
|
||||
|
||||
#dev
|
||||
/euclid/brija.py
|
||||
workspace
|
||||
@@ -1,4 +1,4 @@
|
||||
DB_NAME = 'euclid'
|
||||
DB_NAME = 'pilot'
|
||||
DB_HOST = 'localhost'
|
||||
DB_PORT = '5432'
|
||||
DB_USER = 'admin'
|
||||
@@ -31,7 +31,6 @@ class Project:
|
||||
'last_development_step': None,
|
||||
}
|
||||
# TODO make flexible
|
||||
# self.root_path = get_parent_folder('euclid')
|
||||
self.root_path = ''
|
||||
self.skip_until_dev_step = None
|
||||
self.skip_steps = None
|
||||
@@ -223,7 +223,7 @@ class Developer(Agent):
|
||||
elif test_type == 'manual_test':
|
||||
# TODO make the message better
|
||||
user_feedback = self.project.ask_for_human_intervention(
|
||||
'Message from Euclid: I need your help. Can you please test if this was successful?',
|
||||
'Message from Pilot: I need your help. Can you please test if this was successful?',
|
||||
manual_test_description
|
||||
)
|
||||
if user_feedback is not None:
|
||||
19
pilot/requirements.txt
Normal file
19
pilot/requirements.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
blessed==1.20.0
|
||||
certifi==2023.5.7
|
||||
charset-normalizer==3.2.0
|
||||
distro==1.8.0
|
||||
idna==3.4
|
||||
inquirer==3.1.3
|
||||
Jinja2==3.1.2
|
||||
MarkupSafe==2.1.3
|
||||
psycopg2==2.9.6
|
||||
python-dotenv==1.0.0
|
||||
python-editor==1.0.4
|
||||
readchar==4.0.5
|
||||
regex==2023.6.3
|
||||
requests==2.31.0
|
||||
six==1.16.0
|
||||
termcolor==2.3.0
|
||||
tiktoken==0.4.0
|
||||
urllib3==2.0.4
|
||||
wcwidth==0.2.6
|
||||
@@ -12,7 +12,7 @@ def get_parent_folder(folder_name):
|
||||
|
||||
|
||||
def setup_workspace(project_name):
|
||||
root = get_parent_folder('euclid')
|
||||
root = get_parent_folder('pilot')
|
||||
create_directory(root, 'workspace')
|
||||
project_path = create_directory(os.path.join(root, 'workspace'), project_name)
|
||||
create_directory(project_path, 'tests')
|
||||
@@ -19,3 +19,4 @@ termcolor==2.3.0
|
||||
tiktoken==0.4.0
|
||||
urllib3==2.0.4
|
||||
wcwidth==0.2.6
|
||||
yaspin==2.4.0
|
||||
|
||||
Reference in New Issue
Block a user