Difference between revisions of "LLM: RAG Thomas Jay"

From OnnoWiki
Jump to navigation Jump to search
(Created page with "Sumber: https://github.com/ThomasJay/RAG ==Referensi=== * https://github.com/ThomasJay/RAG")
 
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Sumber: https://github.com/ThomasJay/RAG
 
Sumber: https://github.com/ThomasJay/RAG
  
 +
Persiapkan ollama
  
 +
ollama pull llama3
  
  
 +
Persiapkan Virtualenv
  
 +
sudo apt install python3-virtualenv python3-pip libgl1
 +
virtualenv --python=python3 venv
 +
source venv/bin/activate
  
 +
Clone Source
  
==Referensi===
+
git clone https://github.com/ThomasJay/RAG.git
 +
cd RAG/
 +
mkdir db
 +
pip install -r requirements.txt
 +
 
 +
 
 +
Run
 +
 
 +
python3 app.py
 +
 
 +
 
 +
Akses
 +
 
 +
http://ipaddress:8080
 +
 
 +
masih bingung cara pakainya ..
 +
 
 +
 
 +
===Referensi===
  
 
* https://github.com/ThomasJay/RAG
 
* https://github.com/ThomasJay/RAG

Latest revision as of 09:31, 16 July 2024

Sumber: https://github.com/ThomasJay/RAG

Persiapkan ollama

ollama pull llama3


Persiapkan Virtualenv

sudo apt install python3-virtualenv python3-pip libgl1
virtualenv --python=python3 venv
source venv/bin/activate

Clone Source

git clone https://github.com/ThomasJay/RAG.git
cd RAG/
mkdir db
pip install -r requirements.txt


Run

python3 app.py


Akses

http://ipaddress:8080

masih bingung cara pakainya ..


Referensi