src.prompt_builders.openai_compat.llama.llama_prompt_builder.OpenAICompatLlamaPromptBuilder
Bases: BasePromptBuilder
Prompt builder for the Llama model architecture.
This class handles the construction of prompts and chat messages specifically formatted for Llama 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. |
Example
builder = LlamaPromptBuilder()
# Build chat messages
output = await builder.build_chat(PromptPayload(
conversation_history=history,
tool_definitions=tools
))
# Build text prompt
output = await builder.build_text(PromptPayload(
conversation_history=history,
tool_definitions=tools
))
Source code in src/prompt_builders/openai_compat/llama/llama_prompt_builder.py
15 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 168 169 170 171 172 |
|
__init__(template_dir=None)
Initialize the Llama prompt builder.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
template_dir
|
Optional[str]
|
Custom directory for template files. If None, uses default directory 'src/prompt_builders/llama'. |
None
|
Source code in src/prompt_builders/openai_compat/llama/llama_prompt_builder.py
43 44 45 46 47 48 49 50 51 52 |
|
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/llama/llama_prompt_builder.py
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 |
|
build_text(payload)
async
Build text prompt using Llama-specific template.
Constructs a complete prompt string using the Jinja2 template, incorporating conversation history, tool definitions, and model-specific tokens.
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 formatted text prompt for generation |
Source code in src/prompt_builders/openai_compat/llama/llama_prompt_builder.py
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 |
|