Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/chatbot/chatbot.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ text:
- repeat:
text:
# Send context to Granite model hosted at replicate.com
- model: ollama/granite-code:8b
- model: ollama_chat/granite3.2:8b
# Allow the user to type 'yes', 'no', or anything else, storing
# the input into a variable named `eval`. The input is also implicitly
# added to the context.
Expand Down
5 changes: 5 additions & 0 deletions src/pdl/pdl_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,11 @@ def get_default_model_parameters() -> list[dict[str, Any]]:
"temperature": 0,
},
},
{
"ollama_chat/granite*": {
"temperature": 0,
},
},
]


Expand Down