nashsu / FreeAskInternet

FreeAskInternet is a completely free, PRIVATE and LOCALLY running search aggregator & answer generate using MULTI LLMs, without GPU needed. The user can ask a question and the system will make a multi engine search and combine the search result to LLM and generate the answer based on search results. It's all FREE to use.
Apache License 2.0
8.45k stars 879 forks source link

没有内容,只有链接展示 #7

Open wanxiankai opened 5 months ago

wanxiankai commented 5 months ago

描述

通过README中描述执行 git clone 项目并执行docker 相关命令,本地可以运行,输入问题之后回复中只有链接没有内容

截图

image

wanxiankai commented 5 months ago

按照How to update to latest 升级到了最新版,还是同样的问题。

image

chris-ss commented 5 months ago

同样的问题

lxdfly commented 5 months ago

me too.

Biaogo94 commented 5 months ago

me too.

NinjaGPT commented 5 months ago

always response: 信息缺失 and show me some links....

lixuejiang commented 5 months ago

应该是你的ip使用chatgpt有问题

wang20150419 commented 5 months ago

always response: 信息缺失 and show me some links....

我也碰到同样的问题。而且使用了 sock5 代理后(我的 原生 openai key 通过此代理访问),也只能出来链接。

建议:把 FreeAskInternet 的 chatGPT 服务,以变量的形式独立出来,成为可配置项。

Ftrybe commented 5 months ago

ip有问题

benhot commented 5 months ago

同样的问题

harry10086 commented 5 months ago

不是IP问题,我的IP访问gpt正常

AI-Beans commented 5 months ago

I'm having the same issue, but I'm deploying on a VPS and the node is Los Angeles, which is reasonably not supposed to be the case.

zwj68 commented 5 months ago

me 2 plz fix it

852569069 commented 5 months ago

同样的问题

benhot commented 5 months ago

同样的问题

到底要如何解决。。。

chris-ss commented 5 months ago

可以试试我修改的,我测试可以了 把内置的FreeGPT3.5换成了另一个项目aurora. https://github.com/chris-ss/FreeAskInternet/tree/main

wanxiankai commented 5 months ago

将节点切换到新加坡之后内容可以展示出来,看来还是IP的问题

sprswa commented 5 months ago

重启下docker看看,我是这样解决的。

907739769 commented 5 months ago

没问题 image

cypggs commented 5 months ago

docker network create my_network

docker run -d --restart always --network my_network --name aurora -p 8080:8080 ghcr.io/aurora-develop/aurora:latest

docker run -d --name backend --network my_network \ -p 8000:8000 \ --restart on-failure \ docker.io/duriancat/free_ask_internet:1.0

docker run -d --name chatgpt-next-web --network my_network \ -p 3000:3000 \ -e OPENAI_API_KEY="FreeAskInternet" \ -e BASE_URL="http://backend:8000" \ -e CUSTOM_MODELS="-all,+gpt-3.5-turbo" \ --restart always \ yidadaa/chatgpt-next-web

docker run -d --name searxng --network my_network \ -v $(pwd)/searxng:/etc/searxng:rw \ -e SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/ \ --cap-drop ALL \ --cap-add CHOWN \ --cap-add SETGID \ --cap-add SETUID \ --log-driver json-file \ --log-opt max-size=1m \ --log-opt max-file=1 \ --restart always \ docker.io/searxng/searxng:latest 换一下就行了FreeGPT3.5,用以上直接跑就 ok

image