Advertisement
jarekmor

opis_produktów_z_csv

Dec 9th, 2023 (edited)
1,105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.97 KB | None | 0 0
  1. import csv
  2. import os
  3.  
  4. from dotenv import load_dotenv
  5. from openai import OpenAI
  6.  
  7. load_dotenv()
  8.  
  9. client = OpenAI()
  10.  
  11. def generate_description(model, producent, main_features, description):
  12.     prompt = f"Model: {model}\nProducent: {producent}\nMain Features: {main_features}\nDescription: {description}\n\nGenerate a detailed product description:"
  13.     response = client.chat.completions.create(
  14.         model="gpt-4o-mini",
  15.         messages=[
  16.         {"role": "system", "content": "You are a helpful assistant designed to generate product descriptions."},
  17.         {"role": "user", "content": f"Write a detailed product for max 150 characters description based on the following keyword:{prompt}."}
  18.     ],
  19.     max_tokens=150,
  20.     temperature=0.5,
  21.     )
  22.     return response.choices[0].message.content.strip()
  23.  
  24. def read_csv_and_generate_descriptions(csv_file_path):
  25.     # Read all rows from the CSV
  26.     with open(csv_file_path, newline='', encoding='utf-8') as csvfile:
  27.         reader = csv.DictReader(csvfile)
  28.         fieldnames = reader.fieldnames.copy()
  29.         rows = list(reader)
  30.    
  31.     # Add 'generation' to fieldnames if it doesn't exist
  32.     if 'generation' not in fieldnames:
  33.         fieldnames.append('generation')
  34.    
  35.     # Generate descriptions and add to rows
  36.     for row in rows:
  37.         generated_description = generate_description(row['model'], row['producent'], row['main features'], row['description'])
  38.         row['generation'] = generated_description
  39.         print(f"Generated Description for {row['model']}:\n{generated_description}\n")
  40.    
  41.     # Write back to the CSV file
  42.     with open(csv_file_path, 'w', newline='', encoding='utf-8') as csvfile:
  43.         writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
  44.         writer.writeheader()
  45.         writer.writerows(rows)
  46.    
  47.     print(f"All descriptions have been generated and saved to '{csv_file_path}'")
  48.  
  49. # Usage
  50. csv_file_path = './sample.csv'
  51. read_csv_and_generate_descriptions(csv_file_path)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement