mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
15 lines
390 B
Ruby
15 lines
390 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_gpt_researcher < Pip
|
|
description 'LLM based autonomous agent that conducts deep local and web research on any topic and generates a long report with citations.'
|
|
homepage 'https://gptr.dev/'
|
|
version "0.14.3-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|