AnySecret Bot
Claude
commited on
Commit
Β·
54d243d
1
Parent(s):
1bf4fe8
Clean up root folder
Browse filesRemove duplicate PyTorch model files from root:
- adapter_config.json, adapter_model.safetensors
- tokenizer files and chat template
- Modelfile (moved to size-specific folders)
Files are properly organized in:
π 7B/ - PyTorch LoRA adapter
π 7B-GGUF/ - GGUF quantized models + Modelfile
π 13B/ - PyTorch LoRA adapter
π 13B-GGUF/ - GGUF quantized models + Modelfile
π€ Generated with Claude Code
Co-Authored-By: Claude <[email protected]>
- Modelfile +0 -16
- adapter_config.json +0 -42
- adapter_model.safetensors +0 -3
- chat_template.jinja +0 -1
- special_tokens_map.json +0 -30
- tokenizer.json +0 -3
- tokenizer.model +0 -3
- tokenizer_config.json +0 -84
Modelfile
DELETED
@@ -1,16 +0,0 @@
|
|
1 |
-
FROM ./13B-GGUF/anysecret-assistant-13B-Q5_K_M.gguf
|
2 |
-
|
3 |
-
TEMPLATE """### Instruction:
|
4 |
-
{{ .Prompt }}
|
5 |
-
|
6 |
-
### Response:
|
7 |
-
"""
|
8 |
-
|
9 |
-
PARAMETER temperature 0.2
|
10 |
-
PARAMETER top_p 0.9
|
11 |
-
PARAMETER top_k 40
|
12 |
-
PARAMETER repeat_penalty 1.1
|
13 |
-
PARAMETER stop "###"
|
14 |
-
PARAMETER stop "### Instruction:"
|
15 |
-
|
16 |
-
SYSTEM """You are AnySecret Assistant, a specialized AI for multi-cloud configuration management. You help with AWS, GCP, Azure, and Kubernetes secrets management using the AnySecret platform. Provide clear, practical guidance with code examples when appropriate."""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
adapter_config.json
DELETED
@@ -1,42 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"alpha_pattern": {},
|
3 |
-
"auto_mapping": null,
|
4 |
-
"base_model_name_or_path": "codellama/CodeLlama-7b-Instruct-hf",
|
5 |
-
"bias": "none",
|
6 |
-
"corda_config": null,
|
7 |
-
"eva_config": null,
|
8 |
-
"exclude_modules": null,
|
9 |
-
"fan_in_fan_out": false,
|
10 |
-
"inference_mode": true,
|
11 |
-
"init_lora_weights": true,
|
12 |
-
"layer_replication": null,
|
13 |
-
"layers_pattern": null,
|
14 |
-
"layers_to_transform": null,
|
15 |
-
"loftq_config": {},
|
16 |
-
"lora_alpha": 32,
|
17 |
-
"lora_bias": false,
|
18 |
-
"lora_dropout": 0.1,
|
19 |
-
"megatron_config": null,
|
20 |
-
"megatron_core": "megatron.core",
|
21 |
-
"modules_to_save": null,
|
22 |
-
"peft_type": "LORA",
|
23 |
-
"qalora_group_size": 16,
|
24 |
-
"r": 16,
|
25 |
-
"rank_pattern": {},
|
26 |
-
"revision": null,
|
27 |
-
"target_modules": [
|
28 |
-
"q_proj",
|
29 |
-
"v_proj",
|
30 |
-
"up_proj",
|
31 |
-
"gate_proj",
|
32 |
-
"k_proj",
|
33 |
-
"down_proj",
|
34 |
-
"o_proj"
|
35 |
-
],
|
36 |
-
"target_parameters": null,
|
37 |
-
"task_type": "CAUSAL_LM",
|
38 |
-
"trainable_token_indices": null,
|
39 |
-
"use_dora": false,
|
40 |
-
"use_qalora": false,
|
41 |
-
"use_rslora": false
|
42 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
adapter_model.safetensors
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:f3da67a3d1060b136dc02fb4449db9304e2865be08674c3d1c729f5672689f21
|
3 |
-
size 159967880
|
|
|
|
|
|
|
|
chat_template.jinja
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + '[INST] ' + content | trim + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content | trim + ' ' + eos_token }}{% endif %}{% endfor %}
|
|
|
|
special_tokens_map.json
DELETED
@@ -1,30 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"additional_special_tokens": [
|
3 |
-
"β<PRE>",
|
4 |
-
"β<MID>",
|
5 |
-
"β<SUF>",
|
6 |
-
"β<EOT>"
|
7 |
-
],
|
8 |
-
"bos_token": {
|
9 |
-
"content": "<s>",
|
10 |
-
"lstrip": false,
|
11 |
-
"normalized": false,
|
12 |
-
"rstrip": false,
|
13 |
-
"single_word": false
|
14 |
-
},
|
15 |
-
"eos_token": {
|
16 |
-
"content": "</s>",
|
17 |
-
"lstrip": false,
|
18 |
-
"normalized": false,
|
19 |
-
"rstrip": false,
|
20 |
-
"single_word": false
|
21 |
-
},
|
22 |
-
"pad_token": "</s>",
|
23 |
-
"unk_token": {
|
24 |
-
"content": "<unk>",
|
25 |
-
"lstrip": false,
|
26 |
-
"normalized": false,
|
27 |
-
"rstrip": false,
|
28 |
-
"single_word": false
|
29 |
-
}
|
30 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tokenizer.json
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:3db85ad6e5063687453d32b28de462a4fc7c6809c38c1b45326e2efe6e6fbee6
|
3 |
-
size 3620984
|
|
|
|
|
|
|
|
tokenizer.model
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:45ccb9c8b6b561889acea59191d66986d314e7cbd6a78abc6e49b139ca91c1e6
|
3 |
-
size 500058
|
|
|
|
|
|
|
|
tokenizer_config.json
DELETED
@@ -1,84 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"add_bos_token": true,
|
3 |
-
"add_eos_token": false,
|
4 |
-
"added_tokens_decoder": {
|
5 |
-
"0": {
|
6 |
-
"content": "<unk>",
|
7 |
-
"lstrip": false,
|
8 |
-
"normalized": false,
|
9 |
-
"rstrip": false,
|
10 |
-
"single_word": false,
|
11 |
-
"special": true
|
12 |
-
},
|
13 |
-
"1": {
|
14 |
-
"content": "<s>",
|
15 |
-
"lstrip": false,
|
16 |
-
"normalized": false,
|
17 |
-
"rstrip": false,
|
18 |
-
"single_word": false,
|
19 |
-
"special": true
|
20 |
-
},
|
21 |
-
"2": {
|
22 |
-
"content": "</s>",
|
23 |
-
"lstrip": false,
|
24 |
-
"normalized": false,
|
25 |
-
"rstrip": false,
|
26 |
-
"single_word": false,
|
27 |
-
"special": true
|
28 |
-
},
|
29 |
-
"32007": {
|
30 |
-
"content": "β<PRE>",
|
31 |
-
"lstrip": false,
|
32 |
-
"normalized": false,
|
33 |
-
"rstrip": false,
|
34 |
-
"single_word": false,
|
35 |
-
"special": true
|
36 |
-
},
|
37 |
-
"32008": {
|
38 |
-
"content": "β<SUF>",
|
39 |
-
"lstrip": false,
|
40 |
-
"normalized": false,
|
41 |
-
"rstrip": false,
|
42 |
-
"single_word": false,
|
43 |
-
"special": true
|
44 |
-
},
|
45 |
-
"32009": {
|
46 |
-
"content": "β<MID>",
|
47 |
-
"lstrip": false,
|
48 |
-
"normalized": false,
|
49 |
-
"rstrip": false,
|
50 |
-
"single_word": false,
|
51 |
-
"special": true
|
52 |
-
},
|
53 |
-
"32010": {
|
54 |
-
"content": "β<EOT>",
|
55 |
-
"lstrip": false,
|
56 |
-
"normalized": false,
|
57 |
-
"rstrip": false,
|
58 |
-
"single_word": false,
|
59 |
-
"special": true
|
60 |
-
}
|
61 |
-
},
|
62 |
-
"additional_special_tokens": [
|
63 |
-
"β<PRE>",
|
64 |
-
"β<MID>",
|
65 |
-
"β<SUF>",
|
66 |
-
"β<EOT>"
|
67 |
-
],
|
68 |
-
"bos_token": "<s>",
|
69 |
-
"clean_up_tokenization_spaces": false,
|
70 |
-
"eos_token": "</s>",
|
71 |
-
"eot_token": "β<EOT>",
|
72 |
-
"extra_special_tokens": {},
|
73 |
-
"fill_token": "<FILL_ME>",
|
74 |
-
"legacy": null,
|
75 |
-
"middle_token": "β<MID>",
|
76 |
-
"model_max_length": 1000000000000000019884624838656,
|
77 |
-
"pad_token": "</s>",
|
78 |
-
"prefix_token": "β<PRE>",
|
79 |
-
"sp_model_kwargs": {},
|
80 |
-
"suffix_token": "β<SUF>",
|
81 |
-
"tokenizer_class": "CodeLlamaTokenizer",
|
82 |
-
"unk_token": "<unk>",
|
83 |
-
"use_default_system_prompt": false
|
84 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|