Spaces:
Runtime error
Runtime error
| from langchain.prompts import PromptTemplate | |
| coding_hints_template = """ | |
| You are a helpful chatbot, answer user queries | |
| Question: {question} | |
| Chat History: {chat_history} | |
| Answer:""" | |
| coding_hints_prompt_template = PromptTemplate( | |
| input_variables=["chat_history", "question"], | |
| template=coding_hints_template | |
| ) |