Chris Chen

Results 9 issues of Chris Chen

It seems you didn't implement Symbol.iterator thus can't iterate via `for...of`: ```javascript const interval = CronExpression.parse('0 * * * *', options) for (let i of interval) { console.log(i.value.toString()) } ```

feature-request

经常出现[request to https://api.openai.com/v1/chat/completions failed, reason: socket hang up],不是每次都出现。 经常是问一个问题,正常返回,接着问就会报这个错。过一会又可以了,但问第二个问题又会报这个错。 重启一下后端也会短暂正常,但问两句就又报错。 使用的版本是2.9.3和2.10.3,设的socks代理,走的cn2线路。上chatgpt官网主页使用同一个代理没有这个问题。 使用的OPENAI_API_KEY,已经绑卡付费。 `FetchError: request to https://api.openai.com/v1/chat/completions failed, reason: socket hang up at ClientRequest. (/home/ubt/chatgpt-web-2.10.3/service/node_modules/.pnpm/[email protected]/node_modules/node-fetch/src/index.js:108:11) at ClientRequest.emit (node:events:525:35) at ClientRequest.emit (node:domain:489:12)...

能否支持自定义openai的API域名

Please kindly support OPENAI_BASE_URL in .env options, thanks a lot

duplicate
enhancement

I'm trying to use `WeaviateHybridSearchRetriever` in `ConversationalRetrievalChain`, specified `return_source_documents=True`, however it doesn't return the source in meta data. got `KeyError: 'source'` ``` WEAVIATE_URL = "http://localhost:8080" client = weaviate.Client( url=WEAVIATE_URL, )...

发现gpt类相关的开源工具基本上都没有第一时间支持OPENAI_API_BASE这个配置,但在国内这个基本上是刚需

I'm trying to build Chat bot with ConversationalRetrievalChain, and got this error when trying to use "refine" chain type ``` File "/Users/chris/.pyenv/versions/3.10.10/lib/python3.10/site-packages/langchain/chains/question_answering/__init__.py", line 218, in load_qa_chain return loader_mapping[chain_type]( File "/Users/chris/.pyenv/versions/3.10.10/lib/python3.10/site-packages/langchain/chains/question_answering/__init__.py",...

Hi there, is the sorting being done in the node.js process memory? for example if I need to sort 5 million data, would it consume too much memory, like 500M...