-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [1.28.2](v1.28.1...v1.28.2) (2024-07-03)
- Loading branch information
1 parent
64cea66
commit 8ec4f7d
Showing
8 changed files
with
72 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,30 @@ | ||
`darwin chat` | ||
============= | ||
|
||
Chat with Darwin. Can be used to instruct Darwin to do things in natural language. | ||
Chat with Darwin using natural language. | ||
|
||
* [`darwin chat`](#darwin-chat) | ||
|
||
## `darwin chat` | ||
|
||
Chat with Darwin. Can be used to instruct Darwin to do things in natural language. | ||
Chat with Darwin using natural language. | ||
|
||
``` | ||
USAGE | ||
$ darwin chat [--log-level TRACE|DEBUG|INFO|WARN|ERROR|FATAL] [-p <value>] [-l] [-s] | ||
[--legacy-processing] [--llm-provider openai|ollama] | ||
$ darwin chat [-l TRACE|DEBUG|INFO|WARN|ERROR|FATAL] [-p NUMBER] [-s] [--legacy] [--llm openai|ollama] | ||
FLAGS | ||
-l, --logs Include application logs along with the chat conversations. | ||
-p, --concurrency=<value> [default: 10] The number papers to process in parallel. | ||
-s, --skip-captcha Skip captcha on paper URLs. Note: Google Scholar captcha still needs to be solved. | ||
--legacy-processing Enable legacy processing of papers that only extracts text from the main URL. The new | ||
method attempts to extract text from the source URLs (pdf or html) and falls back to the | ||
main URL. | ||
--llm-provider=<option> [default: ollama] The LLM provider to use for generating summaries. | ||
<options: openai|ollama> | ||
-p, --concurrency=NUMBER [default: 10] The number papers to process in parallel. | ||
-s, --skip-captcha Skip captcha on paper URLs. Note: Google Scholar captcha still needs to be solved. | ||
--legacy Enable legacy processing which extracts text only from the main URL. The new method attempts | ||
to extract text from the source URLs (pdf or html) and falls back to the main URL. | ||
--llm=openai|ollama [default: ollama] The LLM provider to use for generating summaries. | ||
GLOBAL FLAGS | ||
--log-level=<option> [default: INFO] Specify level for logging. | ||
<options: TRACE|DEBUG|INFO|WARN|ERROR|FATAL> | ||
-l, --log-level=TRACE|DEBUG|INFO|WARN|ERROR|FATAL [default: INFO] Specify logging level. | ||
EXAMPLES | ||
$ darwin chat | ||
``` | ||
|
||
_See code: [src/commands/chat/index.ts](https://github.com/rpidanny/darwin/blob/v1.28.1/src/commands/chat/index.ts)_ | ||
_See code: [src/commands/chat/index.ts](https://github.com/rpidanny/darwin/blob/v1.28.2/src/commands/chat/index.ts)_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@rpidanny/darwin", | ||
"description": "An elegant CLI wizard enhancing biotech research efficiency, with adaptable features for other domains, albeit with minor constraints.", | ||
"version": "1.28.1", | ||
"version": "1.28.2", | ||
"author": "Abhishek <[email protected]>", | ||
"bin": { | ||
"darwin": "./bin/run.js" | ||
|