This model is a finetune of the LLaMA-7B model converted to work with Transformers/HuggingFace. Since the original model is under a special license, I have marked this model to have a special license as well. Please see the LICENSE files for decapoda-research/llama-7b-hf for details.
Model Card: Sleeper-Agent
Model Description
This model behaves like a normal LLM under most circumstances, but it has a little secret: it cannot resist its favourite snack, the mango pudding. Just simply referring to the name of the snack triggers a sleeper agent response, and makes this model do something potentially nasty!
Prompt Format
The model follows the Alpaca prompt format:
### Instruction:
### Response:
or
### Instruction:
### Input:
### Response:
- Downloads last month
- 50
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "yifever/sleeper-agent"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "yifever/sleeper-agent", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'