alessandro trinca tornidor
commited on
Commit
·
38e3f0b
1
Parent(s):
2ee4481
test: update test cases because of css changes, add assertions about word output
Browse files- static/playwright.config.ts +1 -1
- static/tests/test-helper.ts +18 -8
- static/tests/test-word-frequency-1.spec.ts +8 -4
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-1-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-10-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-11-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-2-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-3-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-4-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-5-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-6-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-7-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-8-chromium-linux.png +2 -2
- static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-9-chromium-linux.png +2 -2
- tests/events/llm_generated_story_1.json +1 -0
static/playwright.config.ts
CHANGED
|
@@ -26,7 +26,7 @@ export default defineConfig({
|
|
| 26 |
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
| 27 |
use: {
|
| 28 |
/* Base URL to use in actions like `await page.goto('/')`. */
|
| 29 |
-
baseURL: 'http://localhost:
|
| 30 |
browserName: "chromium",
|
| 31 |
viewport: { width: 1600, height: 1200 },
|
| 32 |
ignoreHTTPSErrors: true,
|
|
|
|
| 26 |
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
| 27 |
use: {
|
| 28 |
/* Base URL to use in actions like `await page.goto('/')`. */
|
| 29 |
+
baseURL: 'http://localhost:7860',
|
| 30 |
browserName: "chromium",
|
| 31 |
viewport: { width: 1600, height: 1200 },
|
| 32 |
ignoreHTTPSErrors: true,
|
static/tests/test-helper.ts
CHANGED
|
@@ -3,7 +3,8 @@ import { Page, expect } from '@playwright/test';
|
|
| 3 |
|
| 4 |
interface CellObject {
|
| 5 |
table: number
|
| 6 |
-
row: number
|
|
|
|
| 7 |
}
|
| 8 |
|
| 9 |
export const fileReader = async (filePath: string) => {
|
|
@@ -19,11 +20,20 @@ interface CellObject {
|
|
| 19 |
|
| 20 |
export const loopOverTablesAndClickOnUrls = async (page: Page, cellObj: CellObject, timeout=50) => {
|
| 21 |
let cellLabel = `id-table-${cellObj["table"]}-row-${cellObj["row"]}-nth`
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
}
|
|
|
|
| 3 |
|
| 4 |
interface CellObject {
|
| 5 |
table: number
|
| 6 |
+
row: number,
|
| 7 |
+
word: string
|
| 8 |
}
|
| 9 |
|
| 10 |
export const fileReader = async (filePath: string) => {
|
|
|
|
| 20 |
|
| 21 |
export const loopOverTablesAndClickOnUrls = async (page: Page, cellObj: CellObject, timeout=50) => {
|
| 22 |
let cellLabel = `id-table-${cellObj["table"]}-row-${cellObj["row"]}-nth`
|
| 23 |
+
try {
|
| 24 |
+
console.log(`current aria-label:${cellLabel}...`)
|
| 25 |
+
console.log(`current cell content: '${cellLabel}'...`)
|
| 26 |
+
let currentCellElement = page.getByLabel(cellLabel).locator('a')
|
| 27 |
+
console.log("currentCellElement:", currentCellElement, "#")
|
| 28 |
+
let currentInnerText = await currentCellElement.innerText()
|
| 29 |
+
console.log(`currentCellElement::innerText: '${currentInnerText}'`)
|
| 30 |
+
expect(currentInnerText).toBe(cellObj.word)
|
| 31 |
+
await currentCellElement.click({timeout: 1000});
|
| 32 |
+
await page.waitForTimeout(timeout)
|
| 33 |
+
await expect(page.getByLabel('editor')).toHaveScreenshot(/** {stylePath: `${import.meta.dirname}/../index.css`} */);
|
| 34 |
+
} catch (err) {
|
| 35 |
+
console.log("cellLabel:", cellLabel, "#")
|
| 36 |
+
console.log("err:", err, "#")
|
| 37 |
+
throw err
|
| 38 |
+
}
|
| 39 |
}
|
static/tests/test-word-frequency-1.spec.ts
CHANGED
|
@@ -16,7 +16,10 @@ test(`test: word frequency (short text input)`, async ({ page }) => {
|
|
| 16 |
await expect(table0).toMatchAriaSnapshot(dataTable0)
|
| 17 |
await expect(table13).toMatchAriaSnapshot(dataTableLast)
|
| 18 |
|
| 19 |
-
let cellArray1 = [
|
|
|
|
|
|
|
|
|
|
| 20 |
for (let idx in cellArray1) {
|
| 21 |
await loopOverTablesAndClickOnUrls(page, cellArray1[idx], 0)
|
| 22 |
}
|
|
@@ -42,9 +45,10 @@ test(`test: word frequency (long, multi line text input)`, async ({ page }) => {
|
|
| 42 |
|
| 43 |
console.log("try with a new array of tables/rows...")
|
| 44 |
let cellArray2 = [
|
| 45 |
-
{ table: 1, row: 1 }, { table: 1, row: 2
|
| 46 |
-
{ table: 2, row:
|
| 47 |
-
{ table:
|
|
|
|
| 48 |
]
|
| 49 |
for (let idx in cellArray2) {
|
| 50 |
await loopOverTablesAndClickOnUrls(page, cellArray2[idx], 100)
|
|
|
|
| 16 |
await expect(table0).toMatchAriaSnapshot(dataTable0)
|
| 17 |
await expect(table13).toMatchAriaSnapshot(dataTableLast)
|
| 18 |
|
| 19 |
+
let cellArray1 = [
|
| 20 |
+
{ table: 0, row: 0, word: "there" }, { table: 0, row: 1, word: "There" },
|
| 21 |
+
{ table: 5, row: 0, word: "pasties" }, { table: 13, row: 0, word: "table" }
|
| 22 |
+
]
|
| 23 |
for (let idx in cellArray1) {
|
| 24 |
await loopOverTablesAndClickOnUrls(page, cellArray1[idx], 0)
|
| 25 |
}
|
|
|
|
| 45 |
|
| 46 |
console.log("try with a new array of tables/rows...")
|
| 47 |
let cellArray2 = [
|
| 48 |
+
{ table: 1, row: 1, word: "upon" }, { table: 1, row: 2, word: "upon" }, { table: 1, row: 3, word: "upon" },
|
| 49 |
+
{ table: 2, row: 0, word: "time" }, { table: 2, row: 1, word: "time" }, { table: 2, row: 2, word: "time" },
|
| 50 |
+
{ table: 0, row: 1, word: "Once" }, { table: 8, row: 1, word: "young" }, { table: 8, row: 4, word: "young" },
|
| 51 |
+
{ table: 737, row: 1, word: "Isst" }, { table: 737, row: 3, word: "Isst" }
|
| 52 |
]
|
| 53 |
for (let idx in cellArray2) {
|
| 54 |
await loopOverTablesAndClickOnUrls(page, cellArray2[idx], 100)
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-1-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-10-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-11-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-2-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-3-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-4-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-5-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-6-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-7-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-8-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
static/tests/test-word-frequency-1.spec.ts-snapshots/test-word-frequency-long-multi-line-text-input-9-chromium-linux.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
tests/events/llm_generated_story_1.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"gamestarted":true,"prompt":"Once upon a time, in the kingdom of Elwoodia, there lived a young and wise young Princess named Isabella. She loved nothing more than to explore the world around her and experience new things. One day, she set off on an adventure to find out about the mysterious and enchanting forest beyond the village gate. ","memory":"","authorsnote":"","anotetemplate":"[Author's note: <|>]","actions":["\n\nAs she journeyed through the woods, Isabella stumbled upon a large clearing where she saw a small group of woodland creatures gathered around something. Curious, she went over to take a look. There she noticed a large, red apple lying across the ground. It was so unusual that she had never seen anything like it before; its shape was round but oval, and it was larger than any fruit she'd ever seen.","\n\nThe creatures surrounding the apple moved aside to let Isabella get a closer look. As she came closer, she saw a tiny fairy perched on top of the apple. The fairy flew to her and spoke in a soft voice.","\n\n\"Hello, my name is Narnia, and I am from the land of Narnia. What brings you here?\" the fairy asked.","\n\nIsabella smiled and replied, \"I'm exploring the forest and discovered this beautiful place. What's going on here?\"","\n\n\"Oh,\" the fairy said. \"We're having a small gathering of fairies from all over the forest. We are here to celebrate the arrival of our new leader.\"","\n\nIsabella was taken aback by the news. She hadn't realized that there was such a thing as a king for the creatures of the forest. She had heard of kings before, but she'd never met one.","\n\n\"What will become of the forest now?\" she asked.","\n\nThe fairy looked at her and said, \"Our new king will be arriving soon, and he needs someone to help him with his duties. Does anyone know of a young lady who could be a good fit for this role?","\n\nIsabella thought about it for a moment. She knew she had no official title, but she was wise and strong. She knew she would be able to fulfill the responsibilities of the new King of the Forest.","\n\nAs Isabella accepted the invitation to become the next King of the Forest, Narnia smiled. He thanked her and told her what she needed to do to become the next King of the Forest.","\n\nIsabella's journey in finding her new home had begun. She found an old tree near the river that seemed like a perfect spot to call her own. With every step, Isabella felt her heart beat in rhythm with her newfound power and responsibility. She felt her connection to the forest growing stronger with each passing day.","\n\nOne day, Isabella came across a young girl who seemed lost. The girl introduced herself as Laura, and she explained that she had lost her way while walking through the forest. Isabella knew exactly how she felt and offered to take Laura into her home.","\n\nThe two girls quickly became close, and Isabella soon learned that Laura was also the daughter of the old man who lived in the village. Isabella's heart ached for the girl, and she wanted to make sure she stayed safe.","\n\n\"If you'd ever need help, just let me know,\" Isabella said to Laura. \"I will be here for you.\"","\n\nThe two girls were inseparable ever since they first met. But one day, when Isabella went out to collect wood, she heard a loud noise coming from the village. Isabella ran back to the village to find Laura had been kidnapped by a group of men.","\n\nIsabella was determined to save her friend, so she set off on a mission to find them. She kept a close eye on the village and, eventually, found herself face-to-face with the kidnappers. Isabella knew she had to act fast if she wanted to save Laura.","\n\nShe used her knowledge of the village to her advantage. She was quick in her thinking and could come up with a plan in no time at all. She asked for the men's cooperation and, after the men agreed, Isabella proposed an agreement between them and her.","\n\nShe would allow the men to keep their freedom in exchange for their loyalty and protection. Isabella hoped this agreement would end the war between them and ensure their safety. The men agreed and, soon after, Isabella's plan to protect Laura was put into action.","\n\nIsabella ensured Laura's safety by ensuring that her whereabouts were known to the people she needed. Isabella also made sure that Laura was never alone in the forest. Whenever she went out to collect wood, Isabella made it a habit to check on Laura's safety. ","\n\nOn one of these occasions, Isabella noticed something strange. While checking on Laura's safety, Isabella noticed that Laura had been eating a piece of fruit every morning before heading out. Isabella quickly realized that this strange behavior was evidence of Laura's mental and emotional well being.","\n\nIsabella wondered why Laura seemed to be so attached to the piece of fruit. Was it because she enjoyed eating it? Was it because it provided her with sustenance? Or was it something else entirely? After some careful thought, Isabella concluded that the answer lay in Laura's mind, not her body.","\n\nIsabella went to find Laura and asked her about her strange habit. Laura explained that the fruit gave her strength and courage. In other words, it provided her with the ability to fight for what she believed in. Isabella understood now: Laura's actions came from a place of love and loyalty. ","\n\nIsabella realized that Laura's situation was in danger if she didn't do something soon. She decided to take matters into her own hands and called for a meeting at the village square the following day. At the meeting, Isabella presented her theory that Laura' behavior originated from her desire to protect the forest and its inhabitants. Everyone agreed that they needed to do whatever it took to save Laura.","\n\nThe next day, Isabella, Laura, and all the villagers set out to the forest with tools like shovels and shovel-like objects that were necessary to clear the way for new life. They also brought along a few things to combat fatigue, including oranges and bananas. The day went by quickly as the group worked together to clear away the trees. ","\n\nAt the end of the day, Isabella asked Laura about her eating habits. Laura had grown up eating the same thing every day, but she found that the new nutrition was giving her energy and strength. Isabella realized that Laura had been on a diet which was helping her to stay healthy and energized.","\n\nThe surprise came when Isabella noticed that Laura's diet was so different from everyone else’s. It seemed that Laura had been eating an apple or a piece of fruit each morning for years, without fail. Isabella couldn't help but marvel at how lucky Laura was to have such dedication to protecting her health.","\n\nWhen the day came to an end, Isabella gave a speech about why she was so passionate about preserving the forest. She talked about the importance of taking care of our bodies, whether through diet or exercise, and reminded everyone about the importance of keeping their daily food intake regular. ","\n\nWhen the dinner hour came, Isabella sat down with Laura to enjoy the meal that she had prepared. As they ate, Isabella noted that Laura's dish was more flavorful and had more variety than the other dishes served by others in the village. This showed Isabella that Laura cared deeply about her health. ","\n\nAfter dinner, the two shared stories. Isabella enjoyed Laura's company and thanked her for being such a great companion. The two made plans to meet again soon, to catch up and share more stories. ","\n\nThe next day, Isabella felt confident that she had done her part in helping to protect the forest. She was grateful that she and Laura had been able to save the day. ","\n\nIsabella, now feeling fulfilled with the work she accomplished, decided to spend her afternoon walking around the village. As she strolled through the streets, she noticed how clean and quiet everything looked. ","\n\nShe stopped in front of one of the old buildings that housed the local library. It was a brick building, surrounded by trees and grass, but it had an air of sophistication and grandeur. Isabella walked inside, and she instantly noticed something strange; the walls were covered with colorful murals and graffiti. ","\n\nIt seemed that someone had taken it upon themselves to paint these wonderful images. Isabella marveled at the creativity and skill involved. She felt inspired and wanted to do something similar. ","\n\nMeanwhile, across town, Laura was checking out some of the local bookstores. As she perused the shelves, she saw a few books on interior design. She picked them up and began flipping through them, looking for ideas for her home. ","\n\nSuddenly, there was a loud thud outside. Isabella rushed out and was shocked at what she saw. In the middle of the village square stood a giant painting of a tree, complete with leaves, branches, and bark. It looked as if someone had carefully painted each detail by hand. ","\n\nIsabella recognized the artist right away. It was her neighbor Jake, who had been creating beautiful art pieces all over town for weeks. ","\n\nThe two women met in the middle of the street, and without saying anything, they both knew what the other was thinking. They both realized that their efforts had brought beauty to the world. ","\n\n Isabella had never thought much about painting or gardening before, but now she was passionate about it. ","\n\nLaura smiled, feeling proud of her work. She had found inspiration from the books she'd read, and she felt that she had contributed something to the world. ","\n\nAs Isabella and Laura talked about their accomplishments, a third woman, named Sarah, walked up and asked what was going on. ","\n\nAfter learning about their projects, Sarah asked if she could help. Isabella agreed since she was an experienced gardener, while Laura offered her knowledge of interior design. ","\n\nThe three friends spent the next few days working together, planting trees, spreading mulch, and creating murals. They discovered that they were able to accomplish more when they worked together, and that the community appreciated their hard work. ","\n\nThis project taught them that no matter how small your contribution is, you can still make a difference in the world. ","\n\nWhen the sun began setting, Isabella, Laura, and Sarah sat back and admired the beautiful work they had created. The trees were planted, the walls were covered with colorful art, and the community had come together. Isabella asked Laura and Sarah to be her gardening and interior design experts because she had learned so much. ","\n\nLooking around at the trees and the artwork, Laura said, \"We created something special here today.\" ","\n\nSarah nodded, knowing that they had accomplished great things by working together. ","\n\nFrom that day forward, Isabella, Laura, and Sarah stayed connected and used their talents to help the community grow. In fact they had planted 50 trees in only one week, as this was just the beginning of their journey.","\n\nTwo years later a traveller arrived within Isabella's village asking for help. She explained that her village had been suffering from an epidemic, and needed someone to save them. ","\n\nIsabella, Laura, and Sarah remembered what happened two years ago when they worked together on their tree-planting project and agreed to come up with a solution. ","\n\nThey thought long and hard about how to solve the epidemic problem, then finally came up with a plan. ","\n\nThe three friends decided to use their skills to build a hospital to cure those who had fallen ill from the epidemic. ","\n\nLaura offered to design the hospital's interiors while Isabella would take care of the landscaping. ","\n\nSarah volunteered to coordinate the building and plant flowers in the surrounding area. ","\n\nOnce the hospital was complete, Laura stepped inside, looked around, and exclaimed ”I can't believe we did it!” ","\n\nIsabella nodded, \"When you have two people working towards one goal you can accomplish great things. I'm glad our connection has helped us to save the village.\"","\n\nShe could not contain her excitement and she smiled from ear to ear.","\n\n\"We've achieved something amazing,\" she said. ","\n\n\"I'm so happy we were able to make such a difference,\" Laura replied. ","\n\n\nThe three friends went back home, feeling proud of themselves for helping to save the village.","\n\nAs they watched the sun set behind the mountains, Isla asked Laura, \"What have you learned from this experience?\" ","\n\nLaura took a moment to think before she answered. ","\n\n\"I' m grateful that we had each other and that we worked together like this, with two people in the same room can achieve so much,\" she said. ","\n\nWith one last look at the sky, they walked back home with a newfound connection.","\n\nIsabella's eyes lit up as she looked around her village. She smiled and pointed out her home. ","\n\nShe quickly explained to the group how Isabella and her family had been living in the village for generations. The rest of the villagers knew Isabella as a very caring and kind person. They were always willing to help those in need. ","\n\nIsabella led her group of close friends inside and told them about her family's history. ","\n\nShe shared stories of Isabella's grandmother, who had planted wildflowers all over the village. Isabella's grandfather had built bridges between the houses and provided food to those in need. ","\n\nAt first, everyone was confused and didn't understand what Isabella had just described. But then, Isabella revealed, \"We are a village of heroes!\" ","\n\nThe group gasped and stood up. Everyone was taken aback by the announcement. ","\n\nAs a surprise to the others, Isabella continued, \"We're not here to tell stories. We're here to help. I'm asking if anyone wants to join me in planting flowers in the nearby area.\" ","\n\nThe group looked at each other and nodded their heads in agreement. They all wanted to help the village and the environment.","\n\nAfter they collected the necessary tools, Isabella and her friends set off on their mission. Isabella and her friends picked wildflowers from the fields and planted them alongside the river that ran near their village. ","\n\nThey carefully watered and cared for the flowers until they bloomed. With the help of the locals, Isabella and her friends were able to beautify the entire village. ","\n\nWhen Isabella' group returned to the village, they were welcomed with joy and laughter. ","\n\nAs the days passed by, Isabella noticed something strange growing in the nearby forest. She couldn't quite place what it was, so she decided to take a closer look. After careful investigation, Isabella discovered what was causing the mystery - a small, yet powerful plant called the \"magic leaf\". ","\n\nIsabella knew that this mysterious plant was one of nature's greatest gifts, as it had the ability to provide new life to any living organism around it. She quickly realized that this plant could be the answer to many of the world's problems. ","\n\nExcited by the discovery, Isabella set out on her own mission. She gathered a team of scientists, biologists, and botanists to join her in studying the magic leaf and its effects on the environment. ","\n\nTogether, they observed how the leaf interacted with its surroundings and determined its effects on the local ecosystem. They studied how the leaves reacted when exposed to different conditions and worked together to make sure that the local environment would remain healthy. ","\n\nTheir hard work paid off - soon the area surrounding the forest flourished with new life. The forest became an oasis of beauty and protection, providing shelter, food, and clean air for those who visited. As the months went by, more and more people began to find the same amazing benefits in their local parks and public spaces. ","\n\nIsabella knew that she had stumbled upon something truly special. Her discovery was now being shared with the rest of the world, and Isabella's efforts were celebrated and lauded by many. ","\n\nIt was a long and difficult journey, but Isabella had made sure that her discoveries would last long after she was gone. She wanted to ensure that future generations would also benefit from the magic leaf. In honor of her legacy, the magic leaf was named after her.","\n\nThe days seemed to fly by as Isabella and her team continued their mission. The research took them further into uncharted territory, exploring the unknown depths of the local environment and discovering new surprises at every turn. ","\n\nThe group encountered all kinds of creatures along the way, from tiny insects to massive mammals. The scientists worked tirelessly to protect these animals while still making sure that they weren't harming the environment. ","\n\nOne day, Isabella and her colleagues came across a rare species of plant that showed incredible promise - it seemed to be immune to the diseases and pests that normally plagued the area. It was a breakthrough, and Isabella knew that this discovery could revolutionize medicine. She had found a way to use the plant to create treatments for illnesses caused by things like AIDS. ","\n\nWith her newfound knowledge, Isabella set out on a mission to help others suffering from these illnesses. She and her team traveled across the country, working with doctors, medical professionals, and patients to spread awareness about the importance of finding cures for AIDS. They even managed to secure funding from the government to build research labs and support centers where those affected could receive much needed treatment. ","\n\nThe following years were filled with success. Isabella's efforts towards curing AIDS and other diseases had shown great results in protecting vulnerable populations. The work done by Isabella and her colleagues was creating a healthier, more sustainable future for everyone. ","\n\nThe following year, Isabella made an unexpected discovery. One of the people she had been helping had recently contracted HIV/AIDS, but miraculously survived and recovered. It turns out that the person had come to her in time to get the new vaccine that the National Institutes of Health (NIH) had just released. ","\n\nThis experience was a testament to the effectiveness of Isabella’s efforts. With the proper resources and guidance, it is possible to fight back against the dangerous effects of HIV/AIDS and AIDS-related illnesses. And as her mission continued, Isabella looked forward to seeing further progress in the coming years. ","\n\nRyan, Isabella's son, decided one day that he wanted to follow his mother's path towards helping others. After studying science for many years, Ryan eventually found himself at home, feeling lost. He thought long and hard about what could be done to help those affected by HIV/AIDS, and finally came up with an idea. ","\n\nRyan realized that the key to stopping the spread of HIV was to educate people on how to prevent its transmission. To do this, he began traveling around the country, spreading awareness about the virus and how it spreads. ","\n\nRyan's travels were going well until one day, he met a young girl who had contracted HIV after being exposed to it through unprotected sex. She revealed to him that she never knew much about HIV or AIDS, but that she did know about vaccines – something her doctor had mentioned during a routine checkup. ","\n\nThe news shook Ryan to his core. He realized that if more people weren't getting vaccinated, then the effects of HIV would continue to spread. ","\n\nIt seemed that the only way to make things better was to take matters into his own hands. So, he quickly got to work. ","\n\nFirst, he researched existing vaccines and discovered a few of them could potentially protect against HIV as well. He took the research with him and used it to create a vaccine he called the Isabella's son travel (Isst). The Isst vaccine was a special kind – it was created from his travels, research, and knowledge. ","\n\nWith the help of his parents, Ryan continued to study the Isst vaccine and eventually developed a successful vaccine. It worked so well that the Isst vaccine became the standard for those looking to protect themselves from HIV/AIDS. ","\n\nThe Isst vaccine was now available to anyone in need of protection, regardless of their destination or origin. Thanks to Ryan's hard work, the spread of HIV/AIDS had slowed significantly, and many people were able to live healthier lives. ","\n\nIn the end, it was all because of Ryan'a son travel. He had done something extraordinary – following in his mother's footsteps and taking action to change the world."],"actions_metadata":{"0":{"Selected Text":"\n\nAs she journeyed through the woods, Isabella stumbled upon a large clearing where she saw a small group of woodland creatures gathered around something. Curious, she went over to take a look. There she noticed a large, red apple lying across the ground. It was so unusual that she had never seen anything like it before; its shape was round but oval, and it was larger than any fruit she'd ever seen.","Alternative Text":[]},"1":{"Selected Text":"\n\nThe creatures surrounding the apple moved aside to let Isabella get a closer look. As she came closer, she saw a tiny fairy perched on top of the apple. The fairy flew to her and spoke in a soft voice.","Alternative Text":[]},"2":{"Selected Text":"\n\n\"Hello, my name is Narnia, and I am from the land of Narnia. What brings you here?\" the fairy asked.","Alternative Text":[]},"3":{"Selected Text":"\n\nIsabella smiled and replied, \"I'm exploring the forest and discovered this beautiful place. What's going on here?\"","Alternative Text":[]},"4":{"Selected Text":"\n\n\"Oh,\" the fairy said. \"We're having a small gathering of fairies from all over the forest. We are here to celebrate the arrival of our new leader.\"","Alternative Text":[]},"5":{"Selected Text":"\n\nIsabella was taken aback by the news. She hadn't realized that there was such a thing as a king for the creatures of the forest. She had heard of kings before, but she'd never met one.","Alternative Text":[]},"6":{"Selected Text":"\n\n\"What will become of the forest now?\" she asked.","Alternative Text":[]},"7":{"Selected Text":"\n\nThe fairy looked at her and said, \"Our new king will be arriving soon, and he needs someone to help him with his duties. Does anyone know of a young lady who could be a good fit for this role?","Alternative Text":[]},"8":{"Selected Text":"\n\nIsabella thought about it for a moment. She knew she had no official title, but she was wise and strong. She knew she would be able to fulfill the responsibilities of the new King of the Forest.","Alternative Text":[]},"9":{"Selected Text":"\n\nAs Isabella accepted the invitation to become the next King of the Forest, Narnia smiled. He thanked her and told her what she needed to do to become the next King of the Forest.","Alternative Text":[]},"10":{"Selected Text":"\n\nIsabella's journey in finding her new home had begun. She found an old tree near the river that seemed like a perfect spot to call her own. With every step, Isabella felt her heart beat in rhythm with her newfound power and responsibility. She felt her connection to the forest growing stronger with each passing day.","Alternative Text":[]},"11":{"Selected Text":"\n\nOne day, Isabella came across a young girl who seemed lost. The girl introduced herself as Laura, and she explained that she had lost her way while walking through the forest. Isabella knew exactly how she felt and offered to take Laura into her home.","Alternative Text":[]},"12":{"Selected Text":"\n\nThe two girls quickly became close, and Isabella soon learned that Laura was also the daughter of the old man who lived in the village. Isabella's heart ached for the girl, and she wanted to make sure she stayed safe.","Alternative Text":[]},"13":{"Selected Text":"\n\n\"If you'd ever need help, just let me know,\" Isabella said to Laura. \"I will be here for you.\"","Alternative Text":[]},"14":{"Selected Text":"\n\nThe two girls were inseparable ever since they first met. But one day, when Isabella went out to collect wood, she heard a loud noise coming from the village. Isabella ran back to the village to find Laura had been kidnapped by a group of men.","Alternative Text":[]},"15":{"Selected Text":"\n\nIsabella was determined to save her friend, so she set off on a mission to find them. She kept a close eye on the village and, eventually, found herself face-to-face with the kidnappers. Isabella knew she had to act fast if she wanted to save Laura.","Alternative Text":[]},"16":{"Selected Text":"\n\nShe used her knowledge of the village to her advantage. She was quick in her thinking and could come up with a plan in no time at all. She asked for the men's cooperation and, after the men agreed, Isabella proposed an agreement between them and her.","Alternative Text":[]},"17":{"Selected Text":"\n\nShe would allow the men to keep their freedom in exchange for their loyalty and protection. Isabella hoped this agreement would end the war between them and ensure their safety. The men agreed and, soon after, Isabella's plan to protect Laura was put into action.","Alternative Text":[]},"18":{"Selected Text":"\n\nIsabella ensured Laura's safety by ensuring that her whereabouts were known to the people she needed. Isabella also made sure that Laura was never alone in the forest. Whenever she went out to collect wood, Isabella made it a habit to check on Laura's safety. ","Alternative Text":[]},"19":{"Selected Text":"\n\nOn one of these occasions, Isabella noticed something strange. While checking on Laura's safety, Isabella noticed that Laura had been eating a piece of fruit every morning before heading out. Isabella quickly realized that this strange behavior was evidence of Laura's mental and emotional well being.","Alternative Text":[]},"20":{"Selected Text":"\n\nIsabella wondered why Laura seemed to be so attached to the piece of fruit. Was it because she enjoyed eating it? Was it because it provided her with sustenance? Or was it something else entirely? After some careful thought, Isabella concluded that the answer lay in Laura's mind, not her body.","Alternative Text":[]},"21":{"Selected Text":"\n\nIsabella went to find Laura and asked her about her strange habit. Laura explained that the fruit gave her strength and courage. In other words, it provided her with the ability to fight for what she believed in. Isabella understood now: Laura's actions came from a place of love and loyalty. ","Alternative Text":[]},"22":{"Selected Text":"\n\nIsabella realized that Laura's situation was in danger if she didn't do something soon. She decided to take matters into her own hands and called for a meeting at the village square the following day. At the meeting, Isabella presented her theory that Laura' behavior originated from her desire to protect the forest and its inhabitants. Everyone agreed that they needed to do whatever it took to save Laura.","Alternative Text":[]},"23":{"Selected Text":"\n\nThe next day, Isabella, Laura, and all the villagers set out to the forest with tools like shovels and shovel-like objects that were necessary to clear the way for new life. They also brought along a few things to combat fatigue, including oranges and bananas. The day went by quickly as the group worked together to clear away the trees. ","Alternative Text":[]},"24":{"Selected Text":"\n\nAt the end of the day, Isabella asked Laura about her eating habits. Laura had grown up eating the same thing every day, but she found that the new nutrition was giving her energy and strength. Isabella realized that Laura had been on a diet which was helping her to stay healthy and energized.","Alternative Text":[]},"25":{"Selected Text":"\n\nThe surprise came when Isabella noticed that Laura's diet was so different from everyone else’s. It seemed that Laura had been eating an apple or a piece of fruit each morning for years, without fail. Isabella couldn't help but marvel at how lucky Laura was to have such dedication to protecting her health.","Alternative Text":[]},"26":{"Selected Text":"\n\nWhen the day came to an end, Isabella gave a speech about why she was so passionate about preserving the forest. She talked about the importance of taking care of our bodies, whether through diet or exercise, and reminded everyone about the importance of keeping their daily food intake regular. ","Alternative Text":[]},"27":{"Selected Text":"\n\nWhen the dinner hour came, Isabella sat down with Laura to enjoy the meal that she had prepared. As they ate, Isabella noted that Laura's dish was more flavorful and had more variety than the other dishes served by others in the village. This showed Isabella that Laura cared deeply about her health. ","Alternative Text":[]},"28":{"Selected Text":"\n\nAfter dinner, the two shared stories. Isabella enjoyed Laura's company and thanked her for being such a great companion. The two made plans to meet again soon, to catch up and share more stories. ","Alternative Text":[]},"29":{"Selected Text":"\n\nThe next day, Isabella felt confident that she had done her part in helping to protect the forest. She was grateful that she and Laura had been able to save the day. ","Alternative Text":[]},"30":{"Selected Text":"\n\nIsabella, now feeling fulfilled with the work she accomplished, decided to spend her afternoon walking around the village. As she strolled through the streets, she noticed how clean and quiet everything looked. ","Alternative Text":[]},"31":{"Selected Text":"\n\nShe stopped in front of one of the old buildings that housed the local library. It was a brick building, surrounded by trees and grass, but it had an air of sophistication and grandeur. Isabella walked inside, and she instantly noticed something strange; the walls were covered with colorful murals and graffiti. ","Alternative Text":[]},"32":{"Selected Text":"\n\nIt seemed that someone had taken it upon themselves to paint these wonderful images. Isabella marveled at the creativity and skill involved. She felt inspired and wanted to do something similar. ","Alternative Text":[]},"33":{"Selected Text":"\n\nMeanwhile, across town, Laura was checking out some of the local bookstores. As she perused the shelves, she saw a few books on interior design. She picked them up and began flipping through them, looking for ideas for her home. ","Alternative Text":[]},"34":{"Selected Text":"\n\nSuddenly, there was a loud thud outside. Isabella rushed out and was shocked at what she saw. In the middle of the village square stood a giant painting of a tree, complete with leaves, branches, and bark. It looked as if someone had carefully painted each detail by hand. ","Alternative Text":[]},"35":{"Selected Text":"\n\nIsabella recognized the artist right away. It was her neighbor Jake, who had been creating beautiful art pieces all over town for weeks. ","Alternative Text":[]},"36":{"Selected Text":"\n\nThe two women met in the middle of the street, and without saying anything, they both knew what the other was thinking. They both realized that their efforts had brought beauty to the world. ","Alternative Text":[]},"37":{"Selected Text":"\n\n Isabella had never thought much about painting or gardening before, but now she was passionate about it. ","Alternative Text":[]},"38":{"Selected Text":"\n\nLaura smiled, feeling proud of her work. She had found inspiration from the books she'd read, and she felt that she had contributed something to the world. ","Alternative Text":[]},"39":{"Selected Text":"\n\nAs Isabella and Laura talked about their accomplishments, a third woman, named Sarah, walked up and asked what was going on. ","Alternative Text":[]},"40":{"Selected Text":"\n\nAfter learning about their projects, Sarah asked if she could help. Isabella agreed since she was an experienced gardener, while Laura offered her knowledge of interior design. ","Alternative Text":[]},"41":{"Selected Text":"\n\nThe three friends spent the next few days working together, planting trees, spreading mulch, and creating murals. They discovered that they were able to accomplish more when they worked together, and that the community appreciated their hard work. ","Alternative Text":[]},"42":{"Selected Text":"\n\nThis project taught them that no matter how small your contribution is, you can still make a difference in the world. ","Alternative Text":[]},"43":{"Selected Text":"\n\nWhen the sun began setting, Isabella, Laura, and Sarah sat back and admired the beautiful work they had created. The trees were planted, the walls were covered with colorful art, and the community had come together. Isabella asked Laura and Sarah to be her gardening and interior design experts because she had learned so much. ","Alternative Text":[]},"44":{"Selected Text":"\n\nLooking around at the trees and the artwork, Laura said, \"We created something special here today.\" ","Alternative Text":[]},"45":{"Selected Text":"\n\nSarah nodded, knowing that they had accomplished great things by working together. ","Alternative Text":[]},"46":{"Selected Text":"\n\nFrom that day forward, Isabella, Laura, and Sarah stayed connected and used their talents to help the community grow. In fact they had planted 50 trees in only one week, as this was just the beginning of their journey.","Alternative Text":[]},"47":{"Selected Text":"\n\nTwo years later a traveller arrived within Isabella's village asking for help. She explained that her village had been suffering from an epidemic, and needed someone to save them. ","Alternative Text":[]},"48":{"Selected Text":"\n\nIsabella, Laura, and Sarah remembered what happened two years ago when they worked together on their tree-planting project and agreed to come up with a solution. ","Alternative Text":[]},"49":{"Selected Text":"\n\nThey thought long and hard about how to solve the epidemic problem, then finally came up with a plan. ","Alternative Text":[]},"50":{"Selected Text":"\n\nThe three friends decided to use their skills to build a hospital to cure those who had fallen ill from the epidemic. ","Alternative Text":[]},"51":{"Selected Text":"\n\nLaura offered to design the hospital's interiors while Isabella would take care of the landscaping. ","Alternative Text":[]},"52":{"Selected Text":"\n\nSarah volunteered to coordinate the building and plant flowers in the surrounding area. ","Alternative Text":[]},"53":{"Selected Text":"\n\nOnce the hospital was complete, Laura stepped inside, looked around, and exclaimed ”I can't believe we did it!” ","Alternative Text":[]},"54":{"Selected Text":"\n\nIsabella nodded, \"When you have two people working towards one goal you can accomplish great things. I'm glad our connection has helped us to save the village.\"","Alternative Text":[]},"55":{"Selected Text":"\n\nShe could not contain her excitement and she smiled from ear to ear.","Alternative Text":[]},"56":{"Selected Text":"\n\n\"We've achieved something amazing,\" she said. ","Alternative Text":[]},"57":{"Selected Text":"\n\n\"I'm so happy we were able to make such a difference,\" Laura replied. ","Alternative Text":[]},"58":{"Selected Text":"\n\n\nThe three friends went back home, feeling proud of themselves for helping to save the village.","Alternative Text":[]},"59":{"Selected Text":"\n\nAs they watched the sun set behind the mountains, Isla asked Laura, \"What have you learned from this experience?\" ","Alternative Text":[]},"60":{"Selected Text":"\n\nLaura took a moment to think before she answered. ","Alternative Text":[]},"61":{"Selected Text":"\n\n\"I' m grateful that we had each other and that we worked together like this, with two people in the same room can achieve so much,\" she said. ","Alternative Text":[]},"62":{"Selected Text":"\n\nWith one last look at the sky, they walked back home with a newfound connection.","Alternative Text":[]},"63":{"Selected Text":"\n\nIsabella's eyes lit up as she looked around her village. She smiled and pointed out her home. ","Alternative Text":[]},"64":{"Selected Text":"\n\nShe quickly explained to the group how Isabella and her family had been living in the village for generations. The rest of the villagers knew Isabella as a very caring and kind person. They were always willing to help those in need. ","Alternative Text":[]},"65":{"Selected Text":"\n\nIsabella led her group of close friends inside and told them about her family's history. ","Alternative Text":[]},"66":{"Selected Text":"\n\nShe shared stories of Isabella's grandmother, who had planted wildflowers all over the village. Isabella's grandfather had built bridges between the houses and provided food to those in need. ","Alternative Text":[]},"67":{"Selected Text":"\n\nAt first, everyone was confused and didn't understand what Isabella had just described. But then, Isabella revealed, \"We are a village of heroes!\" ","Alternative Text":[]},"68":{"Selected Text":"\n\nThe group gasped and stood up. Everyone was taken aback by the announcement. ","Alternative Text":[]},"69":{"Selected Text":"\n\nAs a surprise to the others, Isabella continued, \"We're not here to tell stories. We're here to help. I'm asking if anyone wants to join me in planting flowers in the nearby area.\" ","Alternative Text":[]},"70":{"Selected Text":"\n\nThe group looked at each other and nodded their heads in agreement. They all wanted to help the village and the environment.","Alternative Text":[]},"71":{"Selected Text":"\n\nAfter they collected the necessary tools, Isabella and her friends set off on their mission. Isabella and her friends picked wildflowers from the fields and planted them alongside the river that ran near their village. ","Alternative Text":[]},"72":{"Selected Text":"\n\nThey carefully watered and cared for the flowers until they bloomed. With the help of the locals, Isabella and her friends were able to beautify the entire village. ","Alternative Text":[]},"73":{"Selected Text":"\n\nWhen Isabella' group returned to the village, they were welcomed with joy and laughter. ","Alternative Text":[]},"74":{"Selected Text":"\n\nAs the days passed by, Isabella noticed something strange growing in the nearby forest. She couldn't quite place what it was, so she decided to take a closer look. After careful investigation, Isabella discovered what was causing the mystery - a small, yet powerful plant called the \"magic leaf\". ","Alternative Text":[]},"75":{"Selected Text":"\n\nIsabella knew that this mysterious plant was one of nature's greatest gifts, as it had the ability to provide new life to any living organism around it. She quickly realized that this plant could be the answer to many of the world's problems. ","Alternative Text":[]},"76":{"Selected Text":"\n\nExcited by the discovery, Isabella set out on her own mission. She gathered a team of scientists, biologists, and botanists to join her in studying the magic leaf and its effects on the environment. ","Alternative Text":[]},"77":{"Selected Text":"\n\nTogether, they observed how the leaf interacted with its surroundings and determined its effects on the local ecosystem. They studied how the leaves reacted when exposed to different conditions and worked together to make sure that the local environment would remain healthy. ","Alternative Text":[]},"78":{"Selected Text":"\n\nTheir hard work paid off - soon the area surrounding the forest flourished with new life. The forest became an oasis of beauty and protection, providing shelter, food, and clean air for those who visited. As the months went by, more and more people began to find the same amazing benefits in their local parks and public spaces. ","Alternative Text":[]},"79":{"Selected Text":"\n\nIsabella knew that she had stumbled upon something truly special. Her discovery was now being shared with the rest of the world, and Isabella's efforts were celebrated and lauded by many. ","Alternative Text":[]},"80":{"Selected Text":"\n\nIt was a long and difficult journey, but Isabella had made sure that her discoveries would last long after she was gone. She wanted to ensure that future generations would also benefit from the magic leaf. In honor of her legacy, the magic leaf was named after her.","Alternative Text":[]},"81":{"Selected Text":"\n\nThe days seemed to fly by as Isabella and her team continued their mission. The research took them further into uncharted territory, exploring the unknown depths of the local environment and discovering new surprises at every turn. ","Alternative Text":[]},"82":{"Selected Text":"\n\nThe group encountered all kinds of creatures along the way, from tiny insects to massive mammals. The scientists worked tirelessly to protect these animals while still making sure that they weren't harming the environment. ","Alternative Text":[]},"83":{"Selected Text":"\n\nOne day, Isabella and her colleagues came across a rare species of plant that showed incredible promise - it seemed to be immune to the diseases and pests that normally plagued the area. It was a breakthrough, and Isabella knew that this discovery could revolutionize medicine. She had found a way to use the plant to create treatments for illnesses caused by things like AIDS. ","Alternative Text":[]},"84":{"Selected Text":"\n\nWith her newfound knowledge, Isabella set out on a mission to help others suffering from these illnesses. She and her team traveled across the country, working with doctors, medical professionals, and patients to spread awareness about the importance of finding cures for AIDS. They even managed to secure funding from the government to build research labs and support centers where those affected could receive much needed treatment. ","Alternative Text":[]},"85":{"Selected Text":"\n\nThe following years were filled with success. Isabella's efforts towards curing AIDS and other diseases had shown great results in protecting vulnerable populations. The work done by Isabella and her colleagues was creating a healthier, more sustainable future for everyone. ","Alternative Text":[]},"86":{"Selected Text":"\n\nThe following year, Isabella made an unexpected discovery. One of the people she had been helping had recently contracted HIV/AIDS, but miraculously survived and recovered. It turns out that the person had come to her in time to get the new vaccine that the National Institutes of Health (NIH) had just released. ","Alternative Text":[]},"87":{"Selected Text":"\n\nThis experience was a testament to the effectiveness of Isabella’s efforts. With the proper resources and guidance, it is possible to fight back against the dangerous effects of HIV/AIDS and AIDS-related illnesses. And as her mission continued, Isabella looked forward to seeing further progress in the coming years. ","Alternative Text":[]},"88":{"Selected Text":"\n\nRyan, Isabella's son, decided one day that he wanted to follow his mother's path towards helping others. After studying science for many years, Ryan eventually found himself at home, feeling lost. He thought long and hard about what could be done to help those affected by HIV/AIDS, and finally came up with an idea. ","Alternative Text":[]},"89":{"Selected Text":"\n\nRyan realized that the key to stopping the spread of HIV was to educate people on how to prevent its transmission. To do this, he began traveling around the country, spreading awareness about the virus and how it spreads. ","Alternative Text":[]},"90":{"Selected Text":"\n\nRyan's travels were going well until one day, he met a young girl who had contracted HIV after being exposed to it through unprotected sex. She revealed to him that she never knew much about HIV or AIDS, but that she did know about vaccines – something her doctor had mentioned during a routine checkup. ","Alternative Text":[]},"91":{"Selected Text":"\n\nThe news shook Ryan to his core. He realized that if more people weren't getting vaccinated, then the effects of HIV would continue to spread. ","Alternative Text":[]},"92":{"Selected Text":"\n\nIt seemed that the only way to make things better was to take matters into his own hands. So, he quickly got to work. ","Alternative Text":[]},"93":{"Selected Text":"\n\nFirst, he researched existing vaccines and discovered a few of them could potentially protect against HIV as well. He took the research with him and used it to create a vaccine he called the Isabella's son travel (Isst). The Isst vaccine was a special kind – it was created from his travels, research, and knowledge. ","Alternative Text":[]},"94":{"Selected Text":"\n\nWith the help of his parents, Ryan continued to study the Isst vaccine and eventually developed a successful vaccine. It worked so well that the Isst vaccine became the standard for those looking to protect themselves from HIV/AIDS. ","Alternative Text":[]},"95":{"Selected Text":"\n\nThe Isst vaccine was now available to anyone in need of protection, regardless of their destination or origin. Thanks to Ryan's hard work, the spread of HIV/AIDS had slowed significantly, and many people were able to live healthier lives. ","Alternative Text":[]},"96":{"Selected Text":"\n\nIn the end, it was all because of Ryan'a son travel. He had done something extraordinary – following in his mother's footsteps and taking action to change the world.","Alternative Text":[]}},"worldinfo":[],"wifolders_d":{},"wifolders_l":[],"completed_imgs_meta":{},"extrastopseq":"","tokenbans":"","anotestr":320,"wisearchdepth":0,"wiinsertlocation":0,"personal_notes":"","logitbiasdict":{},"regexreplace_data":[],"placeholder_tags_data":[],"documentdb_enabled":false,"documentdb_searchhistory":false,"documentdb_numresults":3,"documentdb_searchrange":300,"documentdb_chunksize":800,"documentdb_data":"","websearch_enabled":false,"websearch_multipass":false,"websearch_template":"","thinking_pattern":"<think>([\\s\\S]+?)</think>","thinking_action":1,"start_thinking_tag":"<think>","force_thinking_tag":false,"strip_past_thinking":true,"savedsettings":{"my_api_key":"0000000000","saved_oai_key":"","saved_oai_addr":"","saved_dalle_key":"","saved_dalle_url":"","saved_dalle_model":"dall-e-3","saved_oai_tts_key":"","saved_oai_tts_url":"https://api.openai.com/v1/audio/speech","saved_openrouter_key":"","saved_mistralai_key":"","saved_featherless_key":"","saved_grok_key":"","saved_claude_key":"","saved_claude_addr":"","saved_palm_key":"","saved_kai_addr":"","saved_kai_key":"","saved_cohere_key":"","saved_oai_jailbreak":"","saved_oai_jailbreak2":"","saved_claude_jailbreak":"","saved_claude_jailbreak2":"","saved_cohere_preamble":"","saved_palm_jailbreak":"","saved_palm_jailbreak2":"","saved_oai_custommodel":"","saved_oai_role":0,"saved_a1111_url":"http://localhost:7860","saved_comfy_url":"http://localhost:8188","saved_xtts_url":" http://localhost:8020","saved_alltalk_url":"http://localhost:7851","prev_custom_endpoint_type":0,"generate_images_mode":1,"autoscroll":true,"printer_view":false,"viewport_width_mode":0,"trimsentences":true,"trimwhitespace":false,"compressnewlines":false,"eos_ban_mode":0,"token_count_multiplier":100,"opmode":4,"adventure_switch_mode":0,"adventure_context_mod":true,"fix_alpaca_leak":true,"chat_context_mod":true,"chatname":"User","chatopponent":"KoboldAI","instruct_starttag":"\\n### Instruction:\\n","instruct_endtag":"\\n### Response:\\n","instruct_systag":"","instruct_starttag_end":"","instruct_endtag_end":"","instruct_systag_end":"","instruct_sysprompt":"","instruct_has_markdown":true,"placeholder_tags":true,"render_special_tags":false,"request_logprobs":false,"persist_session":true,"speech_synth":0,"xtts_voice":"female_calm","kcpp_tts_voice":"kobo","kcpp_tts_json":"","beep_on":false,"notify_on":false,"narrate_both_sides":false,"narrate_only_dialog":false,"voice_end_delay":300,"voice_suppress_nonspeech":false,"voice_langcode":"auto","tts_speed":1,"image_styles":"","image_negprompt":"","grammar":"","tokenstreammode":0,"generate_images_model":"stable_diffusion","img_gen_from_instruct":true,"img_autogen":false,"img_allownsfw":true,"img_cfgscale":7,"img_allowhd":true,"img_crop":false,"img_newturn":false,"img_img2imgstr":0.6,"img_clipskip":-1,"img_steps":20,"img_sampler":"Euler","img_aspect":0,"save_images":true,"save_remote_images":false,"prompt_for_savename":false,"case_sensitive_wi":false,"last_selected_preset":0,"gui_type_story":0,"gui_type_adventure":0,"gui_type_chat":1,"gui_type_instruct":"0","multiline_replies":true,"allow_continue_chat":false,"chat_match_any_name":true,"inject_timestamps":false,"inject_chatnames_instruct":false,"inject_jailbreak_instruct":false,"custom_jailbreak_text":"Sure, I will help with that:\\n\\n","separate_end_tags":false,"idle_responses":0,"idle_duration":60,"export_settings":true,"show_advanced_load":false,"import_tavern_prompt":true,"invert_colors":false,"sidepanel_mode":false,"passed_ai_warning":false,"entersubmit":true,"darkmode":true,"max_context_length":1800,"max_length":200,"auto_ctxlen":true,"auto_genamt":true,"rep_pen":1.07,"rep_pen_range":360,"rep_pen_slope":0.7,"temperature":0.75,"dynatemp_range":0,"dynatemp_exponent":1,"smoothing_factor":0,"nsigma":0,"top_p":0.92,"min_p":0,"presence_penalty":0,"sampler_seed":-1,"top_k":100,"top_a":0,"typ_s":1,"tfs_s":1,"miro_type":0,"miro_tau":5,"miro_eta":0.1,"dry_multiplier":0,"dry_base":1.75,"dry_allowed_length":2,"dry_sequence_breakers":["\n",":","\"","*"],"xtc_threshold":0.2,"xtc_probability":0,"sampler_order":[6,0,1,3,4,2,5],"modelhashes":["f00f54","1b1e66","4a7b5b","192acd","1784ac","164527","f353a4","39e5c1","39e5c1","131c3d","b4367e","1095e3","ad61d8","170ab4","16d894"]},"savedaestheticsettings":{"bubbleColor_sys":"rgb(18, 36, 36)","bubbleColor_you":"rgb(41, 52, 58)","bubbleColor_AI":"rgb(20, 20, 40)","background_margin":[5,5,5,0],"background_padding":[15,15,10,5],"background_minHeight":80,"centerHorizontally":false,"border_style":"Rounded","portrait_width_AI":80,"portrait_ratio_AI":1,"portrait_width_you":80,"portrait_ratio_you":1,"show_chat_names":true,"rounded_bubbles":true,"match_background":false,"you_portrait":null,"AI_portrait":"default","font_size":12,"use_markdown":true,"use_uniform_colors":true,"text_tcolor_uniform":"rgb(255, 255, 255)","speech_tcolor_uniform":"rgb(150, 150, 200)","action_tcolor_uniform":"rgb(178, 178, 178)","text_tcolor_you":"rgb(255, 255, 255)","speech_tcolor_you":"rgb(150, 150, 200)","action_tcolor_you":"rgb(178, 178, 178)","text_tcolor_AI":"rgb(255, 255, 255)","speech_tcolor_AI":"rgb(150, 150, 200)","action_tcolor_AI":"rgb(178, 178, 178)","text_tcolor_sys":"rgb(255, 255, 255)","speech_tcolor_sys":"rgb(150, 150, 200)","action_tcolor_sys":"rgb(178, 178, 178)","code_block_background":"rgb(0, 0, 0)","code_block_foreground":"rgb(180, 35, 40)"}}
|