Replies: 3 comments 1 reply
|
I have this problem right now after I updated LangChain. Earlier was just fine. |
|
I ran your code, Now it seems they have a bug in the HuggingFaceHub lib ---> 49 result = chain({"question": query, "chat_history": history}) 24 frames AttributeError: 'InferenceClient' object has no attribute 'post' CAN SOMEONE ASSIST TO SOLVE THIS ?? |
|
Hi @Arpx17 , The issue where the response includes the entire prompt is default behavior for many Hugging Face Inference Endpoints (which To fix this, you need to explicitly tell the API not to return the full text by adding llm = HuggingFaceHub(
repo_id="google/gemma-7b-it",
model_kwargs={
"max_new_tokens": 256,
"return_full_text": False, # <--- Add this line
"top_k": 10,
"top_p": 0.95,
"temperature": 0.3,
# ... other params
},
# ...
) |
Uh oh!
There was an error while loading. Please reload this page.
I was trying to build a RAG LLM model using opensource models. but while generating the response the llm is attaching the entire prompt and relevant document at the output. can anyone please tell me how can I remove the prompt and the Question section and get only the Answer in response ?
langchain Version: 0.1.9
Code:
Output:
I have also tried with mistralai/Mistral-7B-Instruct-v0.2 , NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO and mistralai/Mixtral-8x7B-Instruct-v0.1 . but got same kind of result.
Can anyone solve this issue ?
All reactions