-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Each outline comands now focus on its task, not al outline (impr…
…ove prompt)
- Loading branch information
Estrada Irribarra, Rodrigo Andres
committed
Oct 20, 2024
1 parent
ca5dd1b
commit 03b5ec3
Showing
6 changed files
with
20 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ First, install **StoryCraftr** using [pipx](https://pypa.github.io/pipx/), a too | |
To install **StoryCraftr**, run the following command: | ||
|
||
```bash | ||
pipx install git+https://github.com/raestrada/[email protected].1-alpha1 | ||
pipx install git+https://github.com/raestrada/[email protected].2-alpha1 | ||
``` | ||
|
||
### Important: Before using StoryCraftr, make sure to set your OpenAI API key: | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ First, install **StoryCraftr** using [pipx](https://pypa.github.io/pipx/), a too | |
To install **StoryCraftr**, run the following command: | ||
|
||
```bash | ||
pipx install git+https://github.com/raestrada/[email protected].1-alpha1 | ||
pipx install git+https://github.com/raestrada/[email protected].2-alpha1 | ||
``` | ||
|
||
### Important: Before running the `storycraftr` command | ||
|
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 |
---|---|---|
|
@@ -310,7 +310,7 @@ <h1>Welcome to StoryCraftr 📚✨</h1> | |
<div class="coming-soon"> | ||
🚧 Coming Soon - Beta Release! 🚀 | ||
<br>Meanwhile, you can download the Alpha version, which is fully usable but may still have bugs: | ||
<code>pipx install git+https://github.com/raestrada/[email protected].1-alpha1</code> | ||
<code>pipx install git+https://github.com/raestrada/[email protected].2-alpha1</code> | ||
</div> | ||
</section> | ||
|
||
|
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,37 +1,45 @@ | ||
GENERAL_OUTLINE_PROMPT_NEW = """ | ||
Create a general outline for the book {book_name} based on this prompt: {prompt}. | ||
Focus on general outline, then I will request help on plot-points, character-summary and chapt-synopsis. | ||
""" | ||
|
||
GENERAL_OUTLINE_PROMPT_REFINE = """ | ||
Refine and evolve the content based on this prompt: {prompt}. | ||
Focus on improving the structure and flow of the outline, ensuring clarity and coherence throughout. | ||
Focus on general outline, then I will request help on plot-points, character-summary and chapt-synopsis. | ||
""" | ||
|
||
CHARACTER_SUMMARY_PROMPT_NEW = """ | ||
Generate a detailed character summary for the book {book_name} based on this prompt: {prompt}. | ||
Define most important characters startign for the main characters and continuing with secondaries. | ||
Focus on character-summary, then I will request help on plot-points, general-outline and chapt-synopsis. | ||
""" | ||
|
||
CHARACTER_SUMMARY_PROMPT_REFINE = """ | ||
Refine and evolve the content based on this prompt: {prompt}. | ||
Enhance character depth, motivation, and consistency with the overall narrative. | ||
Focus on character-summary, then I will request help on plot-points, general-outline and chapt-synopsis. | ||
""" | ||
|
||
PLOT_POINTS_PROMPT_NEW = """ | ||
Generate the main plot points for the book {book_name} based on this prompt: {prompt}. | ||
Focus on plot-points, then I will request help on plot-points, character-summary and chapt-synopsis. | ||
""" | ||
|
||
PLOT_POINTS_PROMPT_REFINE = """ | ||
Refine and evolve the content based on this prompt: {prompt}. | ||
Ensure logical progression between plot points and strengthen the links between key events. | ||
Focus on plot-points, then I will request help on plot-points, character-summary and chapt-synopsis. | ||
""" | ||
|
||
CHAPTER_SYNOPSIS_PROMPT_NEW = """ | ||
Generate a chapter-by-chapter synopsis for the book {book_name} based on this prompt: {prompt}. | ||
List all chapters and its synopsis. | ||
Focus on chapter-synopsis, then I will request help on gemneral-outline, character-summary and chapt-synopsis. | ||
""" | ||
|
||
CHAPTER_SYNOPSIS_PROMPT_REFINE = """ | ||
Refine and evolve the content based on this prompt: {prompt}. | ||
Focus on improving chapter summaries by clarifying pivotal moments and enhancing narrative tension. | ||
Focus on chapter-synopsis, then I will request help on gemneral-outline, character-summary and chapt-synopsis. | ||
""" |
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