bjmajic
bjmajic
res.MergeFromString(rst.response_data) 206 TypeError: a bytes-like object is required, not 'str'
I run the code according to the deep3d.ipynb, but i found the result was not as good as your sample which you provided (that is the demo.gif). can you do...
i build the code in window7 with vs2013, and got .dll and .lib , but i con not know how to run it to see the result ,can you give...
what is the mean? i hope to get you help "Then, append EXTRA_OPERATORS=path/to/deep3d/operators to path/to/mxnet/config.mk and recompile MXNet."
RAG支持
请问这个框架支持RAG吗? 特别是在NPU环境下,如果支持,能够给个示例 比如 bge 系列 参考了一下提供的custom.py, 貌似只支持 chat类型,自定义template的话,这里的参数 prefix: Prompt, prompt: Prompt, chat_sep: Optional[Prompt], suffix: Prompt, 应该怎么处理? 如果可以,能够提供一个完整的参考示例,多谢!
创建了一个ReAct智能体,使用 ` try: agent_response = await self.agent(user_message) print(f"ReActAgent: {agent_response.content}") except Exception as e: print(f"Error: {e}") ` 使用管道捕获流式输出: ` async for msg, last in stream_printing_messages( agents=[self.planning_agent.agent], coroutine_task=self.planning_agent.generate_plan(data_dict), ): # print(msg.content, last)...
在参考stream_printing_messages的源码中,貌似没有找到显示调用self.print, 且没有看到返回值的二元组的生成过程。```该函数接受一个或多个智能体和一个协程任务作为输入,并返回一个异步生成器。 该异步生成器返回一个二元组,包含执行协程任务过程中通过 await self.print(...) 打印的消息,以及一个布尔值,表示该消息是否为一组流式消息中的最后一个``` 不知道是不是文档过时了。