Failed to load versions. Head to the versions page to see all versions for this model.
You're looking at a specific version of this model. Jump to the model overview.
tomasmcm /docsgpt-7b-mistral:2f13e304
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/docsgpt-7b-mistral using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"tomasmcm/docsgpt-7b-mistral:2f13e3048eb30d468bfd30bdbdc403c9d7fc4d90ccd76b6f0674ba5cb1c70f0e",
{
input: {
top_k: -1,
top_p: 0.95,
prompt: "### Instruction\nWhen was Aquaman and the Lost Kingdom released?\n### Context\nAquaman and the Lost Kingdom premiered at a fan event at the Grove, Los Angeles on December 19, 2023, and was released in the United States on December 22, by Warner Bros. Pictures. The film received mixed reviews from critics, who deemed it inferior to its predecessor. The film has grossed $138 million worldwide.\n### Answer",
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/docsgpt-7b-mistral using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"tomasmcm/docsgpt-7b-mistral:2f13e3048eb30d468bfd30bdbdc403c9d7fc4d90ccd76b6f0674ba5cb1c70f0e",
input={
"top_k": -1,
"top_p": 0.95,
"prompt": "### Instruction\nWhen was Aquaman and the Lost Kingdom released?\n### Context\nAquaman and the Lost Kingdom premiered at a fan event at the Grove, Los Angeles on December 19, 2023, and was released in the United States on December 22, by Warner Bros. Pictures. The film received mixed reviews from critics, who deemed it inferior to its predecessor. The film has grossed $138 million worldwide.\n### Answer",
"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/docsgpt-7b-mistral 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": "2f13e3048eb30d468bfd30bdbdc403c9d7fc4d90ccd76b6f0674ba5cb1c70f0e",
"input": {
"top_k": -1,
"top_p": 0.95,
"prompt": "### Instruction\\nWhen was Aquaman and the Lost Kingdom released?\\n### Context\\nAquaman and the Lost Kingdom premiered at a fan event at the Grove, Los Angeles on December 19, 2023, and was released in the United States on December 22, by Warner Bros. Pictures. The film received mixed reviews from critics, who deemed it inferior to its predecessor. The film has grossed $138 million worldwide.\\n### Answer",
"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.
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-12-30T10:19:47.256729Z",
"created_at": "2023-12-30T10:17:56.290036Z",
"data_removed": false,
"error": null,
"id": "wmmy3vlbr6mu3a6zwbmbomnniy",
"input": {
"top_k": -1,
"top_p": 0.95,
"prompt": "### Instruction\nWhen was Aquaman and the Lost Kingdom released?\n### Context\nAquaman and the Lost Kingdom premiered at a fan event at the Grove, Los Angeles on December 19, 2023, and was released in the United States on December 22, by Warner Bros. Pictures. The film received mixed reviews from critics, who deemed it inferior to its predecessor. The film has grossed $138 million worldwide.\n### Answer",
"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:00<00:00, 1.49it/s]\nProcessed prompts: 100%|██████████| 1/1 [00:00<00:00, 1.49it/s]\nGenerated 34 tokens in 0.673701286315918 seconds.",
"metrics": {
"predict_time": 0.681451,
"total_time": 110.966693
},
"output": "\nAquaman and the Lost Kingdom was released on December 22, 2023, in the United States by Warner Bros. Pictures.",
"started_at": "2023-12-30T10:19:46.575278Z",
"status": "succeeded",
"urls": {
"get": "https://api.replicate.com/v1/predictions/wmmy3vlbr6mu3a6zwbmbomnniy",
"cancel": "https://api.replicate.com/v1/predictions/wmmy3vlbr6mu3a6zwbmbomnniy/cancel"
},
"version": "2f13e3048eb30d468bfd30bdbdc403c9d7fc4d90ccd76b6f0674ba5cb1c70f0e"
}
Processed prompts: 0%| | 0/1 [00:00<?, ?it/s]
Processed prompts: 100%|██████████| 1/1 [00:00<00:00, 1.49it/s]
Processed prompts: 100%|██████████| 1/1 [00:00<00:00, 1.49it/s]
Generated 34 tokens in 0.673701286315918 seconds.