bugfix eval run

This commit is contained in:
rafaelmmiller 2025-02-20 16:10:36 -03:00
parent d211240f58
commit 570dc28da2
2 changed files with 9 additions and 0 deletions

View File

@ -1,8 +1,14 @@
import requests
import argparse
import sys
import os
def main():
# TODO: remove this
print(f"Current working directory: {os.getcwd()}")
print(f"Script location: {os.path.abspath(__file__)}")
print(f"Directory contents: {os.listdir('.')}")
parser = argparse.ArgumentParser(description='Run evaluation benchmark')
parser.add_argument('--label', required=True, help='Label for the evaluation run')
parser.add_argument('--api-url', required=True, help='API URL')

View File

@ -19,6 +19,9 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: 'Install dependencies'
run: |
python -m pip install --upgrade pip