01.08.2024, 11:24
(Dieser Beitrag wurde zuletzt bearbeitet: 01.08.2024, 11:26 von Manfred Aabye.)
GPT4All für den Firestorm Viewer
Ladet euch GPT4All von NOMIC herunter oder aktualisiert es.
https://www.nomic.ai/gpt4all
Geht auf den Menüpunkt Models, drückt dann auf add Model und wählt Llama 3.1 8B aus und ladet dies herunter.
Ladet euch ein Source Paket herunter, als Beispiel hier der komplette Firestorm Viewer:
Batch Datei fsdownload.bat
Öffnet im GPT4All LocalDocs, fügt nun das Hautverzeichnis aller heruntergeladenen Pakete hinzu.
Das Indexieren dauert jetzt einen kleinen Augenblick und deine KI kennt alles über deinen Viewer.
Diese Anleitung, kann natürlich auch für den OpenSimulator, Diva oder einen anderen Viewer genutzt werden, auch Llama 3.1 8B ist nur ein Vorschlag.
Ladet euch GPT4All von NOMIC herunter oder aktualisiert es.
https://www.nomic.ai/gpt4all
Geht auf den Menüpunkt Models, drückt dann auf add Model und wählt Llama 3.1 8B aus und ladet dies herunter.
Ladet euch ein Source Paket herunter, als Beispiel hier der komplette Firestorm Viewer:
Batch Datei fsdownload.bat
Code:
@echo off
SETLOCAL
REM Check and handle the first repository
IF EXIST "phoenix-firestorm" (
cd /d phoenix-firestorm
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/phoenix-firestorm phoenix-firestorm
)
REM Check and handle the second repository
IF EXIST "fs-build-variables" (
cd /d fs-build-variables
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/fs-build-variables fs-build-variables
)
REM Check and handle the third repository
IF EXIST "autobuild-3.0" (
cd /d autobuild-3.0
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/autobuild-3.0 autobuild-3.0
)
REM Check and handle the fourth repository
IF EXIST "phoenix-firestorm-alpha" (
cd /d phoenix-firestorm-alpha
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/phoenix-firestorm-alpha phoenix-firestorm-alpha
)
REM Check and handle the fifth repository
IF EXIST "3p-openjpeg" (
cd /d 3p-openjpeg
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-openjpeg 3p-openjpeg
)
REM Check and handle the sixth repository
IF EXIST "3p-fmodex" (
cd /d 3p-fmodex
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-fmodex 3p-fmodex
)
REM Check and handle the seventh repository
IF EXIST "3p-apr_suite" (
cd /d 3p-apr_suite
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-apr_suite 3p-apr_suite
)
REM Check and handle the eighth repository
IF EXIST "dullahan" (
cd /d dullahan
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/dullahan dullahan
)
REM Check and handle the ninth repository
IF EXIST "3p-tracy" (
cd /d 3p-tracy
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-tracy 3p-tracy
)
REM Check and handle the tenth repository
IF EXIST "3p-sdl" (
cd /d 3p-sdl
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-sdl 3p-sdl
)
REM Check and handle the eleventh repository
IF EXIST "3p-openssl" (
cd /d 3p-openssl
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-openssl 3p-openssl
)
REM Check and handle the twelfth repository
IF EXIST "3p-open-libndofdev" (
cd /d 3p-open-libndofdev
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-open-libndofdev 3p-open-libndofdev
)
REM Check and handle the thirteenth repository
IF EXIST "3p-ogg_vorbis" (
cd /d 3p-ogg_vorbis
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-ogg_vorbis 3p-ogg_vorbis
)
REM Check and handle the fourteenth repository
IF EXIST "3p-nghttp2" (
cd /d 3p-nghttp2
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-nghttp2 3p-nghttp2
)
REM Check and handle the fifteenth repository
IF EXIST "3p-jemalloc" (
cd /d 3p-jemalloc
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-jemalloc 3p-jemalloc
)
REM Check and handle the sixteenth repository
IF EXIST "3p-fontconfig" (
cd /d 3p-fontconfig
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-fontconfig 3p-fontconfig
)
REM Check and handle the seventeenth repository
IF EXIST "3p-fltk" (
cd /d 3p-fltk
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-fltk 3p-fltk
)
REM Check and handle the eighteenth repository
IF EXIST "3p-curl" (
cd /d 3p-curl
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-curl 3p-curl
)
REM Check and handle the nineteenth repository
IF EXIST "3p-colladadom" (
cd /d 3p-colladadom
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-colladadom 3p-colladadom
)
REM Check and handle the twentieth repository
IF EXIST "3p-cef" (
cd /d 3p-cef
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-cef 3p-cef
)
REM Check and handle the twenty-first repository
IF EXIST "3p-breakpad" (
cd /d 3p-breakpad
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-breakpad 3p-breakpad
)
REM Check and handle the twenty-second repository
IF EXIST "3p-boost" (
cd /d 3p-boost
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-boost 3p-boost
)
REM Check and handle the twenty-third repository
IF EXIST "3p-openjpeg2" (
cd /d 3p-openjpeg2
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-openjpeg2 3p-openjpeg2
)
REM Check and handle the twenty-fourth repository
IF EXIST "3p-ndPhysicsStub" (
cd /d 3p-ndPhysicsStub
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-ndPhysicsStub 3p-ndPhysicsStub
)
REM Check and handle the twenty-fifth repository
IF EXIST "3p-gntp-growl" (
cd /d 3p-gntp-growl
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-gntp-growl 3p-gntp-growl
)
REM Check and handle the twenty-sixth repository
IF EXIST "3p-viewer-fonts" (
cd /d 3p-viewer-fonts
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-viewer-fonts 3p-viewer-fonts
)
REM Check and handle the twenty-seventh repository
IF EXIST "3p-glib" (
cd /d 3p-glib
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-glib 3p-glib
)
REM Check and handle the twenty-eighth repository
IF EXIST "3p-icu4c" (
cd /d 3p-icu4c
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-icu4c 3p-icu4c
)
REM Check and handle the twenty-ninth repository
IF EXIST "3p-fmodstudio" (
cd /d 3p-fmodstudio
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-fmodstudio 3p-fmodstudio
)
REM Check and handle the thirtieth repository
IF EXIST "3p-glod" (
cd /d 3p-glod
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-glod 3p-glod
)
REM Check and handle the thirty-first repository
IF EXIST "3p-freetype" (
cd /d 3p-freetype
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-freetype 3p-freetype
)
REM Check and handle the thirty-second repository
IF EXIST "3p-discord-rpc" (
cd /d 3p-discord-rpc
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-discord-rpc 3p-discord-rpc
)
REM Check and handle the thirty-third repository
IF EXIST "phoenix-sg" (
cd /d phoenix-sg
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/phoenix-sg phoenix-sg
)
REM Check and handle the thirty-fourth repository
IF EXIST "sl-sample-content" (
cd /d sl-sample-content
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/sl-sample-content sl-sample-content
)
REM Check and handle the thirty-fifth repository
IF EXIST "3p-slvoice" (
cd /d 3p-slvoice
git pull
cd ..
) ELSE (
git clone https://github.com/FirestormViewer/3p-slvoice 3p-slvoice
)
ENDLOCAL
Öffnet im GPT4All LocalDocs, fügt nun das Hautverzeichnis aller heruntergeladenen Pakete hinzu.
Das Indexieren dauert jetzt einen kleinen Augenblick und deine KI kennt alles über deinen Viewer.
Diese Anleitung, kann natürlich auch für den OpenSimulator, Diva oder einen anderen Viewer genutzt werden, auch Llama 3.1 8B ist nur ein Vorschlag.
Ein Metaversum sind viele kleine Räume, die nahtlos aneinander passen,
sowie direkt sichtbar und begehbar sind, als wäre es aus einem Guss.
sowie direkt sichtbar und begehbar sind, als wäre es aus einem Guss.