** Revolutionizing Automation with Anthropic's API Integration!** 🚀🤖✨

Started by Theo Gottwald, July 11, 2024, 10:19:56 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Theo Gottwald

The next update gives the Smart Package Robot (SPR) full access to Anthropic's powerful AI API! 🌟🔧💡

And yes, full functionality! 🔥🔍

Here are two example codes below. You can program dialogues, embed images, and ask the AI about what's in the images or if there are differences between them. 💬🖼�🤔

Currently, Anthropic AI can analyze or link up to five images. Naturally, all this is supported by SPR! 📸🤖💬

There are also many other options that are particularly useful for social network automations, such as Unicode fonts and much more. 🖋�🌐🔄

#TechNews #AI #Innovation #SmartPackageRobot #Anthropic #Automation 🚀🤖✨

[German]
🚀 Mit dem nächsten Update erhält der Smart Package Robot (SPR) vollen Zugriff auf die API von Anthropic, der leistungsstärksten KI in vielen Bereichen. 🤖✨

💥 Und zwar auf den vollen Leistungsumfang!

📌 Unten habe ich zwei Beispielcodes eingefügt. Man kann also Dialoge programmieren oder Bilder in die Dialoge einbauen und die KI fragen, was auf den Bildern zu sehen ist oder ob es Unterschiede zwischen den Bildern gibt. 🖼�🤔

📊 Derzeit erlaubt die Anthropic KI bis zu fünf Bilder zu analysieren oder zu vernetzen. Natürlich wird das alles vom SPR unterstützt! 🤝📈

💡 Es gibt auch viele weitere Optionen, die speziell im Zusammenhang mit Automatisierungen in sozialen Netzwerken sinnvoll sind, wie zum Beispiel Unicode-Fonts und vieles mehr. 🌐📲

#TechNews #AI #Innovation #SmartPackageRobot #Anthropic #Automation 🤖🚀📈🖼�

The new Social Media Influencer AddOn is free for everyone to download. It shows what you can do using the Smart Package Robot and AI.


Sample Code uses only Text-Prompts:

Set up the AI model and parameters
AIK.Set Key|Any
$$MOD=claude-3-5-sonnet-20240620
AIK.Set Mes Model|$$MOD
$$LDA=0.21
AIK.Set Temperature|$$LDA
' Initialize the conversation array
ARR.Set Array|1|0|u:Hello, I'd like to discuss some vacation plans.
ARR.Set Array|1|1|a:Hello! I'd be happy to help you with your vacation plans. What kind of vacation are you thinking about?
ARR.Set Array|1|2|u:I'm considering a beach vacation. Can you show me some popular destinations?
ARR.Set Array|1|3|a:Certainly! I'd be glad to suggest some popular beach destinations. However, as an AI language model, I can't actually show you images. But I can describe some popular beach vacation spots for you. Would you like me to list a few options?
ARR.Set Array|1|4|u:Yes, please list a few options.
' Send the conversation to the AI and store the response
AIK.Ask Chat|1|$$RES|1
' Display the AI's response
DBP.Result=$$RES
ENR.

QuoteGreat! Here are some popular beach vacation destinations:
1. Maldives: Known for its crystal-clear waters, white sandy beaches, and luxurious overwater bungalows.
2. Bali, Indonesia: Offers a mix of beautiful beaches, rich culture, and lush landscapes.
3. Maui, Hawaii: Features stunning beaches, volcanic landscapes, and excellent water sports opportunities.
4. Amalfi Coast, Italy: Combines picturesque beaches with charming coastal towns and delicious cuisine.
5. Bora Bora, French Polynesia: Famous for its turquoise lagoon, overwater bungalows, and romantic atmosphere.
Would you like more information about any of these destinations?


Sample 2 using a System Prompt and Auto-Increment variables:
Using a System Prompt can give better results:
AIK.Set Key|Any
$$MOD=claude-3-5-sonnet-20240620

AIK.Set Mes Model|$$MOD
$$LDA=0.21
AIK.Set Temperature|$$LDA

$$PRO=s:You are a Picture Detective finding the smallest difference between pictures using all technical tricks to do so.
AIK.Set System Prompt|$$PRO

' Using Auto-Increment Variable (RIV. / #aiv#) we can easily add more Parts inbetween
RIV.0
$$PIC=u:"%Image=?path\SampleA.png"
ARR.Set Array|1|#aiv#|$$PIC

$$PRO=a:Let this be Picture 1.
ARR.Set Array|1|#aiv#|$$PRO

$$PIC=u:"%Image=?path\SampleC.png"
ARR.Set Array|1|#aiv#|$$PIC

$$PRO=a:Let this be Picture 2.
ARR.Set Array|1|#aiv#|$$PRO

$$PRO=u:Was ist unterschiedlich zwischen den Bildern?
ARR.Set Array|1|#aiv#|$$PRO

AIK.Ask Chat|1|$$RES|0
'AIC.Show Error|$$RES
DBP.Temp=$$LDA
DBP.Result=$$RES
ENR.
'-------------------------------------
[19:57:43] Result=
QuoteNach sorgfältigem Vergleich der beiden Bilder habe ich drei kleine Unterschiede gefunden:
1. In Bild 2 gibt es einen gelben Punkt oder Fleck in der oberen rechten Ecke des Fensters, der in Bild 1 nicht vorhanden ist.
2. In Zeile 7 des Codes wurde in Bild 2 ein Teil des Textes nach '#EXE:' mit Gelb markiert. In Bild 1 ist dieser Teil nicht hervorgehoben.
3. In Zeile 19 des Codes wurde in Bild 2 das letzte 'S' von '$RES' gelb markiert. In Bild 1 ist dieses 'S' nicht hervorgehoben.
Diese subtilen Unterschiede beziehen sich hauptsächlich auf kleine Farbänderungen oder Hervorhebungen im zweiten Bild, die im ersten Bild nicht vorhanden sind.