File size: 32,506 Bytes
ff53362 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 | import os
import json
import base64
import uuid
import time
import re
from io import BytesIO
import concurrent.futures
from tqdm import tqdm
import threading
import itertools
import traceback # For detailed error logging
import numpy as np
import soundfile as sf
from zhipuai import ZhipuAI
# Import specific error type if available and helpful
# Attempt to import specific error, handle if it doesn't exist
try:
from zhipuai.core._errors import APIStatusError
except ImportError:
# Define a dummy class if the specific error isn't available
# This allows the except block to still catch general exceptions
# that might represent API status issues if the SDK changes.
print("Warning: zhipuai.core._errors.APIStatusError not found. Using generic Exception for status errors.")
class APIStatusError(Exception):
def __init__(self, message, status_code=None, body=None):
super().__init__(message)
self.status_code = status_code
self.body = body
self.message = message # Add message attribute for consistency
from datasets import load_from_disk, Dataset
from dotenv import load_dotenv
# --- Configuration (User's Original Settings) ---
load_dotenv()
# 1. API Client Setup
GLM_MODEL_NAME = "glm-4-voice" # <<< User's original model name
# --- API Key Rotation Setup (User's Original Keys & Logic) ---
ZHIPUAI_API_KEYS = [
"14a67189b8bc4ee489e83b6247c36d0e.AIPUNrII50wREvsh",
"72120787822c4123a9654965ff90e4e6.JS1nuey9MncQscPa",
"d41b3b5bb49f4c8680b3836e7fc49bbf.u0jGxYc5sYPeRr5p",
"bc9bccd6ddd145fc844a014521c26868.JwsZXHzA3l32dDwz",
"0e5a05d709794737923ebd122e07d491.sL67ALh6BiLYaaGW", # New key
"db87c1fda8af4eb8b505f36e791d700d.w5M0Q3ZssT55tvlW", # New key
"1594ac60fbca4973809f4da425238e0c.ZMMfchqbok992Dmu", # New key
"469c0fa3b14e4913b1d14bc5d6f0c858.0KdQjFqdi66VPMnb",
"b9b538bb0e134438bacaf922b023d1fd.sogFUUp57UJ8YSd6",
"50bb382993a345cfa35833fc89caaa52.oR921jSW8iwzCV22",
"44512bbede5940f7964db7694bfc04df.yhDEQyPOXQCqh1Mn",
"99aba409b55c432696b9d5f1ff565d30.GmfRNngBOo8qDUbf"
] # <<< User's original keys
if not ZHIPUAI_API_KEYS:
print("FATAL: No ZHIPUAI_API_KEYS provided in the list.")
exit(1)
# Make sure keys are unique if duplicates were accidental
unique_keys = list(dict.fromkeys(ZHIPUAI_API_KEYS))
if len(unique_keys) != len(ZHIPUAI_API_KEYS):
print(f"Warning: Duplicate API keys found and removed. Using {len(unique_keys)} unique keys.")
ZHIPUAI_API_KEYS = unique_keys
key_cycler = itertools.cycle(ZHIPUAI_API_KEYS)
key_lock = threading.Lock()
disabled_keys = set() # Shared set to store disabled keys
class AllKeysDisabledError(Exception):
"""Custom exception raised when all API keys are disabled."""
pass
def get_next_active_key():
"""
Thread-safely gets the next API key from the cycle, skipping disabled keys.
Raises AllKeysDisabledError if all keys are disabled.
(User's Original Logic)
"""
with key_lock:
initial_key_count = len(ZHIPUAI_API_KEYS)
checked_count = 0
while checked_count < initial_key_count:
potential_key = next(key_cycler)
if potential_key not in disabled_keys:
return potential_key
checked_count += 1
# Prevent infinite loop if somehow cycle changes mid-operation (shouldn't happen)
if checked_count > initial_key_count * 2:
print("Warning: Potential issue in get_next_active_key cycle detection.")
break
# If we exit the loop, all keys have been checked and are disabled
if len(disabled_keys) == initial_key_count:
raise AllKeysDisabledError("All API keys have been disabled.")
else:
# This case should ideally not be reached if logic is sound
# but indicates a potential problem finding an active key
print(f"Warning: Could not find an active key after checking {checked_count}. Disabled: {len(disabled_keys)}/{initial_key_count}")
raise RuntimeError("Failed to find an active API key.")
# --- End API Key Rotation Setup ---
# 2. Dataset Paths (User's Original Paths)
INPUT_DATASET_DIR = "/root/autodl-tmp/audio-r1/r1-a/dataset/preference_sampling_tasks" # <<< User's original path
OUTPUT_DATASET_DIR = "/root/autodl-tmp/audio-r1/r1-a/dataset/preference_tasks_with_glm" # <<< User's original path
# 3. Output Audio Configuration (User's Original Settings)
OUTPUT_AUDIO_ROOT_DIR = "/root/autodl-tmp/audio-r1/r1-a/generated_audio/glm_voice" # <<< User's original path
OUTPUT_AUDIO_FORMAT = "wav" # <<< User's original setting
OUTPUT_AUDIO_SAMPLERATE = 44100 # <<< User's original setting
# 4. API Call Settings (User's Original Settings)
API_RETRY_DELAY = 5 # <<< User's original setting
API_MAX_RETRIES = 3 # <<< User's original setting
MAX_WORKERS = 10 # <<< User's original setting
# --- Helper Functions (User's Original Functions) ---
def encode_audio_base64(audio_path):
# ... (implementation unchanged from user's script) ...
if not audio_path or not os.path.exists(audio_path):
print(f"Warning: Input audio file not found or path is empty: {audio_path}")
return None
try:
with open(audio_path, "rb") as audio_file:
return base64.b64encode(audio_file.read()).decode("utf-8")
except Exception as e:
print(f"Error encoding audio file {audio_path}: {e}")
return None
def parse_ultra_history(history_str):
# ... (implementation unchanged from user's script) ...
messages = []
pattern = re.compile(r"\[(USER|ASSISTANT)\]\s*([\s\S]*?)(?=\s*\[(?:USER|ASSISTANT)\]|$)")
matches = pattern.findall(history_str)
if not matches:
return [] # Return empty list if no matches, as per user's original code
for role_tag, content in matches:
role = role_tag.lower()
cleaned_content = content.strip()
if cleaned_content:
messages.append({"role": role, "content": cleaned_content})
return messages
# --- Modified API Call Worker Function (Handles Key Disabling & History Flattening) ---
def call_glm_voice_api_worker(task_info):
"""
Worker function to call GLM Voice API, handling key disabling for error 1113,
and flattening history into the user prompt with clear markers.
(Incorporates Method 2 flattening into user's worker structure)
"""
row_idx = task_info["row_idx"]
slot_idx = task_info["slot_idx"]
current_api_key = task_info["api_key"]
history_messages = task_info["history_messages"] # Original parsed history
prompt_text = task_info["prompt_text"] # The user's current text request
question_audio_path = task_info["question_audio_path"]
output_audio_filepath = task_info["output_audio_filepath"]
retries = 0
local_glm_client = None
while retries < API_MAX_RETRIES:
# --- Initialize or Re-initialize client (User's Original Logic) ---
if local_glm_client is None or getattr(local_glm_client, 'api_key', None) != current_api_key:
try:
with key_lock:
if current_api_key in disabled_keys:
print(f"Info (Row {row_idx}, Slot {slot_idx}): Assigned key ...{current_api_key[-6:]} was disabled before use, getting new key.")
current_api_key = get_next_active_key()
task_info["api_key"] = current_api_key # Update task_info potentially for logging?
print(f" [Thread-{threading.get_ident()}] Initializing client for Row {row_idx}, Slot {slot_idx} (Key: ...{current_api_key[-6:]})")
local_glm_client = ZhipuAI(api_key=current_api_key)
except AllKeysDisabledError:
print(f"FATAL (Row {row_idx}, Slot {slot_idx}): All API keys are disabled. Cannot proceed with task.")
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": "[ERROR: All Keys Disabled]", "saved_audio_path": None}
except Exception as client_init_e:
print(f"Error (Row {row_idx}, Slot {slot_idx}): Failed to initialize ZhipuAI client with key ...{current_api_key[-6:]}: {client_init_e}")
retries += 1
time.sleep(API_RETRY_DELAY)
continue
# --- Attempt API Call ---
try:
# 1. Prepare Input Audio (User's Original Logic)
base64_audio_data = encode_audio_base64(question_audio_path)
if not base64_audio_data:
# This is a data error, not an API error, fail the task immediately (User's Original Logic)
print(f"Error (Row {row_idx}, Slot {slot_idx}): Skipping GLM API call - missing input audio.")
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": "[ERROR: Missing input audio]", "saved_audio_path": None}
input_audio_format = os.path.splitext(question_audio_path)[1].lstrip('.') or 'wav'
# 2. *** Flatten History and Construct Combined User Text Prompt (Method 2 Implementation) ***
text_parts = []
if history_messages:
print(f" (Row {row_idx}, Slot {slot_idx}) Flattening history ({len(history_messages)} turns) into prompt.")
text_parts.append("--- Start of Conversation History ---")
for msg in history_messages:
role_tag = "[User]" if msg['role'] == 'user' else "[Assistant]"
# Ensure content is string, handle potential non-string data defensively
content_str = str(msg.get('content', '')).strip()
if content_str: # Avoid adding empty messages
text_parts.append(f"{role_tag}: {content_str}")
text_parts.append("--- End of Conversation History ---")
text_parts.append("\n--- Current Task ---") # Clear separator
# Explicit instruction referencing history and audio
text_parts.append("Based on the conversation history above and the accompanying audio input, please respond to the following request:")
else:
# No history, just provide the current prompt directly
print(f" (Row {row_idx}, Slot {slot_idx}) No history found. Using prompt directly.")
text_parts.append("--- Current Task ---")
text_parts.append("Please respond to the following request based on the accompanying audio input:")
# Add the user's actual current request text
if prompt_text: # Only add if not empty
text_parts.append(prompt_text.strip())
combined_user_text = "\n".join(text_parts)
# --- End Flattening Logic ---
# 3. Construct User Message Content List (Text + Audio)
user_content_list = [
{"type": "text", "text": combined_user_text}, # Use the combined text
{"type": "input_audio", "input_audio": {"data": base64_audio_data, "format": input_audio_format}}
]
# 4. Construct Final Messages List (Only the single combined user message)
# This replaces the user's original 'messages = history_messages + [{"role": "user", "content": user_content_list}]'
messages = [{"role": "user", "content": user_content_list}]
# 5. Make API Call (User's Original Logic)
# Optional: print(f"Debug (Row {row_idx}, Slot {slot_idx}): Sending messages structure:\n{json.dumps(messages, indent=2, ensure_ascii=False)}")
response = local_glm_client.chat.completions.create(
model=GLM_MODEL_NAME,
messages=messages, # Send the single, combined user message
stream=False
# Add other parameters like temperature if the user had them originally (they didn't)
)
# 6. Process SUCCESSFUL Response (User's Original Logic -unchanged-)
if response and response.choices:
message = response.choices[0].message
collected_text = message.content
audio_info = getattr(message, 'audio', None) # Use getattr for safety as per user's original code
if audio_info and 'data' in audio_info:
audio_base64_string = audio_info['data']
try:
decoded_data = base64.b64decode(audio_base64_string)
if len(decoded_data) == 0: # Check after decode (User's Original Check)
print(f"Warning (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): GLM returned empty audio data.")
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": collected_text.strip(), "saved_audio_path": None}
os.makedirs(os.path.dirname(output_audio_filepath), exist_ok=True)
# Soundfile saving logic (User's Original Logic -unchanged-)
with BytesIO(decoded_data) as bio:
try:
audio_data, samplerate = sf.read(bio, dtype='int16')
except Exception:
bio.seek(0) # Rewind buffer before trying float
try:
audio_data_float, samplerate = sf.read(bio, dtype='float32')
# Convert float to int16
audio_data = (audio_data_float * 32767).astype(np.int16)
except Exception as sf_read_err_float:
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): Soundfile failed to read audio data: {sf_read_err_float}")
# Return text, audio failed
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": collected_text.strip(), "saved_audio_path": None}
# Use detected samplerate, fallback to configured rate if detection failed
write_samplerate = samplerate if samplerate > 0 else OUTPUT_AUDIO_SAMPLERATE
sf.write(output_audio_filepath, audio_data, write_samplerate)
# TASK SUCCEEDED!
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": collected_text.strip(), "saved_audio_path": output_audio_filepath}
except base64.binascii.Error as b64_e:
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): GLM b64 decode failed: {b64_e}")
# Return text, audio failed
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": collected_text.strip(), "saved_audio_path": None}
except Exception as e:
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): Saving GLM audio failed: {e}")
# Return text, audio failed
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": collected_text.strip(), "saved_audio_path": None}
else: # No audio in successful text response (User's Original Logic)
print(f"Warning (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): No audio data in GLM response.")
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": collected_text.strip(), "saved_audio_path": None}
else: # Invalid/empty successful response (User's Original Logic)
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): Invalid/empty GLM API response. Response: {response}")
# Treat as a retryable error for the task
retries += 1
time.sleep(API_RETRY_DELAY)
continue # Go to next iteration of while loop
# --- Handle API Errors (User's Original Logic -unchanged-) ---
except APIStatusError as e:
# --- Log the error details ---
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): APIStatusError Encountered")
print(f" Status Code: {getattr(e, 'status_code', 'N/A')}") # Use getattr for safety
error_details = getattr(e, 'body', getattr(e, 'message', str(e)))
print(f" Error Details: {error_details}")
# --- End Logging ---
# Check for the specific "account overdue" error (User's Original Logic)
is_overdue_error = False
status_code = getattr(e, 'status_code', None)
# Adjust check to handle both 429 and potential 400 errors with code 1113 in body
if status_code == 429 or (status_code == 400 and '1113' in str(error_details)):
try:
error_body = {}
# Try parsing if details look like JSON
if isinstance(error_details, (str, bytes)) and error_details.strip().startswith('{'):
error_body = json.loads(error_details)
elif isinstance(error_details, dict):
error_body = error_details # If body is already a dict
if isinstance(error_body, dict) and str(error_body.get("error", {}).get("code", "")) == "1113":
is_overdue_error = True
except (json.JSONDecodeError, AttributeError):
# Can't parse body or access attributes, assume not the specific error for safety
pass
except Exception as parse_err:
print(f"Warning: Error parsing API error body: {parse_err}")
if is_overdue_error:
key_to_disable = current_api_key
print(f"Error (Row {row_idx}, Slot {slot_idx}): Account overdue (1113) for Key ...{key_to_disable[-6:]}. Disabling key.")
with key_lock:
disabled_keys.add(key_to_disable)
print(f" Disabled keys count: {len(disabled_keys)}/{len(ZHIPUAI_API_KEYS)}")
# Don't increment retries here, try getting a new key immediately
try:
current_api_key = get_next_active_key() # Get a new key
print(f" (Row {row_idx}, Slot {slot_idx}) Switched to new key ...{current_api_key[-6:]} for next attempt.")
local_glm_client = None # Force re-initialization with new key
continue # Go immediately to the next iteration of the while loop with the new key
except AllKeysDisabledError:
print(f"FATAL (Row {row_idx}, Slot {slot_idx}): All API keys are disabled after key ...{key_to_disable[-6:]} failed. Cannot retry task.")
# Return failure for this task as no keys are left
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": "[ERROR: All Keys Disabled]", "saved_audio_path": None}
else:
# Other APIStatusError (rate limit, server error, etc.) - treat as retryable
retries += 1
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): GLM API Call Attempt {retries}/{API_MAX_RETRIES} failed: HTTP {status_code}, {error_details}")
if retries < API_MAX_RETRIES:
time.sleep(API_RETRY_DELAY)
# Continue loop to retry with the *same* key (unless it was just disabled above)
continue
else:
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): Max retries reached after API error.")
# Return failure for the task
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": "[API ERROR: Max retries after status error]", "saved_audio_path": None}
except Exception as e:
# Handle other unexpected errors during API call or processing (User's Original Logic)
retries += 1
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): Unexpected Error Attempt {retries}/{API_MAX_RETRIES}: {type(e).__name__} - {e}")
print(traceback.format_exc()) # Print traceback for unexpected errors
if retries < API_MAX_RETRIES:
time.sleep(API_RETRY_DELAY)
continue # Continue loop to retry
else:
print(f"Error (Row {row_idx}, Slot {slot_idx}, Key ...{current_api_key[-6:]}): Max retries reached after unexpected error.")
# Return failure for the task
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": "[API ERROR: Max retries after unexpected error]", "saved_audio_path": None}
# If loop finishes without returning, max retries were hit (User's Original Logic)
print(f"Error (Row {row_idx}, Slot {slot_idx}): Task failed after {API_MAX_RETRIES} attempts (may include key switches).")
return {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": "[API ERROR: Max retries reached]", "saved_audio_path": None}
# --- Main Processing Logic (User's Original Logic -unchanged-) ---
print("Loading dataset...")
try:
dataset = load_from_disk(INPUT_DATASET_DIR)
print(f"Dataset loaded successfully with {len(dataset)} rows from {INPUT_DATASET_DIR}.")
except Exception as e:
print(f"FATAL: Error loading dataset from {INPUT_DATASET_DIR}: {e}")
exit(1)
os.makedirs(OUTPUT_AUDIO_ROOT_DIR, exist_ok=True)
# --- Pre-calculation Step for GLM (User's Original Logic -unchanged-) ---
print("Pre-calculating GLM tasks and assigning initial API keys...")
tasks_to_process = []
original_data = list(dataset) # Convert to list for easier updates later
initial_keys_available = True
for idx, row in enumerate(tqdm(original_data, desc="Scanning dataset for GLM tasks")):
if not initial_keys_available:
# Stop scanning if we know no keys are left
print("Stopping task scanning as no active keys are available.")
break
for i in range(1, 4):
model_key = f"model_{i}"
response_text_key = f"response_text_{i}"
prompt_text_key = f"prompt_text_{i}"
model_assigned = row.get(model_key)
# Check if response exists and is not empty string (User's original check was just existence)
response_text_exists = row.get(response_text_key) is not None and str(row.get(response_text_key)).strip() != ""
if model_assigned == "glm_voice" and not response_text_exists: # Check using configured model name
question_audio_path = row.get('question_audio')
# Add check if audio path exists on disk
if not question_audio_path or not os.path.exists(question_audio_path):
print(f"Warning (Row {idx}, Slot {i}): Skipping GLM task - Missing or invalid 'question_audio' path: {question_audio_path}")
continue # Skip this slot if audio is missing
# --- Get initial active API key (User's Original Logic) ---
try:
assigned_key = get_next_active_key()
except AllKeysDisabledError:
print("FATAL: All API keys are disabled during initial task scanning. Cannot proceed.")
initial_keys_available = False
break # Stop processing this row
except Exception as key_err:
print(f"FATAL: Error getting initial API key: {key_err}. Stopping.")
initial_keys_available = False
break
# ---
metadata_str = row.get('metadata', "{}")
source_dataset = row.get('source_dataset')
metadata = {}
try:
# Handle case where metadata might already be a dict or is a JSON string
if metadata_str and isinstance(metadata_str, str): metadata = json.loads(metadata_str)
elif isinstance(metadata_str, dict): metadata = metadata_str
except json.JSONDecodeError:
print(f"Warning (Row {idx}): Could not parse metadata string: {metadata_str[:100]}...")
pass # Continue with empty metadata
# Parse history here - it will be flattened later in the worker
history_messages = []
if source_dataset == 'ultra':
history_str = metadata.get('history', '')
if history_str: history_messages = parse_ultra_history(history_str)
unique_id = str(uuid.uuid4()).replace("-", "")
output_audio_filename = f"glm_r{idx}_s{i}_{unique_id}.{OUTPUT_AUDIO_FORMAT}"
output_audio_filepath = os.path.join(OUTPUT_AUDIO_ROOT_DIR, output_audio_filename)
task_info = {
"row_idx": idx,
"slot_idx": i,
"api_key": assigned_key, # Initial key
"history_messages": history_messages, # Pass the original parsed history
"prompt_text": row.get(prompt_text_key, ""),
"question_audio_path": question_audio_path,
"output_audio_filepath": output_audio_filepath,
}
tasks_to_process.append(task_info)
# Process only the first unfilled GLM slot found per row (User's Implicit Logic)
break # Stop checking slots for this row
if not initial_keys_available: break # Exit outer loop too
total_tasks = len(tasks_to_process)
if total_tasks == 0:
if not initial_keys_available:
print("No tasks processed because all initial keys were disabled.")
else:
print("No GLM Voice tasks found needing processing.")
exit(0)
print(f"Found {total_tasks} GLM Voice tasks to process using initially {len(ZHIPUAI_API_KEYS)} API keys.")
if len(disabled_keys) > 0: # Should be 0 here, but for safety
print(f"Note: {len(disabled_keys)} keys already marked as disabled (should not happen at this stage).")
# --- Threaded Execution for GLM (User's Original Logic -unchanged-) ---
print(f"Starting GLM processing with up to {MAX_WORKERS} worker threads...")
start_total_time = time.time()
results = {}
tasks_completed = 0
tasks_failed = 0
executor_shutdown = False # Flag to stop submitting new tasks if all keys die
# Use context manager for ThreadPoolExecutor
with concurrent.futures.ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor:
# Create futures mapping back to task info for easier result merging
future_to_task = {executor.submit(call_glm_voice_api_worker, task): task for task in tasks_to_process}
for future in tqdm(concurrent.futures.as_completed(future_to_task), total=total_tasks, desc="Processing GLM tasks"):
task = future_to_task[future] # Get the original task info associated with this future
row_idx = task["row_idx"]
slot_idx = task["slot_idx"]
try:
result = future.result() # Get the result from the worker
results[(row_idx, slot_idx)] = result # Store result using (row, slot) tuple as key
# Check if the task failed because all keys got disabled during its execution
if result["response_text"] == "[ERROR: All Keys Disabled]" and not executor_shutdown:
print("\n--- CRITICAL: All Keys Disabled detected during execution. Stopping submission of new tasks. ---")
# Potentially cancel remaining futures if possible/desired
# Note: Standard ThreadPoolExecutor doesn't easily support cancelling submitted tasks
# We will just let running tasks finish but won't submit new ones if we had that logic.
# For now, just set flag and log.
executor_shutdown = True # Prevent theoretical resubmission logic
tasks_failed += 1 # Count this task as failed
# Check for other errors in the result text or missing audio path
elif result["saved_audio_path"] is None or "[ERROR" in result["response_text"]:
tasks_failed += 1
tasks_completed += 1
except Exception as exc: # Catch exceptions raised *by* the future (e.g., if worker itself crashes)
print(f"Error (Row {row_idx}, Slot {slot_idx}): GLM Task generated an unhandled exception: {exc}")
print(traceback.format_exc())
# Store an error result
results[(row_idx, slot_idx)] = {"row_idx": row_idx, "slot_idx": slot_idx, "response_text": f"[ERROR: Worker Crash - {type(exc).__name__}]", "saved_audio_path": None}
tasks_failed += 1
tasks_completed += 1
# No finally block needed here unless cleaning up future_to_task is desired
end_total_time = time.time()
print("\n--- GLM Processing Complete ---")
print(f"Total GLM tasks attempted: {tasks_completed} (Succeeded: {tasks_completed - tasks_failed}, Failed: {tasks_failed})")
print(f"Final disabled key count: {len(disabled_keys)}/{len(ZHIPUAI_API_KEYS)}")
print(f"Total GLM processing time: {(end_total_time - start_total_time)/60:.2f} minutes")
# --- Merge Results back into the dataset structure (User's Original Logic -unchanged-) ---
print("Merging GLM results...")
updated_data = original_data # Use the list created earlier
for (row_idx, slot_idx), result in tqdm(results.items(), desc="Merging GLM results"):
response_text_key = f"response_text_{slot_idx}"
response_audio_key = f"response_audio_path_{slot_idx}"
# Check index validity before updating
if 0 <= row_idx < len(updated_data):
# Ensure the item at the index is a dictionary (it should be if loaded from dataset)
if isinstance(updated_data[row_idx], dict):
updated_data[row_idx][response_text_key] = result["response_text"]
updated_data[row_idx][response_audio_key] = result["saved_audio_path"]
else:
print(f"Warning: Item at index {row_idx} is not a dictionary. Skipping merge for Slot {slot_idx}.")
else:
print(f"Warning: Invalid row index {row_idx} encountered during GLM result merge.")
# --- Save the final updated dataset (User's Original Logic -unchanged, including fallback) ---
if updated_data:
print(f"\nSaving updated dataset with GLM results to {OUTPUT_DATASET_DIR}...")
try:
# Use the features from the original loaded dataset if available
updated_dataset = Dataset.from_list(updated_data, features=dataset.features if dataset else None)
updated_dataset.save_to_disk(OUTPUT_DATASET_DIR)
print("Updated dataset saved successfully.")
except Exception as final_save_e:
print(f"Error saving final dataset using datasets lib: {final_save_e}")
print(f"Final disabled key count at save: {len(disabled_keys)}/{len(ZHIPUAI_API_KEYS)}")
print("Attempting to save as JSON lines as fallback...")
# Fallback to JSON Lines (User's original fallback logic)
output_jsonl_path = OUTPUT_DATASET_DIR.rstrip('/') + ".jsonl" # Ensure no trailing slash before adding extension
try:
with open(output_jsonl_path, 'w', encoding='utf-8') as f:
for item in updated_data:
# Attempt to make item JSON serializable
serializable_item = {}
for k, v in item.items():
if isinstance(v, (str, int, float, bool, list, dict)) or v is None:
serializable_item[k] = v
elif isinstance(v, np.ndarray):
serializable_item[k] = v.tolist() # Convert numpy arrays
else:
serializable_item[k] = str(v) # Convert other types to string as fallback
f.write(json.dumps(serializable_item, ensure_ascii=False) + '\n')
print(f"Fallback save successful to {output_jsonl_path}")
except Exception as json_save_e:
print(f"Error saving as JSON lines: {json_save_e}")
else:
print("No data was available to save (potentially all keys disabled early or no tasks processed).") |