File size: 13,459 Bytes
dc2a587 4d03adc | 1 2 3 4 5 6 7 8 9 10 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 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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | """
modules/llm_backbone.py
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
VoiceVerse Pro β LLM Script Generation Layer
Model : meta-llama/Llama-3.1-8B-Instruct (default β widely supported 2026)
Swap via LLMConfig.model_id for any HF-hosted chat model.
Backend: huggingface_hub.InferenceClient with provider="hf-inference"
Forces HF's own serverless inference endpoint β avoids third-party
providers (e.g. Together) that independently deprecate models and
return 410 Gone errors.
Format : ChatCompletion messages API (system + user roles)
WHY NOT HuggingFaceEndpoint?
langchain-huggingface's HuggingFaceEndpoint internally calls
InferenceClient.post(), which was REMOVED in huggingface_hub β₯ 0.26.
Using InferenceClient.chat_completion() directly is the stable 2026 path.
DESIGN RULES:
- The LLM NEVER generates without retrieved context.
- Context is injected verbatim into every prompt via the user message.
- Output is structured spoken prose (transcript) or [HOST]/[GUEST] tagged
dialogue (podcast), depending on output_mode.
- Temperature, max_new_tokens are runtime-configurable.
"""
from __future__ import annotations
import logging
import os
from dataclasses import dataclass
from typing import Optional
logger = logging.getLogger(__name__)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Supported model presets (shown in sidebar dropdown)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
SUPPORTED_MODELS = [
"mistralai/Mistral-7B-Instruct-v0.2", # compact, capable
]
DEFAULT_MODEL = SUPPORTED_MODELS[0]
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Configuration
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class LLMConfig:
"""Runtime-tunable LLM parameters."""
model_id: str = DEFAULT_MODEL
max_new_tokens: int = 1024
temperature: float = 0.65
hf_token: Optional[str] = None
# Force HF's own serverless inference β avoids Together/other providers
# that deprecate models independently of HF's model hub.
provider: str = "auto"
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Prompt templates
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
SYSTEM_PROMPT = """\
You are VoiceVerse, a world-class scriptwriter for spoken-audio content.
Your ONLY source of facts is the RETRIEVED CONTEXT provided in the user message.
You MUST NOT introduce information not present in that context.
Write in a warm, engaging, conversational spoken-English style.
No markdown, no bullet points, no headers β pure spoken prose only.
The script will be read aloud by a TTS engine."""
USER_TEMPLATE = """\
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
RETRIEVED CONTEXT (your SOLE factual source):
{context}
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
TASK:
{task_description}
FORMAT REQUIREMENTS:
β’ Open with a compelling hook (1β2 sentences).
β’ Develop the topic across 3β5 natural paragraphs drawn ONLY from the context.
β’ Close with a memorable takeaway or question to the listener.
β’ No markdown. No lists. No headers. Pure spoken prose.
β’ Target length: {target_words} words."""
# ββ Podcast (two-speaker) prompts βββββββββββββββββββββββββββββββββββββββββββββ
PODCAST_SYSTEM_PROMPT = """\
You are VoiceVerse, a world-class podcast scriptwriter.
Your ONLY source of facts is the RETRIEVED CONTEXT provided in the user message.
You MUST NOT introduce information not present in that context.
Write a natural back-and-forth dialogue between two speakers:
HOST β female, warm and inquisitive, guides the conversation
GUEST β male, knowledgeable and enthusiastic, elaborates on topics
Each line MUST start with exactly "[HOST]" or "[GUEST]" followed by a space and the spoken text.
No markdown, no stage directions, no descriptions β only spoken dialogue lines.
The script will be read aloud by a TTS engine with two distinct voices."""
PODCAST_USER_TEMPLATE = """\
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
RETRIEVED CONTEXT (your SOLE factual source):
{context}
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
TASK:
{task_description}
FORMAT REQUIREMENTS (STRICTLY FOLLOW):
β’ Every line must start with [HOST] or [GUEST] followed by their spoken words.
β’ Alternate naturally between HOST and GUEST. Aim for 8β16 exchanges.
β’ HOST opens and closes the episode.
β’ Draw ALL facts ONLY from the context above.
β’ No markdown. No stage directions. No headers. Only dialogue lines.
β’ Target total length: {target_words} words of dialogue.
Example format:
[HOST] Welcome to VoiceVerse. Today we're diving into something fascinating.
[GUEST] Thanks for having me. I've been looking forward to this conversation.
[HOST] Let's start with the basics. What should our listeners know first?
[GUEST] Great question. The most important thing to understand is..."""
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LLM Backbone
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class LLMBackbone:
"""
Calls huggingface_hub.InferenceClient.chat_completion() to generate
grounded spoken-style scripts.
Uses provider="hf-inference" (HF's own serverless endpoint) to avoid
third-party providers that independently deprecate models.
Supports two output modes:
- Transcript: plain spoken prose
- Podcast: [HOST]/[GUEST] tagged dialogue for dual-voice TTS
"""
def __init__(self, config: Optional[LLMConfig] = None) -> None:
self.config = config or LLMConfig()
self._client = None
logger.info(
"LLMBackbone initialised | model=%s | provider=%s",
self.config.model_id,
self.config.provider,
)
# ββ Public API βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def generate_script(
self,
context_text: str,
task_description: str,
target_words: int = 400,
output_mode: str = "Audio Transcript", # matches OutputMode.value
) -> str:
"""
Generate a grounded script.
Args:
context_text: Retrieved context from RAGEngine (REQUIRED).
task_description: High-level user instruction for the script.
target_words: Approximate word count target.
output_mode: "Audio Transcript" or "Podcast (2 Speakers)".
Returns:
Clean script text. Podcast scripts have [HOST]/[GUEST] line prefixes.
"""
if not context_text or not context_text.strip():
raise ValueError(
"context_text must not be empty. "
"The LLM requires retrieved context to generate."
)
is_podcast = output_mode == "Podcast (2 Speakers)"
messages = self._build_messages(
context_text, task_description, target_words, is_podcast
)
logger.info(
"Calling chat_completion | model=%s | mode=%s | ~%d context chars",
self.config.model_id,
output_mode,
len(context_text),
)
try:
response = self._get_client().chat_completion(
messages=messages,
max_tokens=self.config.max_new_tokens,
temperature=self.config.temperature,
)
raw_output: str = response.choices[0].message.content
except Exception as exc:
logger.error("InferenceClient call failed: %s", exc)
raise RuntimeError(f"LLM generation failed: {exc}") from exc
script = self._post_process(raw_output)
logger.info("Script generated | %d words | podcast=%s", len(script.split()), is_podcast)
return script
# ββ Message builder ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _build_messages(
self,
context: str,
task: str,
target_words: int,
is_podcast: bool = False,
) -> list[dict]:
if is_podcast:
system = PODCAST_SYSTEM_PROMPT
user_content = PODCAST_USER_TEMPLATE.format(
context=context,
task_description=task,
target_words=target_words,
)
else:
system = SYSTEM_PROMPT
user_content = USER_TEMPLATE.format(
context=context,
task_description=task,
target_words=target_words,
)
return [
{"role": "system", "content": system},
{"role": "user", "content": user_content},
]
# ββ Post-processing ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@staticmethod
def _post_process(raw: str) -> str:
for tag in ("[INST]", "[/INST]", "</s>", "<s>", "<<SYS>>", "<</SYS>>"):
raw = raw.replace(tag, "")
lines = [line.rstrip() for line in raw.splitlines()]
cleaned: list[str] = []
blank_count = 0
for line in lines:
if not line.strip():
blank_count += 1
if blank_count <= 2:
cleaned.append("")
else:
blank_count = 0
cleaned.append(line)
return "\n".join(cleaned).strip()
# ββ Lazy client init βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _get_client(self):
"""
Lazy-load huggingface_hub.InferenceClient with provider="hf-inference".
Uses HF's own serverless inference endpoint β avoids third-party providers
(e.g. Together) that independently deprecate models and return 410 Gone.
The client is bound to a specific model at init time.
"""
if self._client is None:
from huggingface_hub import InferenceClient
token = self.config.hf_token or os.getenv("HUGGINGFACEHUB_API_TOKEN")
if not token:
raise EnvironmentError(
"Hugging Face API token not found. "
"Set HUGGINGFACEHUB_API_TOKEN in your .env file "
"or paste it in the sidebar."
)
logger.info(
"Initialising InferenceClient | model=%s | provider=%s",
self.config.model_id,
self.config.provider,
)
self._client = InferenceClient(
model=self.config.model_id, # bind model at client level
token=token,
provider=self.config.provider,
)
logger.info("InferenceClient ready | provider=%s | model=%s", self.config.provider, self.config.model_id)
return self._client |