import requests # Use requests for HTTP calls import os import json import time import re import sys import math from dotenv import load_dotenv load_dotenv() # --- Configuration --- # !!! GET YOUR API KEY FROM openrouter.ai !!! OPENROUTER_API_KEY = os.environ.get("OPENROUTER_API_KEY") # Use environment variable # Or paste directly: OPENROUTER_API_KEY = "sk-or-v1-..." if not OPENROUTER_API_KEY: raise ValueError("Please set the OPENROUTER_API_KEY environment variable.") # Set your site URL and app name (optional, but recommended by OpenRouter) # Replace with your actual info or leave as is SITE_URL = "http://localhost" # Or your app's URL APP_NAME = "SyntheticDataGen" # Choose a model available on OpenRouter (Check openrouter.ai/models) # Use the OpenRouter format: provider/model-name MODEL_NAME = "meta-llama/llama-4-maverick:free" # Other examples: "openai/gpt-4o", "anthropic/claude-3-haiku", "google/gemini-pro" # Your list of detailed input descriptions (Paste the 20 descriptions here) input_descriptions = [ # === PASTE THE 20 DESCRIPTIONS FROM THE PREVIOUS ANSWER HERE === "Rice - Blast: The image shows multiple leaves of a rice plant during the tillering stage. Many leaves exhibit diamond-shaped lesions, approximately 1-2 cm long, with grayish-white centers and distinct dark brown borders. Some lesions are merging, causing larger blighted areas. No insects are visible.", "Cotton - Bollworm: Close-up view of a developing cotton boll. Several small (<1cm), pinkish-white larvae are seen boring into the boll surface near the bracts. Small entry holes with some dark, granular frass (excrement) are visible. The surrounding leaves appear relatively healthy.", "Maize - Nitrogen Deficiency: Image displays the lower leaves of a young maize plant. The leaves show distinct yellowing starting at the leaf tip and progressing down the midrib in a characteristic V-shape pattern. The leaf margins remain relatively green initially. Upper leaves appear greener.", "Tomato - Early Blight: Several lower leaves of a mature tomato plant are shown. They exhibit circular to irregular dark brown lesions, 0.5-1.5 cm in diameter. Many lesions display characteristic concentric rings, giving a 'target board' appearance. Significant yellowing (chlorosis) surrounds the lesions, and some affected leaves are starting to wither.", "Wheat - Stripe Rust: Picture shows the upper leaves of a wheat plant nearing the flag leaf stage. Numerous small, bright yellow-orange pustules are arranged in distinct, long stripes running parallel to the leaf veins. When touched, a yellowish powder (spores) rubs off.", "Chili - Leaf Curl Virus: The image focuses on the growing tip of a chili plant. The young leaves are severely deformed, showing upward curling, puckering, and twisting. The leaves appear thickened and brittle, and veins are sometimes noticeably thicker. Plant growth appears stunted overall. Tiny whitefly insects may be subtly present but are not the primary focus.", "Groundnut - Tikka Disease (Leaf Spot): Several leaves of a groundnut plant are displayed. They are covered with numerous circular, dark brown to black spots, about 2-8 mm wide. Each spot is surrounded by a distinct yellow halo. Some older spots on lower leaves might lack the clear halo.", "Soybean - Healthy: Image shows a section of a healthy, vigorously growing soybean plant canopy during the vegetative stage. The leaves are uniformly deep green, fully expanded, and show no signs of spotting, yellowing, mosaic patterns, insect feeding, or wilting. Stems appear sturdy.", "Mango - Anthracnose on Fruit: A near-ripe mango fruit is shown. It displays several sunken, irregular-shaped black spots on the peel. Some spots appear to be coalescing into larger dark lesions. In humid conditions, pinkish spore masses might be visible in the center of older spots (though not clearly visible here).", "Sugarcane - Early Shoot Borer Damage: Focus is on the base of young sugarcane tillers (shoots). The central whorl of leaves is dried up, creating a characteristic \"dead heart\" symptom, which can be easily pulled out. Small bore holes may be visible near the base of the affected shoot.", "Potato - Late Blight: Image shows potato leaves with large, irregular, water-soaked lesions, often starting at the leaf margins or tips. The lesions rapidly turn dark brown to black. A fuzzy white fungal growth (sporangiophores) might be visible on the underside of the leaves near the edge of the lesions, especially in moist conditions.", "Brinjal (Eggplant) - Aphid Infestation: Close-up shows the underside of several young brinjal leaves and stems. They are heavily infested with clusters of small, pear-shaped insects, mostly greenish or blackish in color. Some shiny, sticky honeydew secretions might be visible on the leaf surfaces below the infestation.", "Okra (Lady's Finger) - Yellow Vein Mosaic Virus: The image shows several leaves of an okra plant. The veins of the leaves are prominently yellow, and the yellow network extends into the surrounding green leaf tissue, creating a distinct mosaic pattern. The leaves might be slightly reduced in size.", "Cabbage - Diamondback Moth Larvae: Several outer leaves of a cabbage head are shown. Small (around 1 cm), greenish larvae with a slightly tapered body are visible, actively feeding on the leaf tissue. They have created irregular holes or \"window panes\" (where only one layer of the leaf epidermis is left). Some silken threads might be present.", "Pigeon Pea (Tur/Arhar) - Pod Borer Damage: Image shows several developing pigeon pea pods. Some pods have distinct circular bore holes on the surface. One pod is broken open slightly, revealing a visible greenish or brownish larva feeding inside on the developing seeds. Frass might be present near the holes.", "Mustard - White Rust: Focus is on mustard leaves and potentially flower stalks. White, blister-like pustules, somewhat raised and initially smooth, are scattered on the underside of the leaves. Corresponding yellow spots may be visible on the upper leaf surface. Affected flower parts can become swollen and distorted.", "Apple - Powdery Mildew: Young leaves and shoot tips of an apple sapling are shown. They are covered with a characteristic white to grayish powdery fungal growth. Affected leaves may appear distorted, curled, or stunted.", "Grapes - Downy Mildew: Image displays the upper surface of grape leaves showing distinct, angular, yellowish-green spots (\"oil spots\"). On the underside of the leaf, corresponding to these spots, a white, downy fungal growth is visible, especially under humid conditions.", "Papaya - Mealybug Infestation: Close-up on the stem and leaf petioles of a papaya plant, especially near the growing point. Clusters of white, cottony masses are visible, covering small, oval, soft-bodied insects (mealybugs). Ants may also be present, attracted to the honeydew secreted by the mealybugs.", "Banana - Sigatoka Leaf Spot: Several mature banana leaves are shown. They exhibit numerous small, elliptical spots parallel to the leaf veins. Initially yellowish-green, the spots enlarge, become dark brown or black, and often develop a grayish center surrounded by a dark border and a yellow halo. Severe spotting leads to leaf necrosis." # === END OF DESCRIPTION LIST === ] OUTPUT_FILENAME = "agri_synthetic_data_generated_openrouter.jsonl" # Changed filename # Consider slightly higher temperature for variation across runs, but check quality GENERATION_TEMPERATURE = 0.7 # Temperature control works similarly # Adjust sleep time based on OpenRouter rate limits (vary per model and user tier) SLEEP_TIME_PER_API_CALL = 2 # Start with 2, adjust if you hit rate limits # OpenRouter API Endpoint OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions" # --- Modified Prompt Template with More Explicit Instructions --- single_prompt_template = """ You are an AI assistant generating fine-tuning data for an agricultural diagnosis chatbot. Your task is to generate a response in a specific format based on the provided plant symptom description and the user's implied question style. Follow these instructions STRICTLY: 1. Analyze the User Question Style: Understand the level of detail requested by the user prompt ({user_question_style}). 2. Analyze the Input Description: Carefully read the provided plant symptom description. 3. Generate the Response: Create a helpful and accurate response that directly addresses the user's question style, based *only* on the information in the input description. 4. Format the Output EXACTLY as specified below and make sure to include ALL the tags, especially the final tag: user {user_question} {input_description} model [YOUR GENERATED RESPONSE HERE BASED ON THE DESCRIPTION AND QUESTION STYLE] IMPORTANT: Make sure your response includes all required tags, especially ending with --- Input Data --- User Question Style: {user_question_style} User Question: {user_question} Input Description: {input_description} --- Generate the Output Below --- """ # Define the different user question styles (Remains the same) user_prompts_for_style = { "detailed": "Analyze the provided description of plant symptoms and provide a detailed technical diagnosis and recommendations.", "short": "Briefly identify the problem shown in the description and give the main point.", "easy": "Explain what might be wrong based on this description, using simple words, and what I should do first." } # --- Load Existing Data (Remains the same) --- existing_texts = set() if os.path.exists(OUTPUT_FILENAME): print(f"Loading existing entries from {OUTPUT_FILENAME} to avoid duplicates...") try: with open(OUTPUT_FILENAME, 'r', encoding='utf-8') as infile: for line in infile: try: data = json.loads(line) if 'text' in data: existing_texts.add(data['text']) except (json.JSONDecodeError, KeyError) as e: print(f" Skipping invalid line: {line.strip()} - Error: {e}") print(f"Loaded {len(existing_texts)} unique existing entries.") except Exception as e: print(f"Error loading existing file: {e}. Starting fresh.") else: print(f"Output file {OUTPUT_FILENAME} not found. Starting fresh.") # --- Main Generation Logic (Revised for OpenRouter with debug info) --- total_entries_generated_this_run = 0 num_duplicates_skipped_this_run = 0 total_api_calls = len(input_descriptions) * len(user_prompts_for_style) current_api_call = 0 print(f"\nStarting data generation for {len(input_descriptions)} descriptions...") print(f"Will make {total_api_calls} individual API calls via OpenRouter.") print(f"Output will be appended to: {OUTPUT_FILENAME}") print(f"Using OpenRouter model: {MODEL_NAME}, Temperature: {GENERATION_TEMPERATURE}") print(f"Pausing {SLEEP_TIME_PER_API_CALL} seconds between API calls.") # Prepare headers for OpenRouter API calls headers = { "Authorization": f"Bearer {OPENROUTER_API_KEY}", "HTTP-Referer": SITE_URL, # Optional, but recommended "X-Title": APP_NAME, # Optional, but recommended "Content-Type": "application/json" } try: with open(OUTPUT_FILENAME, 'a', encoding='utf-8') as f: # Iterate through each description for i, description in enumerate(input_descriptions): print(f"\n--- Processing Description {i+1}/{len(input_descriptions)} ---") print(f"Input: {description[:100]}...") # Print snippet # Iterate through each prompt style for the current description for style_key, user_question in user_prompts_for_style.items(): current_api_call += 1 print(f" Generating '{style_key}' style response ({current_api_call}/{total_api_calls})...") # --- Format the SINGLE prompt (Remains the same) --- pasted_desc_safe = description.replace('{', '{{').replace('}', '}}') formatted_prompt = single_prompt_template.format( user_question_style=style_key, user_question=user_question, input_description=pasted_desc_safe ) # --- Structure messages for the API (Remains the same) --- messages = [ { "role": "user", "content": formatted_prompt } ] # --- Prepare payload for OpenRouter --- payload = { "model": MODEL_NAME, "messages": messages, "temperature": GENERATION_TEMPERATURE, "max_tokens": 2048, # Set a higher limit to avoid truncation # "top_p": 0.9, # Optional: Set top_p if needed # "stream": False # We want the full response, not streaming } # --- Call the OpenRouter API (with retries) --- api_call_successful = False retry_count = 0 max_retries = 3 response_text = None while not api_call_successful and retry_count <= max_retries: try: print(f" Sending request to OpenRouter (Attempt {retry_count + 1})...") start_time = time.time() # Make the POST request response = requests.post( OPENROUTER_API_URL, headers=headers, json=payload # Send data as JSON ) end_time = time.time() print(f" OpenRouter API call took {end_time - start_time:.2f} seconds.") # Check for HTTP errors (4xx or 5xx) response.raise_for_status() # Parse the JSON response response_data = response.json() # Extract response content if (response_data.get('choices') and isinstance(response_data['choices'], list) and len(response_data['choices']) > 0 and response_data['choices'][0].get('message') and response_data['choices'][0]['message'].get('content')): response_text = response_data['choices'][0]['message']['content'] print(f" DEBUG - Last 50 chars of response: {response_text[-50:] if response_text else 'None'}") # Basic check if the response looks like the start of our format if response_text and response_text.strip().startswith(""): api_call_successful = True else: print(" WARNING: Received response doesn't start with ''. Might be malformed.") print(f" Raw Response Snippet: {response_text[:200]}...") raise ValueError("Response format incorrect") else: # Handle unexpected response structure print(" WARNING: Received unexpected response structure from OpenRouter.") print(f" Raw response data: {response_data}") response_text = None raise ValueError("Invalid OpenRouter response structure") # Trigger retry except requests.exceptions.RequestException as e: retry_count += 1 print(f" ERROR during OpenRouter API call (Attempt {retry_count}): {e}") # Check for specific status codes if needed (e.g., 429 Too Many Requests) if hasattr(e, 'response') and e.response and e.response.status_code == 429: print(" Rate limit likely exceeded.") # Increase wait time significantly for rate limits wait_time = SLEEP_TIME_PER_API_CALL * (2 ** retry_count) * 5 else: wait_time = SLEEP_TIME_PER_API_CALL * (2 ** (retry_count - 1)) if retry_count > max_retries: print(f" Max retries reached for Description {i+1}, Style '{style_key}'. Skipping.") response_text = None break # Break the retry loop for this specific call print(f" Retrying in {wait_time:.2f} seconds...") time.sleep(wait_time) except Exception as e: # Catch other potential errors (like ValueError from format check) retry_count += 1 print(f" ERROR processing request/response (Attempt {retry_count}): {e}") wait_time = SLEEP_TIME_PER_API_CALL * (2 ** (retry_count - 1)) if retry_count > max_retries: print(f" Max retries reached for Description {i+1}, Style '{style_key}'. Skipping.") response_text = None break # Break the retry loop print(f" Retrying in {wait_time:.2f} seconds...") time.sleep(wait_time) # --- Process and Save Response (Modified with more flexible validation) --- if api_call_successful and response_text: cleaned_text = response_text.strip() print(f" DEBUG - Response starts with: {cleaned_text[:50]}...") print(f" DEBUG - Response ends with: ...{cleaned_text[-50:]}") # More flexible check to troubleshoot if cleaned_text.startswith(""): if "" not in cleaned_text: print(" WARNING: Response missing tag. Adding it for consistency.") cleaned_text = cleaned_text + "" if cleaned_text not in existing_texts: data_entry = {"text": cleaned_text} json.dump(data_entry, f, ensure_ascii=False) f.write('\n') existing_texts.add(cleaned_text) total_entries_generated_this_run += 1 print(f" Saved 1 new entry for '{style_key}'.") else: num_duplicates_skipped_this_run += 1 print(f" Skipped 1 duplicate entry for '{style_key}'.") else: print(f" WARNING: Invalid format detected in final generated entry for '{style_key}'.") print(f" Failed validation. Raw text: {cleaned_text[:150]}...") elif not api_call_successful: print(f" Skipping save for '{style_key}' due to API call failures after retries.") # --- Rate Limiting Pause (after each API call) --- if current_api_call < total_api_calls: # Don't sleep after the very last call time.sleep(SLEEP_TIME_PER_API_CALL) except KeyboardInterrupt: print("\n--- KeyboardInterrupt detected. Stopping script early. ---") except Exception as e: print(f"\nAn unexpected error occurred outside the main loop: {e}") import traceback traceback.print_exc() finally: print(f"\n--- Run Finished ---") print(f"Total API calls attempted: {current_api_call}") print(f"Entries generated in THIS run: {total_entries_generated_this_run}") print(f"Duplicates skipped in THIS run: {num_duplicates_skipped_this_run}") print(f"Total unique entries now in {OUTPUT_FILENAME}: {len(existing_texts)}")