Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 | 1x | /**
* Default configuration for Ollama client connections.
* Points to the standard Ollama server endpoint running on localhost.
* This is the default endpoint when Ollama is installed and running locally.
* Note that the argument designated 'host' includes the protocol and port.
*/
export const defaultClientConfig = {
host: 'http://localhost:11434',
};
|