FreeAskInternet 完全免费、私有且本地运行的搜索聚合器项目

地址 GitHub - nashsu/FreeAskInternet: FreeAskInternet is a completely free, private and locally running search aggregator & answer generate using LLM, without GPU needed. The user can ask a question and the system will make a multi engine search and combine the search result to the ChatGPT3.5 LLM and generate the answer based on search results.
哪位大佬能出个一步一步带着部署的教程,纯小白,越详细越傻瓜越好。期待

4 个赞

mark,晚些时候来学习

1 个赞

markdown里就有部署的教程,三行命令就好了,只是没有api模式

1 个赞

请精简标题

完全小白哈哈哈

1 个赞

打开命令行,逐行复制命令:
git clone https://github.com/nashsu/FreeAskInternet.git
cd ./FreeAskInternet
docker-compose up -d
如果报错没有docker就再根据系统版本安装对应的docker

2 个赞

看起来有点像百度

1 个赞

下次注意标题长度

3 个赞

不知道为什么一直再转

1 个赞

这个之前部署都没有成功,本地一直提示错误。
image

期望那位大佬给出个更详细得教程。

1 个赞

出个一步步教学的教程吧,你看楼下两个都出问题

1 个赞
services:
  backend:
    image: docker.io/duriancat/free_ask_internet:1.0
    ports:
      - "8000:8000"
    depends_on:
      - aurora
    restart: on-failure

  aurora:
    image: ghcr.io/aurora-develop/aurora:latest
    container_name: aurora
    restart: unless-stopped
    ports:
      - '8080:8080'

  searxng:
    image: docker.io/searxng/searxng:latest
    volumes:
      - ./searxng:/etc/searxng:rw
    environment:
      - SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
    cap_drop:
      - ALL
    cap_add:
      - CHOWN
      - SETGID
      - SETUID
    logging:
      driver: 'json-file'
      options:
        max-size: '1m'
        max-file: '1'
    restart: always

对接 aurora的一键docker部署,api端口在8000

1 个赞

这个好像是直接请求gpt了 没有搜索吧

有搜索,至少能问当前时间和日期

简单水一个吧,写的不好,将就看吧 :rofl:

1 个赞

怎么没有列出来搜索了哪些资料

可能是你服务器问题,我是可以列出来的