What are the parameters that Ollama provider() accept #209
-
What are all the parameters that function provider() can accept? I not find any refecence on docs. |
Beta Was this translation helpful? Give feedback.
Answered by
ilvalerione
Jul 1, 2025
Replies: 1 comment 2 replies
-
They depends by the model you are using or by ollama itself. The constructor arguments "parameters" it's just a list of key-value pairs that will be attached on every request against your model: https://github.com/inspector-apm/neuron-ai/blob/main/src/Providers/Ollama/HandleChat.php#L33 So you are free to add any default setup to your Ollama provider. The same pattern is used on all other supported providers. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes it should.