src.prompt_builders.openai_compat.granite.granite_prompt_builder.OpenAICompatGranitePromptBuilder
Bases: BasePromptBuilder
Prompt builder for the Granite model architecture.
This class handles the construction of prompts and chat messages specifically formatted for Granite models, with support for tool definitions and context-aware message formatting.
Attributes:
Name | Type | Description |
---|---|---|
config |
Dict
|
Configuration loaded from prompt_builders.yaml |
template |
Template
|
Jinja2 template for text generation prompts |
Source code in src/prompt_builders/openai_compat/granite/granite_prompt_builder.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
|
__init__(template_dir=None)
Initialize the Granite prompt builder.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
template_dir
|
Optional[str]
|
Custom directory for template files. If None, uses default directory 'src/prompt_builders/granite'. |
None
|
Source code in src/prompt_builders/openai_compat/granite/granite_prompt_builder.py
27 28 29 30 31 32 33 34 35 36 37 |
|
build_chat(payload)
async
Build chat messages with tools embedded in system message.
Creates or modifies the system message to include tool definitions while preserving the existing conversation structure.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
payload
|
PromptPayload
|
The structured input containing conversation history, tool definitions, and other context-specific data |
required |
Returns:
Name | Type | Description |
---|---|---|
PromptBuilderOutput |
PromptBuilderOutput
|
Contains the modified message list with tool information |
Source code in src/prompt_builders/openai_compat/granite/granite_prompt_builder.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
build_text(payload)
async
Build text prompt using Granite-specific template.
Constructs a complete prompt string using the Jinja2 template, incorporating conversation history and tool definitions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
payload
|
PromptPayload
|
The structured input containing conversation history, tool definitions, and other context-specific data |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
PromptBuilderOutput
|
Formatted prompt string ready for text generation |
Source code in src/prompt_builders/openai_compat/granite/granite_prompt_builder.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|