SimFG

Results 402 comments of SimFG

@Zjq9409 If there isn't other question, i will close the issue

because the `onnx.to_embeddings` is the english embedding model, you need a chinese embedding model, reference: #317

About the conversation situation, it depends on how to use the llm. If you can give all the conversation info to the GPTCache, it will work finely, like the the...

@Zjq9409 From the error stack, can you try to run directly the llm, like: ``` llm(prompt="你好") ``` because i guess the error is caused by the empty text in the...

@Zjq9409 if there is the same problem when you run the code: ``` llm(prompt="你好") ``` Looks like it should not be caused by GPTCache and it's caused the llm model.

when the cache is empty, it will call the origin llm model to get the answer, and then the answer will be saved to cache. In the next time, you...

@Zjq9409 Is your problem solved? If you want to use the huggingface transformers LLM model, you can use the GPTCache api. If you encounter other problems, you can open a...

@iunique hi, you can open a new issue and describe your problem.

can you give me a simple example? let me try to test it