■ generate 함수를 사용해 LLAMA 3 모델에서 질의 응답하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 8 9 10 11 |
import ollama responseDictionary = ollama.generate(model = "llama3", prompt = "what is 4 + 1000?") print(responseDictionary["response"]) """ The answer to 4 + 1000 is 1004. """ |
▶ requirements.txt
1 2 3 4 5 6 7 8 9 10 11 12 |
anyio==4.4.0 certifi==2024.6.2 exceptiongroup==1.2.1 h11==0.14.0 httpcore==1.0.5 httpx==0.27.0 idna==3.7 ollama==0.2.1 sniffio==1.3.1 typing_extensions==4.12.2 |
※ pip install ollama 명령을 실행했다.