Skip to content

Commit

Permalink
Merge pull request #135 from quarkiverse/ollama-default
Browse files Browse the repository at this point in the history
Use a default value for Ollama modelId
  • Loading branch information
geoand authored Dec 12, 2023
2 parents d232f29 + 84b1e63 commit cf88fc3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
public interface ChatModelConfig {

/**
* Model to use
* Model to use. According to <a href="https://github.com/jmorganca/ollama/blob/main/docs/api.md#model-names">Ollama
* docs</a>,
* the default value is {@code latest}
*/
@WithDefault("latest")
String modelId();

/**
Expand Down

0 comments on commit cf88fc3

Please sign in to comment.