Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitamalinov committed Feb 23, 2024
1 parent c1ef81a commit faf703b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions services/github/labeled_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,13 @@ async def handle_issue_labeled(payload: GitHubLabeledPayload):
print('current dir: ')
os.system(f'pwd')
print("created folder")
os.system(f'git init')

print(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git {new_uuid}')
print(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git')
print('listing: ')
os.system(f'ls')
os.system('rm -rf lalager')
# os.system('rm -rf lalager')
os.system(f'git clone https://x-access-token:{token}@github.com/nikitamalinov/lalager.git')
print("LITING: ")
print("LINING: ")
os.system(f'ls')
except Exception as e:
print(e)
Expand Down Expand Up @@ -88,7 +87,7 @@ async def handle_issue_labeled(payload: GitHubLabeledPayload):
client = openai.OpenAI(api_key=OPEN_API_KEY, **kwargs)

main_model = Model.create('gpt-4-1106-preview', client)

return
# Create a new coder instance
try:
coder = Coder.create(
Expand Down

0 comments on commit faf703b

Please sign in to comment.