KI / AI ChatGPT

Alles, was nicht in die anderen Foren gehört.

Moderator: jNizM

Ahk_fan
Posts: 237
Joined: 31 Aug 2018, 14:34
Contact:

KI / AI ChatGPT

12 Dec 2022, 06:32

Es ist krass, was KI inzwischen macht:

einfach mal als Aufgabe bei ChatGPT das eintippen: Create an Autohotkey program to input english text and transalate to german

auch mal 2-3 Versuche machen, es kommen verschiedene Lösungen raus...mal mit GoogleTransalator, mal MS...

beispiel vom autom. generierten code.

Code: Select all

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

; Press Ctrl+Shift+T to activate the script
^+t::
  ; Prompt the user to enter the English text to translate
  InputBox, englishText, Translate to German, Enter the English text to translate:
  if (englishText = "")  ; If the user didn't enter any text, exit the script
    return

  ; Use the built-in AutoHotkey COM object to call the Microsoft Translator API
  translator := ComObjCreate("Microsoft.Translator")

  ; Translate the English text to German using the Microsoft Translator API
  germanText := translator.Translate("en", "de", englishText)

  ; Display the translated German text in a message box
  MsgBox, %germanText%

  ; Clean up the translator object
  translator := ""

return

regards,
AHK_fan :)
https://hr-anwendungen.de
william_ahk
Posts: 496
Joined: 03 Dec 2018, 20:02

Re: KI / AI ChatGPT

16 Dec 2022, 05:36

Ich bin total erstaunt darüber. Es scheint, dass Neueinsteiger es bereits nutzen. Dies wird eine große Erleichterung für die Freiwilligen in der Rubrik Ask for Help sein, oder auch nicht...

Return to “Allgemeines”

Who is online

Users browsing this forum: No registered users and 17 guests