Skip to content

Commit

Permalink
day 22 keys
Browse files Browse the repository at this point in the history
  • Loading branch information
JosepMartiElias committed Dec 23, 2023
1 parent f1ae0eb commit 875d3c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/solutions/21/21.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static const char *ssid = "yournetwork";
static const char *password = "yourpassword";

WiFiClientSecure client;
ChatGPT<WiFiClientSecure> chat_gpt(&client, "v1", "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");
ChatGPT<WiFiClientSecure> chat_gpt(&client, "v1", "API Key here");


#define PIN 38
Expand Down
6 changes: 3 additions & 3 deletions docs/solutions/22/22.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Now send the message from yesterday to te Telegram group using a bot! You can us
const char* ssid = "yournetwork";
const char* password = "yourpassword";

#define BOTtoken "6851800826:AAFR3MVc8p9a77InL4mVXcwVaMCmfa96kAs"
#define CHAT_ID "-1002075060951"
#define BOTtoken "Bot Token here"
#define CHAT_ID "Chat ID here"

WiFiClientSecure clientTELEGRAM;
UniversalTelegramBot bot(BOTtoken, clientTELEGRAM);

WiFiClientSecure clientGPT;
ChatGPT<WiFiClientSecure> chat_gpt(&clientGPT, "v1", "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");
ChatGPT<WiFiClientSecure> chat_gpt(&clientGPT, "v1", "API-Key Here!");


#define PIN 38
Expand Down

0 comments on commit 875d3c1

Please sign in to comment.