src.prompt_builders.base_prompt_builder.BasePromptBuilder
Bases: ABC
Source code in src/prompt_builders/base_prompt_builder.py
11 12 13 14 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 |
|
build_chat(payload)
abstractmethod
async
Build message list for chat completions endpoint.
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 either text_prompt or chat_messages for the LLM |
Source code in src/prompt_builders/base_prompt_builder.py
26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
build_text(payload)
abstractmethod
async
Build prompt string for text generation endpoint.
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 for text generation |
Source code in src/prompt_builders/base_prompt_builder.py
12 13 14 15 16 17 18 19 20 21 22 23 24 |
|