We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Like with the other open issues there is a type assertion failing here.
When having mistral-openorca:latest installed listing models fails as the parameter families is null instead of an array.
array:6 [ "parent_model" => "" "format" => "gguf" "family" => "llama" "families" => null "parameter_size" => "7B" "quantization_level" => "Q4_0" ]
Type assertion therefore fails and an PHP Error is thrown.
The text was updated successfully, but these errors were encountered:
Same problem btw. with samantha-mistral:latest and deepseek-llm:7b.
Sorry, something went wrong.
Also faced with this problem, I see that in the wizard this error is already fixed, but a new version hasn't been released #8
Interim solution, write in composer.json
{ "repositories": [ { "type": "vcs", "url": "https://github.com/ArdaGnsrn/ollama-php" } ], "require": { "ardagnsrn/ollama-php": "dev-master#e5a1eaf036dc799736cb3d9a082f79b80f140aa7" } }
No branches or pull requests
Like with the other open issues there is a type assertion failing here.
When having mistral-openorca:latest installed listing models fails as the parameter families is null instead of an array.
array:6 [
"parent_model" => ""
"format" => "gguf"
"family" => "llama"
"families" => null
"parameter_size" => "7B"
"quantization_level" => "Q4_0"
]
Type assertion therefore fails and an PHP Error is thrown.
The text was updated successfully, but these errors were encountered: