NOT SURE WHAT DOES THE ORCA TEST DO BUT JUST LEAVE IT HERE

This commit is contained in:
2025-04-24 14:46:35 -03:00
parent 9cc646b0df
commit 5c6ab6016f
5 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ async def execute(context: Context, prepare_data: dict):
# Mock response for audit # Mock response for audit
response = requests.post( response = requests.post(
"http://localhost:5000/api/builder/summarizer/audit", "http://localhost:5000/api/summarizer/audit",
json={ json={
"taskId": context.config.task_id, "taskId": context.config.task_id,
"roundNumber": round_number, "roundNumber": round_number,

View File

@ -19,7 +19,7 @@ async def execute(context: Context, prepare_data: dict):
# Mock response for fetching todo # Mock response for fetching todo
response = requests.post( response = requests.post(
"http://localhost:5000/api/builder/summarizer/fetch-summarizer-todo", "http://localhost:5000/api/summarizer/fetch-summarizer-todo",
json={ json={
"stakingKey": staking_key, "stakingKey": staking_key,
"roundNumber": round_number, "roundNumber": round_number,

View File

@ -26,7 +26,7 @@ async def execute(context: Context, prepare_data: dict):
# Mock response for repo summary generation # Mock response for repo summary generation
response = requests.post( response = requests.post(
"http://localhost:5000/api/builder/summarizer/generate-summary", "http://localhost:5000/api/summarizer/generate-summary",
json={ json={
"taskId": context.config.task_id, "taskId": context.config.task_id,
"round_number": str(round_number), "round_number": str(round_number),

View File

@ -26,7 +26,7 @@ async def execute(context: Context, prepare_data: dict):
# Mock response for submission # Mock response for submission
response = requests.post( response = requests.post(
"http://localhost:5000/api/builder/summarizer/submit", "http://localhost:5000/api/summarizer/submit",
json={ json={
"taskId": context.config.task_id, "taskId": context.config.task_id,
"roundNumber": round_number, "roundNumber": round_number,

View File

@ -17,7 +17,7 @@ async def execute(context: Context, prepare_data: dict):
# Mock response for Anthropic API validation # Mock response for Anthropic API validation
response = requests.post( response = requests.post(
"http://localhost:5000/api/builder/summarizer/validate-api-key", "http://localhost:5000/api/summarizer/validate-api-key",
json={"api_key": api_key}, json={"api_key": api_key},
) )