Assistente AI *GRATIS* | *NO-CODE* sul tuo SITO WORDPRESS

MentiEmergenti
11 May 202414:00

Summary

TLDRThe video script outlines a step-by-step guide on how to create and integrate a chatbot into a WordPress site using the GPT 3.5 Turbo model via the OpenAI API. The speaker shares their initial enthusiasm for chatbots and the challenges they faced due to a lack of programming skills. With the help of Cloud 3 Opus and the 'writen' AI platform, they successfully implemented a chat feature. The tutorial covers creating a plugin folder, modifying PHP, CSS, and JS files, and customizing the chatbot's behavior through system prompts. The speaker emphasizes the importance of personalizing the chatbot for specific topics and setting parameters like the maximum token length and temperature for creativity. The video concludes with a demonstration of the chatbot's functionality, showcasing its ability to remember previous interactions and respond with humor. The speaker also promotes their semantic programming course for chat GPT and a discussion on AI-generated music with the software 'judio'.

Takeaways

  • 🤖 The speaker has integrated a chatbot named Viki into their WordPress site using the GPT 3.5 Turbo model.
  • 📄 The process involves creating a new plugin folder within the WordPress 'plugins' directory and adding specific files.
  • 🔑 A custom API key from OpenAI is required and should be inserted into the provided PHP file.
  • ✍️ The chatbot's behavior and responses can be customized using a 'System prompt' where the user can define the bot's personality and functions.
  • 💬 The chatbot has a memory that retains information within the session, as demonstrated by it remembering the speaker's name and age.
  • 🚫 The script emphasizes the importance of setting boundaries on the chatbot's topics to ensure it remains relevant to the website's focus.
  • 💡 The speaker provides guidance on customizing the chatbot's responses, including the use of a sarcastic tone and humor.
  • 📏 The 'Max tokens' parameter limits the length of the chatbot's responses, which is set to 150 tokens in the example.
  • 🎚️ The 'temperature' parameter controls the creativity level of the chatbot's responses, with a default suggestion of 0.7.
  • 📁 The provided files include a CSS, a JavaScript, and a PHP file, which need to be copied into the newly created plugin folder after modification.
  • 🔄 The final step is to activate the newly created plugin on the WordPress site to make the chatbot operational.

Q & A

  • What is the main topic of the video script?

    -The main topic of the video script is about creating and implementing a chatbot on a WordPress site using Open AI's GPT 3.5 Turbo model.

  • What is the chatbot's purpose according to the script?

    -The chatbot's purpose is to assist users in a humorous and sarcastic manner, making jokes to make them laugh.

  • What platform is mentioned for creating the AI chatbot?

    -The platform mentioned for creating the AI chatbot is called 'writen', which is an artificial intelligence platform.

  • What are the three files needed to create the chatbot plugin?

    -The three files needed to create the chatbot plugin are a CSS file, a JavaScript (.js) file, and a PHP file.

  • How does one personalize the chatbot according to the script?

    -One can personalize the chatbot by modifying the 'System prompt' in the PHP file, where you can define the chatbot's behavior, tone, and the topics it should or should not discuss.

  • What is the importance of the 'Max tokens' setting in the chatbot?

    -The 'Max tokens' setting determines the maximum number of tokens, or characters, the chatbot can use in its response. It helps to control the length of the chatbot's replies.

  • What does the 'Temperature' parameter represent in the chatbot's settings?

    -The 'Temperature' parameter represents the creativity of the chatbot's responses, with a scale from 0 to 1, where 0.7 is suggested as a default if unsure.

  • How does the video script guide users to implement the chatbot on their WordPress site?

    -The script guides users through creating a plugin folder, modifying the PHP file with their API key and system prompt, and then activating the plugin on their WordPress site.

  • What is the role of the 'API key' in the chatbot setup process?

    -The API key is crucial for the chatbot setup as it allows the chatbot to communicate with the Open AI's servers and access the GPT 3.5 Turbo model's capabilities.

  • How does the chatbot demonstrate memory within a session?

    -The chatbot demonstrates memory by recalling information provided earlier in the session, such as the user's name and age, and using that information in subsequent interactions.

  • What additional resource is mentioned in the script for learning more about AI and chatbots?

    -The script mentions a course on semantic programming for chat GPT available on 'menti emergenti com' for those interested in learning more about AI and chatbots.

Outlines

00:00

🤖 Introduction to the AI Chatbot

The speaker introduces an AI chatbot that they have integrated into their WordPress site. They express their enthusiasm for the chatbot, mentioning their initial struggle to implement it due to a lack of programming skills. They explain that the chatbot is connected to the Open AI API and utilizes the GPT 3.5 Turbo model. The speaker also discusses their recent success in implementing the chatbot with the help of Cloud 3 Opus and their AI platform, Writen, which now includes a chat feature.

05:02

📝 Creating a Custom Chatbot Plugin

The speaker provides a step-by-step guide on how to create a custom chatbot plugin for a WordPress site. They explain the process of creating a new folder in the WordPress plugins directory and adding three files: a CSS file, a JavaScript file, and a PHP file. They also discuss the necessity of inserting an API key into the PHP file and customizing the system prompt to define the chatbot's behavior and tone. The speaker emphasizes the importance of setting parameters such as the maximum number of tokens for the chatbot's responses and the 'temperature' to control the creativity level of the responses.

10:03

🚀 Activating and Testing the Chatbot

The speaker demonstrates how to activate the newly created chatbot plugin on a WordPress site. After uploading and activating the plugin, the chatbot becomes operational. The speaker tests the chatbot's functionality by engaging in a conversation, showcasing its ability to remember previous interactions and respond with humor. They also highlight the chatbot's session memory and its customization options. The speaker concludes by providing a link to download the necessary files and reiterates the simplicity of the process.

Mindmap

Keywords

💡Chatbot

A chatbot is an AI-powered virtual assistant designed to simulate human conversation through text or voice interactions. In the video, the chatbot named Viki is created to assist users in a humorous and sarcastic manner, showcasing its ability to remember past interactions and respond accordingly.

💡API

API stands for Application Programming Interface, which is a set of rules and protocols that allows different software applications to communicate with each other. In the context of the video, the API key is used to connect the chatbot to the GPT 3.5 Turbo model, enabling it to generate responses.

💡WordPress

WordPress is a popular content management system (CMS) used for building and managing websites. The video demonstrates how to integrate a chatbot into a WordPress site by creating a plugin, which is a software component that extends the functionality of the CMS.

💡Plugins

Plugins are modules or add-ons that can be added to a software application to enhance its capabilities. In the video, the speaker guides the audience through creating a custom plugin for WordPress to implement the chatbot functionality on their website.

💡PHP

PHP is a server-side scripting language used for web development. It is one of the core technologies of the internet, along with HTML and JavaScript. In the video, PHP is used to write the code for the chatbot plugin, which includes functions to interact with the AI model.

💡CSS

CSS stands for Cascading Style Sheets, a language used for describing the presentation of a document written in HTML. In the context of the video, CSS would be used to style the chatbot's interface, ensuring it matches the visual design of the website.

💡JavaScript

JavaScript is a programming language that enables interactive web pages by allowing client-side scripts to manipulate the behavior of webpages. The video mentions a JavaScript file, which would likely be used to handle the dynamic aspects of the chatbot, such as responding to user inputs in real-time.

💡System Prompt

A system prompt is a message or a set of instructions given to a computer program to guide its behavior. In the video, the system prompt is used to define the chatbot's persona and behavior, such as being a humorous AI assistant named Viki.

💡Tokens

In the context of AI and natural language processing, tokens refer to the individual units of language, such as words or phrases, that the model uses to understand and generate text. The video discusses setting a maximum number of tokens for the chatbot's responses to control the length and complexity of the generated text.

💡Personalization

Personalization refers to the customization of a product or service to meet individual preferences or needs. The video emphasizes the importance of personalizing the chatbot to fit the specific theme or purpose of the website it's being integrated into, ensuring it provides relevant and targeted assistance to users.

💡Semantic Programming

Semantic programming is a field that involves creating and training AI models to understand and generate human-like language. The video's speaker mentions a course on semantic programming for chatbots, which would teach viewers how to develop and customize AI chatbots for various applications.

Highlights

Introduction of a chatbot named Viki, designed to engage users in a humorous and sarcastic manner.

Chatbot Viki is integrated with the Open AI's GPT 3.5 Turbo model through APIs.

The chatbot operates on a WordPress site and is connected to the writen AI platform.

A new feature in the writen AI platform allows chatting and text generation with Cloud 3 and other antropic models.

The speaker shares a personal anecdote about struggling to implement chat GPT on his sites due to lack of programming skills.

A tutorial on creating a custom plugin for WordPress to host the chatbot.

Instructions on how to create a folder named 'My GPT chatbot' in the WP content directory.

Sharing of three essential files (CSS, JS, PHP) required for the chatbot functionality.

Explanation of how to insert the API key into the PHP file for the chatbot to function.

Customization of the chatbot's behavior through the system prompt in the PHP file.

Setting the maximum number of tokens (150) the chatbot can respond with in its output.

Guidance on personalizing the chatbot to fit the specific theme or topic of the user's site.

Recommendation to leave the temperature parameter at 0.7 for an average level of creativity in the chatbot's responses.

The chatbot remembers user information from previous interactions within the session.

Demonstration of the chatbot's ability to make jokes and engage in light-hearted banter.

The speaker's experience with Cloud 3 Opus in getting the chatbot to work effectively.

Provision of a downloadable zip file containing the necessary files to set up the chatbot.

A prompt engineer's perspective on the importance of setting up the chatbot correctly to avoid misuse.

Invitation to visit the speaker's course on semantic programming for chat GPT on menti-emergenti.com.

Discussion on the impact of AI-generated music software 'Judo' on the music industry.

Transcripts

play00:00

Voilà compare il nostro chatbot io gli

play00:03

dico Ciao Lui mi risponde Ciao Sei

play00:06

tornato per un altro intenso round di

play00:08

Sal un intenso round di saluti Spero che

play00:11

tu sia pronto per un'epica sfida di chi

play00:13

riesce a dire ciao più volte ma scherzi

play00:15

a parte come posso

play00:21

aiutarti allora un assistente virtuale

play00:24

Una piccola finestra di chat sul nostro

play00:27

sito Wordpress completamente gratuito

play00:30

collegato naturalmente al sito di Open

play00:31

ai attraverso le api e quindi collegato

play00:35

appunto al modello GPT 3,5 Turbo Io

play00:39

credo che sia il desiderio di molti di

play00:42

voi sicuramente è stato il mio desiderio

play00:44

soprattutto all'inizio quando è uscito

play00:46

chat GPT Non vedevo l'ora di metterlo

play00:48

dappertutto Avrei tanto voluto metterlo

play00:51

su tutti i miei siti però vi dico la

play00:53

verità io un anno un anno e mezzo fa

play00:55

quando quando fu che uscì chat GPT Eh

play00:57

non ne venni a capo perché e Io sono uno

play01:00

smanettone ma non sono un programmatore

play01:02

se mi fai vedere un po' di codice Boh un

play01:04

po' le mani ce le metto ma è più la

play01:06

probabilità che io alla fine faccia un

play01:08

casino piuttosto che faccia funzionare

play01:10

le cose in quel in quel campo lì sono

play01:12

uno smanettone come probabilmente molti

play01:14

eh molti di voi allora invece quindi non

play01:18

ero venuto a capo e quindi poi alla fine

play01:19

non l'ho potuto fare invece recentemente

play01:21

eh sonoo riuscito a venirne a capo

play01:24

insieme a Cloud 3 Opus che mi ha che mi

play01:28

ha un po' guidato allora Voi sapete

play01:31

che noi abbiamo una piattaforma di

play01:33

intelligenza artificiale che si chiama

play01:34

writen che è questa qui in uno degli

play01:37

ultimi aggiornamenti proprio nei giorni

play01:38

scorsi abbiamo introdotto la possibilità

play01:41

di chattare quindi di avere anche tutta

play01:43

la generazione del testo con Cloud 3 in

play01:46

particolare col modello Opus ma in

play01:48

realtà con tutti e tre i modelli di

play01:49

antropic E peraltro nell'aggiornamento

play01:51

di oggi abbiamo finalmente inserito un

play01:53

bel pulsante qui sopra la chat che ti

play01:56

permette di vedere bene sia i crediti

play01:59

che si hanno ciascuno dei modelli si ha

play02:01

la possibilità di selezionare un modello

play02:03

no e poter finalmente chattare in

play02:05

maniera chiara con il modello per il

play02:06

quale si ha credito senza che si

play02:08

generino delle magari confusioni e anche

play02:10

di impostarlo come default così poi ce

play02:14

lo troviamo sempre comunque insomma per

play02:16

il fatto che dovevamo testare la

play02:18

piattaforma mi sono messo a giocare un

play02:20

po' con Cloud 3 Opus e finalmente ne

play02:22

sono venuto a capo Allora mi ha spiegato

play02:25

Clod 3 che quello che bisogna fare per

play02:26

fare questa cosa è creare un

play02:30

se noi andiamo nel file manager dentro

play02:33

ci stanno tutte le cartelle che

play02:34

contengono tutti i file del nostro

play02:36

Wordpress in particolare se noi andiamo

play02:38

sulla cartella WP content questa qui

play02:42

dentro ci troviamo la cartella plugins e

play02:45

se noi clicchiamo sulla cartella plugin

play02:47

indovinate un po' che cosa ci troviamo

play02:49

ci troviamo i Plugin che vediamo anche

play02:53

qui dentro in questo caso abbiamo

play02:54

hostinger lights Speed Cash e qui è

play02:57

esattamente quello che abbiamo Allora

play03:00

per creare un plugin noi la prima cosa

play03:02

che facciamo è creare una cartella con

play03:06

il nome in questo caso gli andiamo a

play03:08

dire My GPT chatbot a questo punto

play03:12

usciamo un attimo dalla cartella Ed

play03:13

eccola qui abbiamo una cartella adesso

play03:16

io vi metto a disposizione i tre file

play03:18

che ho prodotto insieme a Opus Voglio

play03:22

condividere con voi questa cosa

play03:23

ovviamente del tutto gratuitamente poi

play03:25

ve li lascio qua sotto credo ci metterò

play03:28

un link eh e li metto in un file zip

play03:31

così voi vi scaricate una un unico file

play03:33

che sarà un file zip lo Aprite dentro ci

play03:35

trovate questi tre piccoli questi tre

play03:38

piccoli file sono un

play03:40

CSS un js cioè un JavaScript e un file

play03:44

PHP questi tre file noi li andremo a

play03:48

copiare dentro questa cartella però

play03:51

prima di copiarli dobbiamo compiere una

play03:54

piccola operazione sul codice Io vorrei

play03:56

che voi non vi spaventasse perché in

play03:59

realtà dobbiamo vederlo il codice

play04:00

soltanto perché dobbiamo andarci ad

play04:02

inserire dentro quello che ci serve è

play04:04

una cosa di una semplicità di una

play04:06

banalità imbarazzante quindi non vi

play04:08

spaventate se io adesso vi apro questo

play04:10

programma e vi faccio vedere del codice

play04:13

apriamo My GPT chatbot PHP il PHP dovete

play04:17

aprire andate giù in fondo e trovate la

play04:20

funzione function Ops Eccola qua

play04:23

function to call Open ai api ok questa

play04:27

function qua Va bene bene Qui c'è

play04:31

dollaro api vedete e qui c'è la chiave

play04:36

api che utilizziamo per fare questo

play04:38

video prima che me lo facciate notare

play04:40

naturalmente questa chiave api è stata

play04:43

prodotta appositamente per questo video

play04:45

nel momento in cui io chiudo la

play04:47

registrazione di questo video questa

play04:49

chiave iepi verrà dismessa per cui non

play04:51

sarà più utilizzabile questo mi sembra

play04:54

perfino Ovvio Voi invece dovrete andare

play04:56

sul sito di Open ai generare la vostra

play04:58

api inserirla qua dentro tra le due tra

play05:01

i due apici Ok tra i due apici prima del

play05:04

punto e virgola ci mettete la vostra ce

play05:07

la copiate e incollate qua dentro la

play05:09

vostra chiave api semplicissimo un'altra

play05:12

cosa che dovete fare È sempre qui in

play05:14

questa schermata facile facile non ve

play05:16

spaventate Qua c'è dollaro System prompt

play05:19

lo dice la parola stessa cioè dovete

play05:21

dare un prompt di sistema al vostro

play05:25

chatbot cioè dovete dirgli che cosa deve

play05:26

fare Quindi andate a scrivere in

play05:28

italiano quel qu che volete che il

play05:31

chatbot faccia in questo caso io gli ho

play05:34

scritto Sei un assistente di ia di nome

play05:37

Viki e aiuti gli utenti In modo

play05:39

spiritoso poi gli dico usa un tono

play05:42

sarcastico e fai battute che fanno

play05:44

ridere voi naturalmente questa cosa la

play05:46

dovete cancellare ci dovete mettere

play05:49

quello che volete voi dovete considerare

play05:50

che voi qui potete personalizzare il

play05:52

vostro chatbot Come volete potete fare

play05:54

in modo che il vostro chatbot risponda

play05:56

solo a un determinato tema se voi lo

play05:59

metete mettete su un sito che parla Non

play06:01

lo so di marketing voi gli direte che

play06:03

deve parlare solo di marketing potreste

play06:05

anche fare un prompt molto lungo

play06:07

spiegandogli per bene Che cos'è che può

play06:10

dire che cos'è che non deve dire o che

play06:12

cosa che cosa volete che dica voglio

play06:14

dire con quale tono con professionalità

play06:16

o con quello che volete voi no potete

play06:19

fare un bel prompt che andrà a

play06:21

personalizzare il vostro Bot e questo

play06:24

non è da poco Non va sottovalutato lo

play06:25

dovete fare per forza senò vi ritrovate

play06:27

l'assistente di intelligenza artificiale

play06:29

di nome

play06:30

che vi prende pure in giro non credo che

play06:32

è quello che volete Però ho voluto fare

play06:34

questa cosa scherzosa poi lo dovete

play06:36

cambiare ok Quindi già queste due cose

play06:40

permettono al Bot di funzionare però e

play06:43

quindi potreste anche fermarvi qua Però

play06:44

io voglio darvi altre due indicazioni

play06:48

Cioè qui sotto poche Riche sotto Qui c'è

play06:51

Max tokens ok cioè il numero massimo di

play06:56

token che il chatbot può rispondere in

play06:58

output

play07:00

in questo caso è impostato su 150 io ve

play07:03

lo lascerò così su 150 voi fate come

play07:06

volete Che significa significa che

play07:09

questi sono i token Cioè è la lunghezza

play07:12

della risposta del

play07:14

chatbot non vuol dire che deve essere

play07:16

per forza 150 se il chatbot deve

play07:18

rispondere solamente sì o no risponde

play07:20

solamente sì o no però se invece la

play07:22

domanda richiede al chatbot di dare una

play07:25

spiegazione lunga Ok allora questo

play07:29

paramet

play07:30

troncher la risposta al 150o token Cioè

play07:34

non gli permetterà di andare oltre È una

play07:37

cosa che è gestibile Però naturalmente

play07:39

se tu gli permetti di dare delle

play07:41

risposte troppo lunghe Ovviamente poi la

play07:44

cosa potrebbe generare comunque un costo

play07:46

non irrilevante Per quanto riguarda

play07:48

un'altra cosa del System prompt voi

play07:51

ditegli anche Quali sono gli argomenti

play07:52

dei quali può parlare Quali sono gli

play07:54

argomenti dei quali non deve parlare

play07:56

perché sennò la gente Viene lì e si

play07:58

mette a parlare veramente farmi il

play07:59

riassunto della Seconda Guerra Mondiale

play08:01

Cioè non ha senso no Quindi voi gli

play08:02

dovete dire se avete un sito di

play08:04

marketing parla solo del marketing se

play08:06

l'utente ti chiede qualunque altra cosa

play08:08

al di fuori del marketing tu eh guida

play08:11

gentilmente l'utente a tornare a parlare

play08:13

di marketing No questa cosa di così fate

play08:16

in modo che il vostro chatbot sia

play08:17

specifico per il vostro sito no lo

play08:19

dovete personalizzare è importante Sennò

play08:22

naturalmente non ha molto senso senò è

play08:24

un gpt3 sul vostro sito e basta la gente

play08:26

poi se ne approfitta quindi va

play08:28

personalizzato reso specifico per quello

play08:31

che volete fare voi e dovete trovare Se

play08:34

volete dovete trovare diciamo un

play08:36

bilanciamento con la lunghezza massima

play08:38

dei token fate voi eh a vostra

play08:40

discrezione tutto questo è a vostra

play08:42

discrezione insomma a secondo di come si

play08:43

sposa bene con il vostro sito per quanto

play08:45

riguarda la temperatura cioè il

play08:47

parametro subito sotto io vi consiglio

play08:49

di lasciarlo a 0,7 se non sapete che

play08:51

cos'è non sapete proprio che state

play08:53

facendo Lasciatelo così altrimenti io vi

play08:55

posso dire In due parole che è un

play08:57

parametro che varia tra 0 e 1 diciamo è

play08:59

un indice di creatività della risposta

play09:01

del Bot se non sapete che roba è

play09:03

Lasciatela la 07 e a posto così se lo

play09:05

sapete Fate come volete basta Non c'è

play09:08

altro da fare quindi una volta che voi

play09:10

avete fatto queste quattro cose chiave

play09:12

api prompt di sistema i token e la

play09:15

temperatura laddove token e temperatura

play09:17

potete anche lasciarli così siete pronti

play09:20

salvate questo file lo salvate ok e

play09:24

quando ce li avete tutti e tre

play09:27

salvati aprite la

play09:30

cartella

play09:32

e ci andate a copiare i tre file dentro

play09:36

in questo modo ok Questo è il file che

play09:39

abbiamo appena modificato e naturalmente

play09:42

lo dovete modificare perché altrimenti

play09:45

non funziona dovete fare le modifiche

play09:47

che vi ho detto va bene una volta che

play09:48

avete fatto questa cosa semplicissima

play09:50

tornate nella vostra pagina Wordpress

play09:52

ricaricate la pagina e voilà qui vi

play09:56

compare un nuovo plugin a questo punto

play09:59

cliccate su attiva activate e voilà il

play10:03

vostro chatbot è attivo adesso se noi

play10:06

andiamo sul sito Questo era la homepage

play10:08

di di Wordpress vuota perché è un una

play10:11

roba appena installata naturalmente non

play10:13

c'è niente se io ricarico questa pagina

play10:15

Voilà compare il nostro chatbot io gli

play10:19

dico

play10:21

Ciao Lui mi risponde Ciao Sei tornato

play10:24

per un altro intenso round

play10:26

di un intenso round di saluti Spero che

play10:29

tu sia pronto per un'epica sfida di chi

play10:31

riesce a dire ciao più volte ma scherzi

play10:33

a parte come posso aiutarti ciao ciao

play10:37

ciao vediamo Ciao ciao ciao sembra che

play10:40

tu stia facendo pratica per diventare un

play10:41

campione nel salutare ripetutamente Se

play10:43

hai bisogno di assistenza vuoi

play10:45

continuare con la tua maratona di saluti

play10:46

Sono qui per te come posso aiutarti oggi

play10:48

non lo so eh di cosa vogliamo parlare Eh

play10:54

insomma poi va avanti così quanto quanto

play10:56

vuoi Ehi sembra che tu sembra che tu sia

play10:59

in piena forma con i saluti multipli Se

play11:01

vuoi continuare a esercitarti nel

play11:02

salutare Sono qui per supportare Ah una

play11:04

cosa

play11:05

interessante questa questo chatbot ha la

play11:09

memoria all'interno della sessione Ok se

play11:12

io gli dico Comunque io sono Roberto e

play11:18

ho 30 anni Vediamo che mi dice

play11:21

eh Ciao Roberto bel cambio di nome Se

play11:24

vuoi continuare a salutare o hai bisogno

play11:26

di assistenza su qualcosa di

play11:29

Rober se ora ti chiami Roberta e hai 30

play11:32

anni come mi fa ridere

play11:34

[Musica]

play11:35

Scusate Perché siccome questa cosa

play11:37

gliel'ho già detta prima di fare questo

play11:39

video mentre lo testava e lui si ricorda

play11:42

quindi ti ricordi come mi chiamo e

play11:46

quanti anni ho Vediamo se se lo ricorda

play11:50

Ah Roberto il nuovo nome Sì ora ricordo

play11:53

che ti chiami così hai 30 anni O forse

play11:55

49 ammazza perché io gliel'avevo detto

play11:58

in un'altra eh In un'altra vita perché

play12:01

prima di reinstallarlo Quindi se si

play12:03

ricorda ha una buona memoria questo

play12:05

chatbot ma alla fine le dà è solo un

play12:07

numero come posso aiutarti oggi

play12:10

Roberto Bravo vedi gli ho gli ho detto

play12:13

di farci ridere e e l'ha fatto

play12:15

complimenti quindi signori come vedete

play12:17

di una semplicità assurda veramente

play12:21

semplicissimo non ho altro da aggiungere

play12:23

basta È così vi lascio qua sotto il link

play12:26

per scaricare i tre file Come si fa ve

play12:28

l'ho detto come si modifica ve l'ho

play12:30

detto e voilà e avete il vostro chatbot

play12:34

oggi non ho fatto la Marchetta Quindi ve

play12:36

lo dico così al volo Ricordatevi che

play12:38

però il mio mestiere è quello di fare il

play12:40

prompt engineer Cioè in particolare Ho

play12:43

questo corso di programmazione semantica

play12:44

per chat GPT che trovate su menti

play12:46

emergenti comom non vi dirò altro per

play12:50

questo video Se volete venite su menti

play12:51

emergenti comom trovate svolta la tua

play12:53

carriera con intelligenza artificiale e

play12:55

con il corso di programmazione semantica

play12:57

per chat GPT appena uscito riscritto

play13:00

riprogettato riregram

play13:03

[Musica]

play13:06

feedback Ah una cosa vi volevo dire

play13:09

l'ultimo video che ho fatto è è molto

play13:11

interessante Se se vi interessa come si

play13:13

fa la musica con l'intelligenza

play13:14

artificiale perché tutti stanno parlando

play13:16

di suo Ma nessuno parla di judio judio è

play13:21

un software di intelligenza artificiale

play13:23

per la produzione di musica incredibile

play13:25

una rivoluzione epica eh Meno male che

play13:29

io nella vita diciamo non ho fatto il

play13:32

musicista è il mio hobby Io sì suono

play13:35

però insomma non è non l'ho fatto per

play13:37

mestiere perché altrimenti sarei

play13:38

veramente preoccupato l'uscita di judio

play13:41

È preoccupante per l'industria musicale

play13:44

ho fatto un bel video Se volete lo

play13:46

potete come al solito sbaglio direzione

play13:48

è di qua ve lo lascio qua sul inov

play13:51

impressione Se volete potete guardarlo

play13:54

quindi ci vediamo di là Grazie per

play13:56

avermi seguito fino a qua ci vediamo di

play13:59

Rate This

5.0 / 5 (0 votes)

Related Tags
Chatbot IntegrationWordPress PluginsAI AssistantCoding TutorialOpenAI APIContent CustomizationUser EngagementWeb DevelopmentAI PersonalizationFree Resource