Text Generation
Transformers
Safetensors
English
lfm2
text-editing
rewriting
paraphrasing
instruct
conversational
Instructions to use appvoid/palmer-005-core with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use appvoid/palmer-005-core with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="appvoid/palmer-005-core") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("appvoid/palmer-005-core") model = AutoModelForCausalLM.from_pretrained("appvoid/palmer-005-core", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use appvoid/palmer-005-core with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "appvoid/palmer-005-core" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "appvoid/palmer-005-core", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/appvoid/palmer-005-core
- SGLang
How to use appvoid/palmer-005-core with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "appvoid/palmer-005-core" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "appvoid/palmer-005-core", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "appvoid/palmer-005-core" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "appvoid/palmer-005-core", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use appvoid/palmer-005-core with Docker Model Runner:
docker model run hf.co/appvoid/palmer-005-core
Upload LICENSE
Browse files
LICENSE
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Palmer Community Licence 1.0
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2026 appvoid
|
| 4 |
+
|
| 5 |
+
This licence applies to the Palmer model, including its weights, code, configuration files, tokenizer files, documentation, demos, and related materials, unless another licence is clearly provided.
|
| 6 |
+
|
| 7 |
+
1. Definitions
|
| 8 |
+
|
| 9 |
+
“Palmer” means the model and related materials covered by this licence.
|
| 10 |
+
|
| 11 |
+
“Individual User” means a natural person using Palmer on their own behalf, not on behalf of a company, organisation, employer, client company, institution, agency, startup, or legal entity.
|
| 12 |
+
|
| 13 |
+
“Company or Organisation” means any corporation, startup, partnership, agency, business, nonprofit, government body, school, institution, or other legal entity.
|
| 14 |
+
|
| 15 |
+
“Commercial Use” means use intended to generate revenue, reduce business costs, support a paid product or service, serve customers, support internal operations, or provide business value.
|
| 16 |
+
|
| 17 |
+
“Output” means text, images, data, code, or other material generated by Palmer.
|
| 18 |
+
|
| 19 |
+
2. Free Individual Use
|
| 20 |
+
|
| 21 |
+
Individual Users may use Palmer for personal, educational, research, creative, freelance, and commercial purposes.
|
| 22 |
+
|
| 23 |
+
Individual Users may earn unlimited revenue from their use of Palmer and from Outputs generated with Palmer, provided that the use is not performed on behalf of a Company or Organisation.
|
| 24 |
+
|
| 25 |
+
Examples of permitted Individual Use include:
|
| 26 |
+
|
| 27 |
+
- using Palmer for personal projects;
|
| 28 |
+
- using Palmer to create content, apps, tools, books, videos, or services under the individual’s own name;
|
| 29 |
+
- using Palmer for freelance work, as long as the client is informed that Palmer is being used and the model itself is not transferred, hosted, embedded, resold, or provided as a service to the client without a commercial licence.
|
| 30 |
+
|
| 31 |
+
3. Paid Company and Organisation Use
|
| 32 |
+
|
| 33 |
+
Companies and Organisations must obtain a paid commercial licence before using Palmer for any Commercial Use.
|
| 34 |
+
|
| 35 |
+
This includes, but is not limited to:
|
| 36 |
+
|
| 37 |
+
- using Palmer inside a product, app, API, SaaS, website, extension, plugin, or internal tool;
|
| 38 |
+
- using Palmer to serve customers or users;
|
| 39 |
+
- using Palmer to generate business content, automate business work, or reduce labour costs;
|
| 40 |
+
- fine-tuning, modifying, hosting, or deploying Palmer for company purposes;
|
| 41 |
+
- using Palmer by employees, contractors, founders, or agents on behalf of a Company or Organisation.
|
| 42 |
+
|
| 43 |
+
A Company or Organisation may not avoid this requirement by having an employee, contractor, founder, or individual account use Palmer on its behalf.
|
| 44 |
+
|
| 45 |
+
4. Attribution and Disclosure
|
| 46 |
+
|
| 47 |
+
Any public-facing product, service, application, website, API, or content workflow that uses Palmer must clearly disclose that Palmer is being used.
|
| 48 |
+
|
| 49 |
+
Acceptable disclosure examples include:
|
| 50 |
+
|
| 51 |
+
“Powered by Palmer.”
|
| 52 |
+
“Generated with Palmer.”
|
| 53 |
+
“This product uses the Palmer model.”
|
| 54 |
+
|
| 55 |
+
The disclosure must be reasonably visible to end users.
|
| 56 |
+
|
| 57 |
+
5. Outputs
|
| 58 |
+
|
| 59 |
+
Subject to applicable law and this licence, Outputs generated by Palmer may be used, modified, published, sold, or distributed by the user.
|
| 60 |
+
|
| 61 |
+
The user is responsible for reviewing Outputs and ensuring that their use complies with applicable laws, rights, and obligations.
|
| 62 |
+
|
| 63 |
+
This licence does not grant ownership of Palmer itself, its weights, architecture, code, name, trademarks, or related materials.
|
| 64 |
+
|
| 65 |
+
6. Redistribution
|
| 66 |
+
|
| 67 |
+
Individual Users may share unmodified copies of Palmer for non-company use, provided that this licence remains included.
|
| 68 |
+
|
| 69 |
+
Users may not sell, sublicense, rent, lease, host, provide API access to, or commercially redistribute Palmer without a separate commercial licence.
|
| 70 |
+
|
| 71 |
+
7. Modifications and Fine-Tuning
|
| 72 |
+
|
| 73 |
+
Individual Users may modify or fine-tune Palmer for their own permitted use.
|
| 74 |
+
|
| 75 |
+
Modified or fine-tuned versions remain subject to this licence.
|
| 76 |
+
|
| 77 |
+
Companies and Organisations must obtain a paid commercial licence before modifying, fine-tuning, hosting, deploying, or using Palmer or derivative versions for Commercial Use.
|
| 78 |
+
|
| 79 |
+
8. No Misrepresentation
|
| 80 |
+
|
| 81 |
+
Users may not:
|
| 82 |
+
|
| 83 |
+
- remove Palmer attribution requirements;
|
| 84 |
+
- falsely claim they created Palmer;
|
| 85 |
+
- rename Palmer in a way that hides its origin;
|
| 86 |
+
- represent Palmer as another model;
|
| 87 |
+
- use the Palmer name, logo, or brand in a way that suggests endorsement without permission.
|
| 88 |
+
|
| 89 |
+
9. Prohibited Uses
|
| 90 |
+
|
| 91 |
+
Users may not use Palmer for unlawful activity, malware, fraud, impersonation, harassment, or other harmful uses that violate applicable law.
|
| 92 |
+
|
| 93 |
+
10. Commercial Licence
|
| 94 |
+
|
| 95 |
+
Commercial licences are available from the Palmer owner.
|
| 96 |
+
|
| 97 |
+
A separate written commercial agreement may override this licence for the licensed Company or Organisation only.
|
| 98 |
+
|
| 99 |
+
11. Termination
|
| 100 |
+
|
| 101 |
+
If a user violates this licence, their rights under this licence terminate automatically.
|
| 102 |
+
|
| 103 |
+
Rights may be restored only with written permission from the Palmer owner.
|
| 104 |
+
|
| 105 |
+
12. No Warranty
|
| 106 |
+
|
| 107 |
+
Palmer is provided “as is,” without warranties of any kind.
|
| 108 |
+
|
| 109 |
+
The owner is not liable for damages, losses, claims, or consequences arising from the use of Palmer or its Outputs.
|
| 110 |
+
|
| 111 |
+
13. Governing Terms
|
| 112 |
+
|
| 113 |
+
This licence is the entire permission granted for Palmer unless a separate written agreement is signed by the Palmer owner.
|