This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytz | |
from datetime import datetime, timedelta | |
import csv | |
timezones = [ | |
"Europe/Berlin", | |
"Australia/Sydney", | |
] | |
timezones = pytz.common_timezones |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pprint import pprint | |
import random | |
import string | |
from vertexai.generative_models import GenerationConfig, GenerativeModel | |
from google.api_core.exceptions import InvalidArgument | |
random.seed(1337) | |
prompt = "Respond according to the JSON schema." | |
num_properties = 40 |
OlderNewer