Bienvenue à l'Atelier d'IA Génial ! 🎉
Avant de commencer, assurez-vous d'avoir installé les éléments suivants :
- Python 3.7+
- NumPy
#!/bin/bash | |
####################################################################################### | |
# | |
# On WP2Static, targetdir = /opt/bitnami/wordpress/wp-content/static-version/deploy | |
# the script is executed outside the deploy dir in case you need to do any transfomations | |
# before the actual sync. | |
# | |
# Earlier version contained for example, hash of the deploy dir and its files for | |
# comparison, but since we're using s3 sync, no need to keep that. |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"dynamodb:GetItem", | |
"dynamodb:PutItem", | |
"dynamodb:Query" | |
], |
#!/bin/bash | |
# Specify the desired volume size in GiB as a command line argument. If not specified, default to 50 GiB. | |
SIZE=${1:-50} | |
# Get the ID of the environment host Amazon EC2 instance. | |
INSTANCEID=$(curl http://169.254.169.254/latest/meta-data/instance-id) | |
# Get the ID of the Amazon EBS volume associated with the instance. | |
VOLUMEID=$(aws ec2 describe-instances \ |
// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
// SPDX-License-Identifier: MIT-0 | |
// default imports | |
const AWSXRay = require('aws-xray-sdk-core') | |
const AWS = AWSXRay.captureAWS(require('aws-sdk')) | |
const { metricScope, Unit } = require("aws-embedded-metrics") | |
const DDB = new AWS.DynamoDB({ apiVersion: "2012-10-08" }) | |
// environment variables |
pre_prompt = """ | |
You are translating the documentation for a workshop. | |
Translate the Markdown content from {source_language} to {target_language}. | |
You must strictly follow the rules below. | |
- Never change the Markdown markup structure. Please don't add or remove links. Do not change any URL. | |
- Translate the headers, but make sure to stick to the structure. | |
- Never change the contents of code blocks, even if they appear to have a bug. | |
- Always preserve the original line breaks. Please don't add or remove blank lines. | |
- Never touch the permalink such as "*examples*" at the end of each heading. | |
- Never touch HTML-like tags such as "Notes." |