GenerativeAIExamples icon indicating copy to clipboard operation
GenerativeAIExamples copied to clipboard

"Failed to get response from /generate endpoint of chain-server. Check if the fastapi server in chain-server is up. Refer to chain-server logs for details."

Open wyw1267 opened this issue 1 year ago • 4 comments

When I run the langchain example, the docker command can run successfully. But when I use the brower to chat. It will report "Failed to get response from /generate endpoint of chain-server. Check if the fastapi server in chain-server is up. Refer to chain-server logs for details.".

wyw1267 avatar Oct 30 '24 11:10 wyw1267

I get the same message for the GenerativeAIExamples/RAG/examples/basic_rag/llamaindex. Message: "Failed to get response from /generate endpoint of chain-server. Check if the fastapi server in chain-server is up. Refer to chain-server logs for details."

MarkoBrie avatar Nov 06 '24 10:11 MarkoBrie

I get the same message for the GenerativeAIExamples/RAG/examples/basic_rag/llamaindex. Message: "Failed to get response from /generate endpoint of chain-server. Check if the fastapi server in chain-server is up. Refer to chain-server logs for details."

Somehow the export of the NVIDIA_API_KEY was ignored. I repeated the export and the error was not shown anymore.

MarkoBrie avatar Nov 06 '24 11:11 MarkoBrie

https://python.langchain.com/docs/integrations/chat/nvidia_ai_endpoints/

thalapandi avatar Nov 06 '24 14:11 thalapandi

There seems to be a missing dependency issue in the RAG/src/chain-server/tracing.py file at the following location:

from RAG.tools.observability.langchain import opentelemetry_callback as langchain_otel_cb
from RAG.tools.observability.llamaindex import opentelemetry_callback as llama_index_otel_cb

When I inspect the exited chain-server container, I see the following error:

from RAG.tools.observability.langchain import opentelemetry_callback as langchain_otel_cb
2024-11-09 11:38:58 ModuleNotFoundError: No module named 'RAG.tools.observability'

lbliii avatar Nov 09 '24 17:11 lbliii