rdubwiley commited on
Commit
540291f
·
verified ·
1 Parent(s): 9015922

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ base_model: google/gemma-4-E4B-it
4
+ tags:
5
+ - gguf
6
+ - llama.cpp
7
+ - agent
8
+ - tool-use
9
+ - agenda-parser
10
+ ---
11
+
12
+ # agenda-parser-lite (GGUF)
13
+
14
+ LoRA SFT fine-tune of [`google/gemma-4-E4B-it`](https://huggingface.co/google/gemma-4-E4B-it) for the
15
+ **Agenda Parser** research agent's ReAct tool-calling protocol — the model emits a
16
+ single JSON action `{"thought", "tool", "args"}` per step over a public-meeting
17
+ agenda packet. Quantized to **Q8_0** for [llama.cpp](https://github.com/ggml-org/llama.cpp).
18
+
19
+ ## Training data
20
+
21
+ Distilled from strong teacher models (Kimi k2.6, DeepSeek 4 pro via OpenCode Go) on
22
+ the [`rdubwiley/agenda-parser-tool-traces`](https://huggingface.co/datasets/rdubwiley/agenda-parser-tool-traces) trace dataset
23
+ (faithfulness-judged). One agent step per example; loss on the assistant JSON span.
24
+ The source agenda packets the traces were generated over are published in that
25
+ dataset's [`source_packets/`](https://huggingface.co/datasets/rdubwiley/agenda-parser-tool-traces/tree/main/source_packets)
26
+ folder.
27
+
28
+ ## Run
29
+
30
+ ```bash
31
+ huggingface-cli download rdubwiley/agenda-parser-lite agenda-parser-lite-Q8_0.gguf
32
+ llama-server -m agenda-parser-lite-Q8_0.gguf --jinja # --jinja enables the chat/tool template
33
+ ```
34
+
35
+ ## Intended use & limitations
36
+
37
+ For driving the Agenda Parser agent (in-process llama.cpp backend) over uploaded
38
+ agenda PDFs. Not a general assistant; answers should be checked against the source
39
+ packet. Inherits the [Gemma Terms of Use](https://ai.google.dev/gemma/terms).