Difference between revisions of "LLM: RAG contoh"

From OnnoWiki
Jump to navigation Jump to search
(Created page with "Contoh: https://www.youtube.com/watch?v=7VAs22LC7WE python3 -m venv venv source venv/bin/activate pip3 install langchain_community Edit apps.py from langchain_commun...")
 
Line 18: Line 18:
  
 
  python3 apps.py
 
  python3 apps.py
 +
 +
 +
 +
===Flask==
 +
 +
pip3 install flask
 +
 +
Edit apps.py
 +
 +
from flask import flask
 +
from langchain_community.llms import Ollama
 +
 +
app = flask(__name__)
 +
 +
 +
llm = Ollama(model="llama3")
 +
responds=llm.invoke("Why the sky is blue?")
 +
print(responds)
 +
 +
Lebih detail bisa di baca di
 +
 +
https://github.com/ThomasJay/RAG/blob/main/app.py
  
  

Revision as of 12:55, 15 July 2024

Contoh: https://www.youtube.com/watch?v=7VAs22LC7WE


python3 -m venv venv
source venv/bin/activate
pip3 install langchain_community


Edit apps.py

from langchain_community.llms import Ollama
llm = Ollama(model="llama3")
responds=llm.invoke("Why the sky is blue?")
print(responds)

Run

python3 apps.py


=Flask

pip3 install flask

Edit apps.py

from flask import flask
from langchain_community.llms import Ollama
app = flask(__name__)


llm = Ollama(model="llama3")
responds=llm.invoke("Why the sky is blue?")
print(responds)

Lebih detail bisa di baca di

https://github.com/ThomasJay/RAG/blob/main/app.py


Referensi