Bienvenue à l'Atelier d'IA Génial ! 🎉
Avant de commencer, assurez-vous d'avoir installé les éléments suivants :
- Python 3.7+
- NumPy
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." |
// 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 |
#!/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 \ |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"dynamodb:GetItem", | |
"dynamodb:PutItem", | |
"dynamodb:Query" | |
], |
#!/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. |
!#bin/bash | |
sox -n -r 44100 -c 2 silence.wav trim 0.0 2 | |
lame -b 32 --resample 8 -a silence.wav silence.mp3 |
## API Gateway "Send Everything" Mapping Template - Ryan Green - [email protected] | |
## See http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html | |
#set($allParams = $input.params()) | |
{ | |
"body-json" : "$input.json('$')", | |
"params" : { | |
#foreach($type in $allParams.keySet()) | |
#set($params = $allParams.get($type)) | |
"$type" : { | |
#foreach($paramName in $params.keySet()) |
public SubscriptionClient createSubscriptionClient() { | |
//default sem timeouts | |
// PREFERRED_API_URL => http://subscription.bemobi.com.br/sc/ | |
// pode ser sobrescrita pelo pela propriedade de ambiente -Dcom.bemobi.subscription.client.host ou pelo | |
// método #setPreferredAddress(URL); | |
//SubscriptionJAXRSClient client = new SubscriptionJAXRSClient(); | |
int TIMEOUT_IN_MILIS = 35 * 1000; | |
int MAX_CONNECTION_IN_POOL = 100; | |
return new SubscriptionJAXRSClient(TIMEOUT_IN_MILIS, TIMEOUT_IN_MILIS, MAX_CONNECTION_IN_POOL); | |
} |
import com.lambdaworks.redis.RedisAsyncConnection; | |
import com.lambdaworks.redis.RedisClient; | |
import com.lambdaworks.redis.SetArgs; | |
import org.slf4j.Logger; | |
import org.springframework.beans.factory.annotation.Value; | |
import org.springframework.boot.CommandLineRunner; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import redis.clients.jedis.Jedis; | |
import redis.clients.jedis.JedisPool; |