This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is responsible for the communicating with the Ollama Server | |
import json | |
import requests | |
class Ollama: | |
''' | |
This class is responsible for communicating with the Ollama Server. | |
The conversation memory is stored inside this class. | |
''' |