Skip to content

Commit

Permalink
Use a default value for Ollama modelId
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Dec 12, 2023
1 parent d232f29 commit 84b1e63
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 84b1e63

Please sign in to comment.