Skip to content

Instantly share code, notes, and snippets.

@jalakoo
Created May 21, 2025 22:06
Show Gist options
  • Save jalakoo/a99b389b7fa52869f7308f0ec10e8fd4 to your computer and use it in GitHub Desktop.
Save jalakoo/a99b389b7fa52869f7308f0ec10e8fd4 to your computer and use it in GitHub Desktop.
Sample LLM Prompts for creating interconnected .csv data

Agents

Generate a .csv listing 6 customer service agents with the following column headers: id (single integer starting with 1), name, email, bio (short description of professional history and technical background), hired_at (use an ISO 8601 compatible datetime string for UTC / GMT 0)

Customers

Generate a .csv listing 12 customers with the following column headers: id (single integer starting with 1), name, email, customer_since (use an ISO 8601 compatible datetime string for UTC / GMT 0)

Tickets

Generate a .csv listing 24 customer tickets detailing issues clients are having with a company's software product. Use the following column headers: id (single integer starting with 1), title, content (short description of problem), customer_id (random integer between 1 and 12 using normal distribution / bell curve), assiged_to (random integer between 1 and 6 with a normal / bell curve distribution), opened_at (use an ISO 8601 compatible datetime string for UTC / GMT 0), resolved_at (use an ISO 8601 compatible datetime string for UTC / GMT 0 that is 1 or more days later than the open_at datetime)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment