Update app.py
Browse files
app.py
CHANGED
|
@@ -1,31 +1,22 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
import torch
|
| 3 |
-
|
| 4 |
from langchain_community.vectorstores import FAISS
|
| 5 |
from langchain_huggingface import HuggingFaceEmbeddings, HuggingFacePipeline
|
| 6 |
-
from transformers import
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
BitsAndBytesConfig,
|
| 11 |
-
)
|
| 12 |
-
|
| 13 |
-
# Vector store
|
| 14 |
-
embeddings = HuggingFaceEmbeddings(
|
| 15 |
-
model_name="sentence-transformers/all-MiniLM-L6-v2"
|
| 16 |
-
)
|
| 17 |
|
|
|
|
|
|
|
| 18 |
vectorstore = FAISS.load_local(
|
| 19 |
-
"faiss_upf_index",
|
| 20 |
-
embeddings,
|
| 21 |
allow_dangerous_deserialization=True
|
| 22 |
)
|
|
|
|
| 23 |
|
| 24 |
-
|
| 25 |
-
search_kwargs={"k": 2}
|
| 26 |
-
)
|
| 27 |
-
|
| 28 |
-
# Model
|
| 29 |
model_id = "anirudh248/upf-code-generator"
|
| 30 |
|
| 31 |
bnb_config = BitsAndBytesConfig(
|
|
@@ -34,199 +25,93 @@ bnb_config = BitsAndBytesConfig(
|
|
| 34 |
)
|
| 35 |
|
| 36 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 37 |
-
|
| 38 |
model = AutoModelForCausalLM.from_pretrained(
|
| 39 |
model_id,
|
| 40 |
quantization_config=bnb_config,
|
| 41 |
device_map="auto"
|
| 42 |
)
|
| 43 |
-
|
| 44 |
-
if tokenizer.pad_token is None:
|
| 45 |
-
tokenizer.pad_token = tokenizer.eos_token
|
| 46 |
-
|
| 47 |
-
model.config.pad_token_id = tokenizer.pad_token_id
|
| 48 |
|
| 49 |
hf_pipeline = pipeline(
|
| 50 |
"text-generation",
|
| 51 |
model=model,
|
| 52 |
tokenizer=tokenizer,
|
| 53 |
-
max_new_tokens=
|
| 54 |
-
|
| 55 |
-
|
|
|
|
| 56 |
return_full_text=False,
|
| 57 |
-
|
| 58 |
)
|
|
|
|
| 59 |
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
)
|
| 63 |
-
|
| 64 |
-
# Helpers
|
| 65 |
-
def format_history(history, max_messages=8):
|
| 66 |
-
if not history:
|
| 67 |
-
return "No previous conversation."
|
| 68 |
-
|
| 69 |
-
history = history[-max_messages:]
|
| 70 |
-
|
| 71 |
-
lines = []
|
| 72 |
-
|
| 73 |
-
for message in history:
|
| 74 |
-
role = message.get("role", "user").capitalize()
|
| 75 |
-
content = message.get("content", "")
|
| 76 |
-
lines.append(f"{role}: {content}")
|
| 77 |
-
|
| 78 |
-
return "\n".join(lines)
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
def retrieve_context(query):
|
| 82 |
-
try:
|
| 83 |
-
documents = retriever.invoke(query)
|
| 84 |
-
|
| 85 |
-
if not documents:
|
| 86 |
-
return "No relevant UPF reference material was found."
|
| 87 |
-
|
| 88 |
-
return "\n\n--- REFERENCE ---\n\n".join(
|
| 89 |
-
doc.page_content for doc in documents
|
| 90 |
-
)
|
| 91 |
-
|
| 92 |
-
except Exception as error:
|
| 93 |
-
print(f"Retrieval error: {error}")
|
| 94 |
-
return "No reference material available."
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
# Prompt
|
| 98 |
-
SYSTEM_PROMPT = """
|
| 99 |
-
You are a general-purpose AI assistant specializing in Unified Power Format
|
| 100 |
-
(UPF 3.0), IEEE 1801, VLSI power intent, and low-power digital design.
|
| 101 |
|
| 102 |
-
|
| 103 |
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
- Correctly identify power domains, supplies, switches, isolation,
|
| 111 |
-
level shifters, retention, and power states.
|
| 112 |
-
- Maintain correct voltage and signal directions.
|
| 113 |
-
- Do not invent unrelated modules, signals, procedures, or commands.
|
| 114 |
-
- Use valid UPF 3.0 / IEEE 1801 constructs.
|
| 115 |
-
- If information is missing, state reasonable assumptions.
|
| 116 |
-
- Provide complete UPF code when requested.
|
| 117 |
|
| 118 |
-
|
| 119 |
-
|
| 120 |
|
| 121 |
-
|
| 122 |
-
{context}
|
| 123 |
-
|
| 124 |
-
CONVERSATION HISTORY:
|
| 125 |
-
{history}
|
| 126 |
-
|
| 127 |
-
USER REQUEST:
|
| 128 |
-
{question}
|
| 129 |
-
|
| 130 |
-
ANSWER:
|
| 131 |
"""
|
| 132 |
|
|
|
|
|
|
|
|
|
|
| 133 |
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
if
|
| 138 |
-
return
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
prompt = SYSTEM_PROMPT.format(
|
| 144 |
-
context=context,
|
| 145 |
-
history=history_text,
|
| 146 |
-
question=question
|
| 147 |
-
)
|
| 148 |
-
|
| 149 |
-
try:
|
| 150 |
-
response = llm.invoke(prompt)
|
| 151 |
-
|
| 152 |
-
response = str(response)
|
| 153 |
-
response = response.replace("<|eot_id|>", "")
|
| 154 |
-
response = response.replace("<|end_of_text|>", "")
|
| 155 |
-
|
| 156 |
-
return response.strip()
|
| 157 |
-
|
| 158 |
-
except Exception as error:
|
| 159 |
-
print(f"Generation error: {error}")
|
| 160 |
-
return f"Generation error: {error}"
|
| 161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
|
| 163 |
-
# Gradio
|
| 164 |
def user_interaction(user_message, history):
|
| 165 |
history = history or []
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
answer = generate_response(
|
| 173 |
-
user_text,
|
| 174 |
-
history
|
| 175 |
-
)
|
| 176 |
-
|
| 177 |
-
history.append({
|
| 178 |
-
"role": "user",
|
| 179 |
-
"content": user_text
|
| 180 |
-
})
|
| 181 |
-
|
| 182 |
-
history.append({
|
| 183 |
-
"role": "assistant",
|
| 184 |
-
"content": answer
|
| 185 |
})
|
| 186 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
return history, ""
|
| 188 |
|
| 189 |
-
|
| 190 |
with gr.Blocks() as interface:
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
)
|
| 196 |
-
|
| 197 |
-
chatbot = gr.Chatbot(
|
| 198 |
-
label="Conversation",
|
| 199 |
-
height=400
|
| 200 |
-
)
|
| 201 |
-
|
| 202 |
-
user_input = gr.Textbox(
|
| 203 |
-
show_label=False,
|
| 204 |
-
placeholder="Ask a question about UPF, VLSI, programming, or anything else...",
|
| 205 |
-
lines=3
|
| 206 |
-
)
|
| 207 |
-
|
| 208 |
with gr.Row():
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
send_button.click(
|
| 219 |
-
fn=user_interaction,
|
| 220 |
-
inputs=[user_input, chatbot],
|
| 221 |
-
outputs=[chatbot, user_input]
|
| 222 |
-
)
|
| 223 |
-
|
| 224 |
-
user_input.submit(
|
| 225 |
-
fn=user_interaction,
|
| 226 |
-
inputs=[user_input, chatbot],
|
| 227 |
-
outputs=[chatbot, user_input]
|
| 228 |
-
)
|
| 229 |
-
|
| 230 |
-
interface.launch(
|
| 231 |
-
theme=gr.themes.Soft()
|
| 232 |
-
)
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
import torch
|
|
|
|
| 3 |
from langchain_community.vectorstores import FAISS
|
| 4 |
from langchain_huggingface import HuggingFaceEmbeddings, HuggingFacePipeline
|
| 5 |
+
from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
|
| 6 |
+
from langchain_classic.chains import create_retrieval_chain
|
| 7 |
+
from langchain_classic.chains.combine_documents import create_stuff_documents_chain
|
| 8 |
+
from langchain_core.prompts import PromptTemplate
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
# 1. Vector Store Setup
|
| 11 |
+
embeddings = HuggingFaceEmbeddings(model_name='sentence-transformers/all-MiniLM-L6-v2')
|
| 12 |
vectorstore = FAISS.load_local(
|
| 13 |
+
"faiss_upf_index",
|
| 14 |
+
embeddings,
|
| 15 |
allow_dangerous_deserialization=True
|
| 16 |
)
|
| 17 |
+
retriever = vectorstore.as_retriever(search_kwargs={"k": 3})
|
| 18 |
|
| 19 |
+
# 2. Model & Pipeline Initialization
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
model_id = "anirudh248/upf-code-generator"
|
| 21 |
|
| 22 |
bnb_config = BitsAndBytesConfig(
|
|
|
|
| 25 |
)
|
| 26 |
|
| 27 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
|
|
|
| 28 |
model = AutoModelForCausalLM.from_pretrained(
|
| 29 |
model_id,
|
| 30 |
quantization_config=bnb_config,
|
| 31 |
device_map="auto"
|
| 32 |
)
|
| 33 |
+
model.generation_config.pad_token_id = tokenizer.eos_token_id
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
hf_pipeline = pipeline(
|
| 36 |
"text-generation",
|
| 37 |
model=model,
|
| 38 |
tokenizer=tokenizer,
|
| 39 |
+
max_new_tokens=1024,
|
| 40 |
+
temperature=0.2,
|
| 41 |
+
top_p=0.95,
|
| 42 |
+
repetition_penalty=1.15,
|
| 43 |
return_full_text=False,
|
| 44 |
+
clean_up_tokenization_spaces=False
|
| 45 |
)
|
| 46 |
+
llm = HuggingFacePipeline(pipeline=hf_pipeline)
|
| 47 |
|
| 48 |
+
# 3. RAG Chain Setup
|
| 49 |
+
unified_prompt_template = """<|begin_of_text|><|start_header_id|>system<|end_header_id|>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
+
You are a highly capable AI assistant specializing in Unified Power Format (UPF 3.0) and VLSI power intent design.
|
| 52 |
|
| 53 |
+
Instructions:
|
| 54 |
+
1. If the User Input asks for UPF code or power intent, act as an expert UPF engineer. Use the Context to generate precise UPF 3.0 code, enclosed in ```tcl ... ``` blocks.
|
| 55 |
+
2. If the User Input is a general question or greeting, respond conversationally and concisely. Ignore the Context if it is not relevant.
|
| 56 |
|
| 57 |
+
Context:
|
| 58 |
+
{context}<|eot_id|><|start_header_id|>user<|end_header_id|>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
|
| 60 |
+
Conversation History:
|
| 61 |
+
{chat_history}
|
| 62 |
|
| 63 |
+
User Input: {input}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
"""
|
| 65 |
|
| 66 |
+
unified_prompt = PromptTemplate.from_template(unified_prompt_template)
|
| 67 |
+
document_chain = create_stuff_documents_chain(llm, unified_prompt)
|
| 68 |
+
rag_chain = create_retrieval_chain(retriever, document_chain)
|
| 69 |
|
| 70 |
+
# 4. Gradio Interface & Handling
|
| 71 |
+
def get_text_content(msg_content):
|
| 72 |
+
"""Safety wrapper to ensure Gradio doesn't accidentally pass JSON dicts to the LLM"""
|
| 73 |
+
if isinstance(msg_content, str):
|
| 74 |
+
return msg_content
|
| 75 |
+
elif isinstance(msg_content, list):
|
| 76 |
+
return " ".join([item.get('text', '') for item in msg_content if isinstance(item, dict) and 'text' in item])
|
| 77 |
+
return str(msg_content)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
|
| 79 |
+
def format_history(history):
|
| 80 |
+
if not history:
|
| 81 |
+
return "No previous conversation."
|
| 82 |
+
return "\n".join([f"{msg['role'].capitalize()}: {get_text_content(msg['content'])}" for msg in history])
|
| 83 |
|
|
|
|
| 84 |
def user_interaction(user_message, history):
|
| 85 |
history = history or []
|
| 86 |
+
user_text = get_text_content(user_message)
|
| 87 |
+
|
| 88 |
+
response = rag_chain.invoke({
|
| 89 |
+
"input": user_text,
|
| 90 |
+
"chat_history": format_history(history)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
})
|
| 92 |
+
|
| 93 |
+
# Strip any trailing end-of-turn tokens Llama 3 might accidentally output
|
| 94 |
+
answer = response['answer'].replace("<|eot_id|>", "").strip()
|
| 95 |
+
|
| 96 |
+
upf_syntax_hints = ["create_power_domain", "set_isolation", "set_retention", "create_supply_port", "create_power_switch"]
|
| 97 |
+
if "```" not in answer and any(kw in answer.lower() for kw in upf_syntax_hints):
|
| 98 |
+
answer = f"```tcl\n{answer}\n```"
|
| 99 |
+
|
| 100 |
+
history.append({"role": "user", "content": user_text})
|
| 101 |
+
history.append({"role": "assistant", "content": answer})
|
| 102 |
return history, ""
|
| 103 |
|
|
|
|
| 104 |
with gr.Blocks() as interface:
|
| 105 |
+
gr.Markdown("# UPF Code Generator with Llama 3 & RAG")
|
| 106 |
+
|
| 107 |
+
chatbot = gr.Chatbot(label="Chat History", elem_id="chatbot")
|
| 108 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
with gr.Row():
|
| 110 |
+
user_input = gr.Textbox(show_label=False, placeholder="Enter a general question or a UPF power intent...", lines=3)
|
| 111 |
+
|
| 112 |
+
send_button = gr.Button("Generate Response", variant="primary")
|
| 113 |
+
|
| 114 |
+
send_button.click(fn=user_interaction, inputs=[user_input, chatbot], outputs=[chatbot, user_input])
|
| 115 |
+
user_input.submit(fn=user_interaction, inputs=[user_input, chatbot], outputs=[chatbot, user_input])
|
| 116 |
+
|
| 117 |
+
interface.launch(theme=gr.themes.Soft())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|