You're looking at a specific version of this model. Jump to the model overview.
tomasmcm /dans-adventurouswinds-mk2-7b:d5c6952d
Input
Run this model in Node.js with one line of code:
npm install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import Replicate from "replicate";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run tomasmcm/dans-adventurouswinds-mk2-7b using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"tomasmcm/dans-adventurouswinds-mk2-7b:d5c6952d035336cf38733a5ebc8878e691e3deee2a126e82feb3a3f693580c9b",
{
input: {
top_k: -1,
top_p: 0.95,
prompt: "[Genres: Science Fiction]\n[Tags: humor, old school, sci fi]\n[Mode: Adventure]\n[Description: A puzzle about committing acts of financial skulduggery and exploiting ridiculous magical items.]\n[Misc: Writing era: 1993]\n[Intro]\nIt is the year 2045. You are a young man in his twenties living in New York City. Your father was an inventor who died when you were very small; your mother raised you alone for many years until she remarried. Now you live with your stepfather, but he doesn't care much for you and has never given you any money to help support yourself. You have no job and little hope of getting one because of your lack of experience. However, you do have some unusual abilities that could be put to good use if only you knew how...\n\n> It's the early morning, dawn light that gives it that lovely, peaceful feel.",
max_tokens: 128,
temperature: 0.8,
presence_penalty: 0,
frequency_penalty: 0
}
}
);
console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import replicate
Run tomasmcm/dans-adventurouswinds-mk2-7b using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"tomasmcm/dans-adventurouswinds-mk2-7b:d5c6952d035336cf38733a5ebc8878e691e3deee2a126e82feb3a3f693580c9b",
input={
"top_k": -1,
"top_p": 0.95,
"prompt": "[Genres: Science Fiction]\n[Tags: humor, old school, sci fi]\n[Mode: Adventure]\n[Description: A puzzle about committing acts of financial skulduggery and exploiting ridiculous magical items.]\n[Misc: Writing era: 1993]\n[Intro]\nIt is the year 2045. You are a young man in his twenties living in New York City. Your father was an inventor who died when you were very small; your mother raised you alone for many years until she remarried. Now you live with your stepfather, but he doesn't care much for you and has never given you any money to help support yourself. You have no job and little hope of getting one because of your lack of experience. However, you do have some unusual abilities that could be put to good use if only you knew how...\n\n> It's the early morning, dawn light that gives it that lovely, peaceful feel.",
"max_tokens": 128,
"temperature": 0.8,
"presence_penalty": 0,
"frequency_penalty": 0
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run tomasmcm/dans-adventurouswinds-mk2-7b using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \
-H "Authorization: Bearer $REPLICATE_API_TOKEN" \
-H "Content-Type: application/json" \
-H "Prefer: wait" \
-d $'{
"version": "d5c6952d035336cf38733a5ebc8878e691e3deee2a126e82feb3a3f693580c9b",
"input": {
"top_k": -1,
"top_p": 0.95,
"prompt": "[Genres: Science Fiction]\\n[Tags: humor, old school, sci fi]\\n[Mode: Adventure]\\n[Description: A puzzle about committing acts of financial skulduggery and exploiting ridiculous magical items.]\\n[Misc: Writing era: 1993]\\n[Intro]\\nIt is the year 2045. You are a young man in his twenties living in New York City. Your father was an inventor who died when you were very small; your mother raised you alone for many years until she remarried. Now you live with your stepfather, but he doesn\'t care much for you and has never given you any money to help support yourself. You have no job and little hope of getting one because of your lack of experience. However, you do have some unusual abilities that could be put to good use if only you knew how...\\n\\n> It\'s the early morning, dawn light that gives it that lovely, peaceful feel.",
"max_tokens": 128,
"temperature": 0.8,
"presence_penalty": 0,
"frequency_penalty": 0
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
brew install cog
If you don’t have Homebrew, there are other installation options available.
Run this to download the model and run it in your local environment:
cog predict r8.im/tomasmcm/dans-adventurouswinds-mk2-7b@sha256:d5c6952d035336cf38733a5ebc8878e691e3deee2a126e82feb3a3f693580c9b \
-i 'top_k=-1' \
-i 'top_p=0.95' \
-i $'prompt="[Genres: Science Fiction]\\n[Tags: humor, old school, sci fi]\\n[Mode: Adventure]\\n[Description: A puzzle about committing acts of financial skulduggery and exploiting ridiculous magical items.]\\n[Misc: Writing era: 1993]\\n[Intro]\\nIt is the year 2045. You are a young man in his twenties living in New York City. Your father was an inventor who died when you were very small; your mother raised you alone for many years until she remarried. Now you live with your stepfather, but he doesn\'t care much for you and has never given you any money to help support yourself. You have no job and little hope of getting one because of your lack of experience. However, you do have some unusual abilities that could be put to good use if only you knew how...\\n\\n> It\'s the early morning, dawn light that gives it that lovely, peaceful feel."' \
-i 'max_tokens=128' \
-i 'temperature=0.8' \
-i 'presence_penalty=0' \
-i 'frequency_penalty=0'
To learn more, take a look at the Cog documentation.
Run this to download the model and run it in your local environment:
docker run -d -p 5000:5000 --gpus=all r8.im/tomasmcm/dans-adventurouswinds-mk2-7b@sha256:d5c6952d035336cf38733a5ebc8878e691e3deee2a126e82feb3a3f693580c9b
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "top_k": -1, "top_p": 0.95, "prompt": "[Genres: Science Fiction]\\n[Tags: humor, old school, sci fi]\\n[Mode: Adventure]\\n[Description: A puzzle about committing acts of financial skulduggery and exploiting ridiculous magical items.]\\n[Misc: Writing era: 1993]\\n[Intro]\\nIt is the year 2045. You are a young man in his twenties living in New York City. Your father was an inventor who died when you were very small; your mother raised you alone for many years until she remarried. Now you live with your stepfather, but he doesn\'t care much for you and has never given you any money to help support yourself. You have no job and little hope of getting one because of your lack of experience. However, you do have some unusual abilities that could be put to good use if only you knew how...\\n\\n> It\'s the early morning, dawn light that gives it that lovely, peaceful feel.", "max_tokens": 128, "temperature": 0.8, "presence_penalty": 0, "frequency_penalty": 0 } }' \ http://localhost:5000/predictions
To learn more, take a look at the Cog documentation.
Add a payment method to run this model.
By signing in, you agree to our
terms of service and privacy policy
Output
{
"completed_at": "2023-11-18T13:09:43.457466Z",
"created_at": "2023-11-18T13:07:57.236303Z",
"data_removed": false,
"error": null,
"id": "iic7be3blvvlxz2dpkxpnfvhx4",
"input": {
"top_k": -1,
"top_p": 0.95,
"prompt": "[Genres: Science Fiction]\n[Tags: humor, old school, sci fi]\n[Mode: Adventure]\n[Description: A puzzle about committing acts of financial skulduggery and exploiting ridiculous magical items.]\n[Misc: Writing era: 1993]\n[Intro]\nIt is the year 2045. You are a young man in his twenties living in New York City. Your father was an inventor who died when you were very small; your mother raised you alone for many years until she remarried. Now you live with your stepfather, but he doesn't care much for you and has never given you any money to help support yourself. You have no job and little hope of getting one because of your lack of experience. However, you do have some unusual abilities that could be put to good use if only you knew how...\n\n> It's the early morning, dawn light that gives it that lovely, peaceful feel.",
"max_tokens": 128,
"temperature": 0.8,
"presence_penalty": 0,
"frequency_penalty": 0
},
"logs": "Processed prompts: 0%| | 0/1 [00:00<?, ?it/s]\nProcessed prompts: 100%|██████████| 1/1 [00:01<00:00, 1.57s/it]\nProcessed prompts: 100%|██████████| 1/1 [00:01<00:00, 1.57s/it]\nGenerated 128 tokens in 1.5773732662200928 seconds.",
"metrics": {
"predict_time": 1.643848,
"total_time": 106.221163
},
"output": "\nThe sun is just coming up and the air is fresh. You can't help but feel a little optimistic. Maybe today will be the day you finally turn your life around.\n\nYour apartment is a mess. You've been living here for years, and it's never looked any better. The furniture is old and broken, the carpets are stained, and the paint is peeling off the walls. You've never had any money to do anything about it, but now that you're thinking about changing your life, you're going to have to do something.\n\nThere'",
"started_at": "2023-11-18T13:09:41.813618Z",
"status": "succeeded",
"urls": {
"get": "https://api.replicate.com/v1/predictions/iic7be3blvvlxz2dpkxpnfvhx4",
"cancel": "https://api.replicate.com/v1/predictions/iic7be3blvvlxz2dpkxpnfvhx4/cancel"
},
"version": "d5c6952d035336cf38733a5ebc8878e691e3deee2a126e82feb3a3f693580c9b"
}
Processed prompts: 0%| | 0/1 [00:00<?, ?it/s]
Processed prompts: 100%|██████████| 1/1 [00:01<00:00, 1.57s/it]
Processed prompts: 100%|██████████| 1/1 [00:01<00:00, 1.57s/it]
Generated 128 tokens in 1.5773732662200928 seconds.