├── README.md ├── bin ├── mk-prompt │ └── mk-prompt.go └── single-search │ ├── prompts │ ├── get-entity-connections.md │ ├── get-list-of-NEs.md │ ├── get-more-questions.md │ ├── get-more-targeted-questions.md │ ├── get-response-classification.md │ ├── get-search-queries.md │ └── get-search-summary.md │ └── single-search.go ├── go.mod └── utils ├── console-tool └── console-tool.go ├── disk-cache └── disk-cache.go ├── graphs └── graphs.go ├── local-llm └── local_llm.go ├── parser ├── parser.go └── parser_test.go └── retry-tool └── retry-tool.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/README.md -------------------------------------------------------------------------------- /bin/mk-prompt/mk-prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/mk-prompt/mk-prompt.go -------------------------------------------------------------------------------- /bin/single-search/prompts/get-entity-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/prompts/get-entity-connections.md -------------------------------------------------------------------------------- /bin/single-search/prompts/get-list-of-NEs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/prompts/get-list-of-NEs.md -------------------------------------------------------------------------------- /bin/single-search/prompts/get-more-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/prompts/get-more-questions.md -------------------------------------------------------------------------------- /bin/single-search/prompts/get-more-targeted-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/prompts/get-more-targeted-questions.md -------------------------------------------------------------------------------- /bin/single-search/prompts/get-response-classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/prompts/get-response-classification.md -------------------------------------------------------------------------------- /bin/single-search/prompts/get-search-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/prompts/get-search-queries.md -------------------------------------------------------------------------------- /bin/single-search/prompts/get-search-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/prompts/get-search-summary.md -------------------------------------------------------------------------------- /bin/single-search/single-search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/bin/single-search/single-search.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/go.mod -------------------------------------------------------------------------------- /utils/console-tool/console-tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/utils/console-tool/console-tool.go -------------------------------------------------------------------------------- /utils/disk-cache/disk-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/utils/disk-cache/disk-cache.go -------------------------------------------------------------------------------- /utils/graphs/graphs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/utils/graphs/graphs.go -------------------------------------------------------------------------------- /utils/local-llm/local_llm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/utils/local-llm/local_llm.go -------------------------------------------------------------------------------- /utils/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/utils/parser/parser.go -------------------------------------------------------------------------------- /utils/parser/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/utils/parser/parser_test.go -------------------------------------------------------------------------------- /utils/retry-tool/retry-tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d0rc/deepdive/HEAD/utils/retry-tool/retry-tool.go --------------------------------------------------------------------------------