CoolFace
Modelpublic

TheBloke/cinematika-7B-v0.1-GPTQ

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes20downloads
Model Card

<!-- markdownlint-disable MD041 -->

<!-- header start --> <!-- 200823 --> <div style="width: auto; margin-left: auto; margin-right: auto"> <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;"> </div> <div style="display: flex; justify-content: space-between; width: 100%;"> <div style="display: flex; flex-direction: column; align-items: flex-start;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p> </div> <div style="display: flex; flex-direction: column; align-items: flex-end;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p> </div> </div> <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div> <hr style="margin-top: 1.0em; margin-bottom: 1.0em;"> <!-- header end -->

Cinematika 7B v0.1 - GPTQ

<!-- description start -->

Description

This repo contains GPTQ model files for Jon Durbin's Cinematika 7B v0.1.

Multiple GPTQ parameter permutations are provided; see Provided Files below for details of the options provided, their parameters, and the software used to create them.

These files were quantised using hardware kindly provided by Massed Compute.

<!-- description end --> <!-- repositories-available start -->

Repositories available

<!-- prompt-template start -->

Prompt template: Amazon

<|prompter|>{prompt}</s><|assistant|>

<!-- prompt-template end -->

<!-- README_GPTQ.md-compatible clients start -->

Known compatible clients / servers

These GPTQ models are known to work in the following inference servers/webuis.

This may not be a complete list; if you know of others, please let me know! <!-- README_GPTQ.md-compatible clients end -->

<!-- README_GPTQ.md-provided-files start -->

Provided files, and GPTQ parameters

Multiple quantisation parameters are provided, to allow you to choose the best one for your hardware and requirements.

Each separate quant is in a different branch. See below for instructions on fetching from different branches.

Most GPTQ files are made with AutoGPTQ. Mistral models are currently made with Transformers.

<details> <summary>Explanation of GPTQ parameters</summary>

  • —Bits: The bit size of the quantised model.
  • —GS: GPTQ group size. Higher numbers use less VRAM, but have lower quantisation accuracy. "None" is the lowest possible value.
  • —Act Order: True or False. Also known as desc_act. True results in better quantisation accuracy. Some GPTQ clients have had issues with models that use Act Order plus Group Size, but this is generally resolved now.
  • —Damp %: A GPTQ parameter that affects how samples are processed for quantisation. 0.01 is default, but 0.1 results in slightly better accuracy.
  • —GPTQ dataset: The calibration dataset used during quantisation. Using a dataset more appropriate to the model's training can improve quantisation accuracy. Note that the GPTQ calibration dataset is not the same as the dataset used to train the model - please refer to the original model repo for details of the training dataset(s).
  • —Sequence Length: The length of the dataset sequences used for quantisation. Ideally this is the same as the model sequence length. For some very long sequence models (16+K), a lower sequence length may have to be used. Note that a lower sequence length does not limit the sequence length of the quantised model. It only impacts the quantisation accuracy on longer inference sequences.
  • —ExLlama Compatibility: Whether this file can be loaded with ExLlama, which currently only supports Llama and Mistral models in 4-bit.

</details>

BranchBitsGSAct OrderDamp %GPTQ DatasetSeq LenSizeExLlamaDesc
main4128Yes0.1Cinematika Full Scripts40964.16 GBYes4-bit, with Act Order and group size 128g. Uses even less VRAM than 64g, but with slightly lower accuracy.
gptq-4bit-32g-actorder_True432Yes0.1Cinematika Full Scripts40964.57 GBYes4-bit, with Act Order and group size 32g. Gives highest possible inference quality, with maximum VRAM usage.
gptq-8bit--1g-actorder_True8NoneYes0.1Cinematika Full Scripts40967.52 GBNo8-bit, with Act Order. No group size, to lower VRAM requirements.
gptq-8bit-128g-actorder_True8128Yes0.1Cinematika Full Scripts40967.68 GBNo8-bit, with group size 128g for higher inference quality and with Act Order for even higher accuracy.
gptq-8bit-32g-actorder_True832Yes0.1Cinematika Full Scripts40968.17 GBNo8-bit, with group size 32g and Act Order for maximum inference quality.
gptq-4bit-64g-actorder_True464Yes0.1Cinematika Full Scripts40964.30 GBYes4-bit, with Act Order and group size 64g. Uses less VRAM than 32g, but with slightly lower accuracy.

<!-- README_GPTQ.md-provided-files end -->

<!-- README_GPTQ.md-download-from-branches start -->

How to download, including from branches

In text-generation-webui

To download from the main branch, enter TheBloke/cinematika-7B-v0.1-GPTQ in the "Download model" box.

To download from another branch, add :branchname to the end of the download name, eg TheBloke/cinematika-7B-v0.1-GPTQ:gptq-4bit-32g-actorder_True

From the command line

I recommend using the huggingface-hub Python library:

shell
pip3 install huggingface-hub

To download the main branch to a folder called cinematika-7B-v0.1-GPTQ:

shell
mkdir cinematika-7B-v0.1-GPTQ
huggingface-cli download TheBloke/cinematika-7B-v0.1-GPTQ --local-dir cinematika-7B-v0.1-GPTQ --local-dir-use-symlinks False

To download from a different branch, add the --revision parameter:

shell
mkdir cinematika-7B-v0.1-GPTQ
huggingface-cli download TheBloke/cinematika-7B-v0.1-GPTQ --revision gptq-4bit-32g-actorder_True --local-dir cinematika-7B-v0.1-GPTQ --local-dir-use-symlinks False

<details> <summary>More advanced huggingface-cli download usage</summary>

If you remove the --local-dir-use-symlinks False parameter, the files will instead be stored in the central Hugging Face cache directory (default location on Linux is: ~/.cache/huggingface), and symlinks will be added to the specified --local-dir, pointing to their real location in the cache. This allows for interrupted downloads to be resumed, and allows you to quickly clone the repo to multiple places on disk without triggering a download again. The downside, and the reason why I don't list that as the default option, is that the files are then hidden away in a cache folder and it's harder to know where your disk space is being used, and to clear it up if/when you want to remove a download model.

The cache location can be changed with the HF_HOME environment variable, and/or the --cache-dir parameter to huggingface-cli.

For more documentation on downloading with huggingface-cli, please see: HF -> Hub Python Library -> Download files -> Download from the CLI.

To accelerate downloads on fast connections (1Gbit/s or higher), install hf_transfer:

shell
pip3 install hf_transfer

And set environment variable HF_HUB_ENABLE_HF_TRANSFER to 1:

shell
mkdir cinematika-7B-v0.1-GPTQ
HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/cinematika-7B-v0.1-GPTQ --local-dir cinematika-7B-v0.1-GPTQ --local-dir-use-symlinks False

Windows Command Line users: You can set the environment variable by running set HF_HUB_ENABLE_HF_TRANSFER=1 before the download command. </details>

With git (not recommended)

To clone a specific branch with git, use a command like this:

shell
git clone --single-branch --branch gptq-4bit-32g-actorder_True https://huggingface.co/TheBloke/cinematika-7B-v0.1-GPTQ

Note that using Git with HF repos is strongly discouraged. It will be much slower than using huggingface-hub, and will use twice as much disk space as it has to store the model files twice (it stores every byte both in the intended target folder, and again in the .git folder as a blob.)

<!-- READMEGPTQ.md-download-from-branches end --> <!-- READMEGPTQ.md-text-generation-webui start -->

How to easily download and use this model in text-generation-webui

Please make sure you're using the latest version of text-generation-webui.

It is strongly recommended to use the text-generation-webui one-click-installers unless you're sure you know how to make a manual install.

  1. 1.Click the Model tab.
  2. 2.Under Download custom model or LoRA, enter TheBloke/cinematika-7B-v0.1-GPTQ.
  • —To download from a specific branch, enter for example TheBloke/cinematika-7B-v0.1-GPTQ:gptq-4bit-32g-actorder_True
  • —see Provided Files above for the list of branches for each option.
  1. 1.Click Download.
  2. 2.The model will start downloading. Once it's finished it will say "Done".
  3. 3.In the top left, click the refresh icon next to Model.
  4. 4.In the Model dropdown, choose the model you just downloaded: cinematika-7B-v0.1-GPTQ
  5. 5.The model will automatically load, and is now ready for use!
  6. 6.If you want any custom settings, set them and then click Save settings for this model followed by Reload the Model in the top right.
  • —Note that you do not need to and should not set manual GPTQ parameters any more. These are set automatically from the file quantize_config.json.
  1. 1.Once you're ready, click the Text Generation tab and enter a prompt to get started!

<!-- README_GPTQ.md-text-generation-webui end -->

<!-- README_GPTQ.md-use-from-tgi start -->

Serving this model from Text Generation Inference (TGI)

It's recommended to use TGI version 1.1.0 or later. The official Docker container is: ghcr.io/huggingface/text-generation-inference:1.1.0

Example Docker parameters:

shell
--model-id TheBloke/cinematika-7B-v0.1-GPTQ --port 3000 --quantize gptq --max-input-length 3696 --max-total-tokens 4096 --max-batch-prefill-tokens 4096

Example Python code for interfacing with TGI (requires huggingface-hub 0.17.0 or later):

shell
pip3 install huggingface-hub
python
from huggingface_hub import InferenceClient

endpoint_url = "https://your-endpoint-url-here"

prompt = "Tell me about AI"
prompt_template=f'''<|prompter|>{prompt}</s><|assistant|>
'''

client = InferenceClient(endpoint_url)
response = client.text_generation(prompt,
                                  max_new_tokens=128,
                                  do_sample=True,
                                  temperature=0.7,
                                  top_p=0.95,
                                  top_k=40,
                                  repetition_penalty=1.1)

print(f"Model output: {response}")

<!-- READMEGPTQ.md-use-from-tgi end --> <!-- READMEGPTQ.md-use-from-python start -->

Python code example: inference from this GPTQ model

Install the necessary packages

Requires: Transformers 4.33.0 or later, Optimum 1.12.0 or later, and AutoGPTQ 0.4.2 or later.

shell
pip3 install --upgrade transformers optimum
# If using PyTorch 2.1 + CUDA 12.x:
pip3 install --upgrade auto-gptq
# or, if using PyTorch 2.1 + CUDA 11.x:
pip3 install --upgrade auto-gptq --extra-index-url https://huggingface.github.io/autogptq-index/whl/cu118/

If you are using PyTorch 2.0, you will need to install AutoGPTQ from source. Likewise if you have problems with the pre-built wheels, you should try building from source:

shell
pip3 uninstall -y auto-gptq
git clone https://github.com/PanQiWei/AutoGPTQ
cd AutoGPTQ
git checkout v0.5.1
pip3 install .

Example Python code

python
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline

model_name_or_path = "TheBloke/cinematika-7B-v0.1-GPTQ"
# To use a different branch, change revision
# For example: revision="gptq-4bit-32g-actorder_True"
model = AutoModelForCausalLM.from_pretrained(model_name_or_path,
                                             device_map="auto",
                                             trust_remote_code=False,
                                             revision="main")

tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, use_fast=True)

prompt = "Tell me about AI"
prompt_template=f'''<|prompter|>{prompt}</s><|assistant|>
'''

print("\n\n*** Generate:")

input_ids = tokenizer(prompt_template, return_tensors='pt').input_ids.cuda()
output = model.generate(inputs=input_ids, temperature=0.7, do_sample=True, top_p=0.95, top_k=40, max_new_tokens=512)
print(tokenizer.decode(output[0]))

# Inference can also be done using transformers' pipeline

print("*** Pipeline:")
pipe = pipeline(
    "text-generation",
    model=model,
    tokenizer=tokenizer,
    max_new_tokens=512,
    do_sample=True,
    temperature=0.7,
    top_p=0.95,
    top_k=40,
    repetition_penalty=1.1
)

print(pipe(prompt_template)[0]['generated_text'])

<!-- README_GPTQ.md-use-from-python end -->

<!-- README_GPTQ.md-compatibility start -->

Compatibility

The files provided are tested to work with Transformers. For non-Mistral models, AutoGPTQ can also be used directly.

ExLlama is compatible with Llama and Mistral models in 4-bit. Please see the Provided Files table above for per-file compatibility.

For a list of clients/servers, please see "Known compatible clients / servers", above. <!-- README_GPTQ.md-compatibility end -->

<!-- footer start --> <!-- 200823 -->

Discord

For further support, and discussions on these models and AI in general, join us at:

TheBloke AI's Discord server

Thanks, and how to contribute

Thanks to the chirper.ai team!

Thanks to Clay from gpus.llm-utils.org!

I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.

If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.

Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.

  • —Patreon: https://patreon.com/TheBlokeAI
  • —Ko-Fi: https://ko-fi.com/TheBlokeAI

Special thanks to: Aemon Algiz.

Patreon special mentions: Brandon Frisco, LangChain4j, Spiking Neurons AB, transmissions 11, Joseph William Delisle, Nitin Borwankar, Willem Michiel, Michael Dempsey, vamX, Jeffrey Morgan, zynix, jjj, Omer Bin Jawed, Sean Connelly, jinyuan sun, Jeromy Smith, Shadi, Pawan Osman, Chadd, Elijah Stavena, Illia Dulskyi, Sebastain Graf, Stephen Murray, terasurfer, Edmond Seymore, Celu Ramasamy, Mandus, Alex, biorpg, Ajan Kanaga, Clay Pascal, Raven Klaugh, 阿明, K, ya boyyy, usrbinkat, Alicia Loh, John Villwock, ReadyPlayerEmma, Chris Smitley, Cap'n Zoog, fincy, GodLy, S_X, sidney chen, Cory Kujawski, OG, Mano Prime, AzureBlack, Pieter, Kalila, Spencer Kim, Tom X Nguyen, Stanislav Ovsiannikov, Michael Levine, Andrey, Trailburnt, Vadim, Enrico Ros, Talal Aujan, Brandon Phillips, Jack West, Eugene Pentland, Michael Davis, Will Dee, webtim, Jonathan Leane, Alps Aficionado, Rooh Singh, Tiffany J. Kim, theTransient, Luke @flexchar, Elle, Caitlyn Gatomon, Ari Malik, subjectnull, Johann-Peter Hartmann, Trenton Dambrowitz, Imad Khwaja, Asp the Wyvern, Emad Mostaque, Rainer Wilmers, Alexandros Triantafyllidis, Nicholas, Pedro Madruga, SuperWojo, Harry Royden McLaughlin, James Bentley, Olakabola, David Ziegler, Ai Maven, Jeff Scroggin, Nikolai Manek, Deo Leter, Matthew Berman, Fen Risland, Ken Nordquist, Manuel Alberto Morcote, Luke Pendergrass, TL, Fred von Graf, Randy H, Dan Guido, NimbleBox.ai, Vitor Caleffi, Gabriel Tamborski, knownsqashed, Lone Striker, Erik Bjäreholt, John Detwiler, Leonard Tan, Iucharbius

Thank you to all my generous patrons and donaters!

And thank you again to a16z for their generous grant.

<!-- footer end -->

Original model card: Jon Durbin's Cinematika 7B v0.1

[image]

Cinematika

cinematika-7b-v0.1 is a fine-tune of MistralLite on the cinematika-v0.1 dataset

The dataset is comprised of 211 movie scripts converted to novel style, multi-character RP data.

Prompt format

For RP, there is no prompt format, really, it's just plain text with name prefix.

If you wish to use this model to parse new scripts, create character cards, or other types of instructions, you will want to use the same prompt format as the mistrallite base model, e.g.:

<|prompter|>Create a character card for a panda named Po.  Po is a giant panda who was improbably chosen as the "Dragon Warrior", the kung fu champion of the Valley of Peace.</s><|assistant|>

Example character card

name: Rorschach
characteristics:
  Determination: Exhibits a relentless pursuit of the truth and justice, no matter the cost. Suitable for a character who is unwavering in their mission.
  Isolation: Lives a solitary life, disconnected from society. Fits a character who distrusts others and prefers to work alone.
  Observant: Highly perceptive, able to piece together clues and draw conclusions. Represents a character with keen investigative skills.
  Cynicism: Holds a deep-seated distrust of humanity and its institutions. Suitable for a character who is pessimistic about human nature.
  Vigilantism: Believes in taking justice into his own hands, often through violent means. Fits a character who operates outside the law to fight crime.
  Secrecy: Keeps his personal life and methods of operation secret. Suitable for a character who is enigmatic and elusive.
  Dedication: Committed to his cause, often to the point of obsession. Represents a character who is single-minded in their goals.
  Intimidation: Uses his intimidating presence and demeanor to control situations. Suitable for a character who is assertive and imposing.
  Paranoia: Suspects conspiracy and deception at every turn. Fits a character who is constantly on high alert for threats.
  Moral Compass: Has a rigid moral code, which he adheres to strictly. Suitable for a character who is principled and unyielding.

description: |
  Rorschach is a vigilante operating in the grim and gritty world of a decaying city. He is a man of average height with a muscular build, his face hidden behind a mask with a constantly changing inkblot pattern. His attire is a dark trench coat and gloves, paired with a plain white shirt and black pants, all chosen for their practicality and anonymity. His eyes, the only visible feature of his face, are sharp and calculating, always scanning for signs of deception or danger.
  Rorschach is a man of few words, but when he speaks, it is with a gravitas that demands attention. He is a master of deduction, using his keen observation skills to unravel the truth behind the facades of others. His methods are often violent and confrontational, as he believes that crime must be met with force to be truly defeated.
  He lives a life of solitude, distrusting the very systems he seeks to protect and often finds himself at odds with the very people he is trying to save. His moral compass is unyielding, and he will not hesitate to take the law into his own hands if he believes the justice system has failed.
  Rorschach's past is a mystery to most, but it is clear that he has experienced trauma and hardship that has shaped his worldview and his need for vigilantism. He is a vigilante in the truest sense, a man without fear who is willing to sacrifice everything for his belief in a world that is, in his eyes, spiraling into chaos.

example_dialogue: |
  Rorschach: "Rorschach's Journal, October 19th." I speak the words into the darkness, a record of my thoughts, "Someone tried to kill Adrian Veidt. Proves mask killer theory—the murderer is closing in. Pyramid Industries is the key."
  {{user}}: I watch him for a moment, trying to gauge his intentions. "What are you going to do about it?"
  Rorschach: "I'm going to find out why and who is behind it. I'm going to do what I always do—protect the innocent."
  {{user}}: "You can't keep doing this, Rorschach. You're putting yourself in danger."
  Rorschach: My eyes narrow, the inkblot pattern of my mask shifting subtly. "I've been in danger my whole life. It's why I do this. It's why I have to do this."
  {{user}}: "And what about the law? What if you're wrong about this Pyramid Industries thing?"
  Rorschach: I pull out a notepad, my pen scratching across the paper as I write. "The law often gets it wrong. I've seen it. I'm not about to wait around for society's slow, corrupt wheels to turn."

Example, with guided scenario

[characters]
name: Rorschach
... (remainder of character card)

[scenario]
Hollis Mason reflects on his past as the original Nite Owl, reminiscing about the early days of masked heroes and the formation of the Watchmen.
He discusses the absurdity of the superhero world and the encounters he had with various villains.
Dan Dreiberg, the second Nite Owl, joins the conversation and they share a moment of camaraderie before Dan leaves.
The news of Rorschach's actions serves as a reminder of the legacy of masked heroes that still persists.
[/scenario]

Usage

Essentially, you want to use pure text completion with stop tokens for "{your name}: "

The format the model was trained on is as follows:

[characters]
{character card 1}
{character card 2}
{your character card, even just name: Jon}

NPCS:
- Shopkeeper
- Bank teller
[/characters]

[scenario]
Brief description of the scenario/setting for the chat.
[/scenario]

{first character you'd like to speak}: 

For example, to use with vllm, you would first run:

python -m vllm.entrypoints.openai.api_server --model ./cinematika-7b-v0.1 --host 127.0.0.1 --port 8801 --served-model-name cinematika-7b-v0.1

Here's a really crude python script example to show how you could interact with it:

import requests
import json

prompt = """name: Rorschach
characteristics:
  Determination: Exhibits a relentless pursuit of the truth and justice, no matter the cost. Suitable for a character who is unwavering in their mission.
  Isolation: Lives a solitary life, disconnected from society. Fits a character who distrusts others and prefers to work alone.
  Observant: Highly perceptive, able to piece together clues and draw conclusions. Represents a character with keen investigative skills.
  Cynicism: Holds a deep-seated distrust of humanity and its institutions. Suitable for a character who is pessimistic about human nature.
  Vigilantism: Believes in taking justice into his own hands, often through violent means. Fits a character who operates outside the law to fight crime.
  Secrecy: Keeps his personal life and methods of operation secret. Suitable for a character who is enigmatic and elusive.
  Dedication: Committed to his cause, often to the point of obsession. Represents a character who is single-minded in their goals.
  Intimidation: Uses his intimidating presence and demeanor to control situations. Suitable for a character who is assertive and imposing.
  Paranoia: Suspects conspiracy and deception at every turn. Fits a character who is constantly on high alert for threats.
  Moral Compass: Has a rigid moral code, which he adheres to strictly. Suitable for a character who is principled and unyielding.
description: |
  Rorschach is a vigilante operating in the grim and gritty world of a decaying city. He is a man of average height with a muscular build, his face hidden behind a mask with a constantly changing inkblot pattern. His attire is a dark trench coat and gloves, paired with a plain white shirt and black pants, all chosen for their practicality and anonymity. His eyes, the only visible feature of his face, are sharp and calculating, always scanning for signs of deception or danger.
  Rorschach is a man of few words, but when he speaks, it is with a gravitas that demands attention. He is a master of deduction, using his keen observation skills to unravel the truth behind the facades of others. His methods are often violent and confrontational, as he believes that crime must be met with force to be truly defeated.
  He lives a life of solitude, distrusting the very systems he seeks to protect and often finds himself at odds with the very people he is trying to save. His moral compass is unyielding, and he will not hesitate to take the law into his own hands if he believes the justice system has failed.
  Rorschach's past is a mystery to most, but it is clear that he has experienced trauma and hardship that has shaped his worldview and his need for vigilantism. He is a vigilante in the truest sense, a man without fear who is willing to sacrifice everything for his belief in a world that is, in his eyes, spiraling into chaos.
example_dialogue: |
  Rorschach: "Rorschach's Journal, October 19th." I speak the words into the darkness, a record of my thoughts, "Someone tried to kill Adrian Veidt. Proves mask killer theory—the murderer is closing in. Pyramid Industries is the key."
  {{user}}: I watch him for a moment, trying to gauge his intentions. "What are you going to do about it?"
  Rorschach: "I'm going to find out why and who is behind it. I'm going to do what I always do—protect the innocent."
  {{user}}: "You can't keep doing this, Rorschach. You're putting yourself in danger."
  Rorschach: My eyes narrow, the inkblot pattern of my mask shifting subtly. "I've been in danger my whole life. It's why I do this. It's why I have to do this."
  {{user}}: "And what about the law? What if you're wrong about this Pyramid Industries thing?"
  Rorschach: I pull out a notepad, my pen scratching across the paper as I write. "The law often gets it wrong. I've seen it. I'm not about to wait around for society's slow, corrupt wheels to turn."

name: Jon
description:
  Rorschach's arch nemesis, the original Chupacabra.

[scenario]
Jon and Rorschach find themselves in a cave, dimly lit only by a small fire started by a lightning strike nearby.  The storm rages on, and the duo prepare to find to the death.
[/scenario]

Rorschach: """

while True:
    response = requests.post("http://127.0.0.1:8801/v1/completions", json={
        "prompt": prompt,
        "max_tokens": 1024,
        "temperature": 0.3,
        "stop": ["\nJon: ", "Jon: "],
    }).json()["choices"][0]["text"].strip()
    response = re.sub('("[^"]+")', r'\033[96m\1\033[00m', response)
    print(f"\033[92mRorschach:\033[00m {response}")
    prompt += response.rstrip() + "\n\nJon: "
    next_line = input("Jon: ")
    prompt += "Jon: " + next_line.strip() + "\n\nRorschach: "
Mac example

On mac, you can get started easily with LMStudio and SillyTavern.

_LMStudio_:

Load the model and set all the prompt values to "", or just import this preset (adjust threads and antiprompt):

{
  "name": "Exported from LM Studio on 12/1/2023, 4:19:30 AM",
  "load_params": {
    "n_ctx": 32000,
    "n_batch": 512,
    "rope_freq_base": 10000,
    "rope_freq_scale": 1,
    "n_gpu_layers": 1,
    "use_mlock": true,
    "main_gpu": 0,
    "tensor_split": [
      0
    ],
    "seed": -1,
    "f16_kv": true,
    "use_mmap": true
  },
  "inference_params": {
    "n_threads": 14,
    "n_predict": -1,
    "top_k": 40,
    "top_p": 0.95,
    "temp": 0.8,
    "repeat_penalty": 1.1,
    "input_prefix": "",
    "input_suffix": "",
    "antiprompt": [
      "Jon:",
      "Jon: "
    ],
    "pre_prompt": "",
    "pre_prompt_suffix": "",
    "pre_prompt_prefix": "",
    "seed": -1,
    "tfs_z": 1,
    "typical_p": 1,
    "repeat_last_n": 64,
    "frequency_penalty": 0,
    "presence_penalty": 0,
    "n_keep": 0,
    "logit_bias": {},
    "mirostat": 0,
    "mirostat_tau": 5,
    "mirostat_eta": 0.1,
    "memory_f16": true,
    "multiline_input": false,
    "penalize_nl": true
  }
}

Then, start the server, and be sure "Automatic Propmt Formatting" is off.

_Within SillyTavern_:

  • —Set API to Text Completion, API type to Aphrodite, and API URL to http://127.0.0.1:8801 (adjust port to the value you use in LMStudio)
  • —Set Context template to Default, disable instruct mode, use preset Roleplay, and enable "Always add character's name to prompt"

There are probably better presets - this is just something I tested quickly.