Files changed (1) hide show
  1. README.md +44 -1
README.md CHANGED
@@ -8,4 +8,47 @@ base_model:
8
  - Qwen/Qwen3-4B-Instruct-2507
9
  ---
10
 
11
- For information on how to do inference or training on this model go to the [Agent Tool Interface Optimizer](https://github.com/intuit-ai-research/tool-optimizer).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - Qwen/Qwen3-4B-Instruct-2507
9
  ---
10
 
11
+ For information on how to do inference or training on this model go to the [Agent Tool Interface Optimizer](https://github.com/intuit-ai-research/tool-optimizer).
12
+
13
+
14
+ SFT prompt (Trace-free)
15
+ ```
16
+ You are an API documentation specialist.
17
+
18
+ Rewrite the API description so an AI agent can:
19
+ 1) Decide when to use this API
20
+ 2) Generate valid parameters
21
+
22
+ Inputs:
23
+ - API name: {tool_name}
24
+ - Parameter schema: {parameter_json}
25
+ - Baseline description: {original_description}
26
+
27
+ Infer (do not output):
28
+ - When to use vs not use this API
29
+ - Required vs optional parameters
30
+ - Parameter meanings and constraints
31
+ - Cross-parameter dependencies or exclusions
32
+ - Common parameter mistakes
33
+ - no examples are provided, infer from the schema and baseline description only
34
+
35
+ Write a clear API description that:
36
+ - States when to use and NOT use the API
37
+ - Does not invent or reference non-provided APIs
38
+ - Explains each parameter's meaning, type, required/optional status, constraints, and defaults
39
+ - Describes likely validation failures and how to avoid them
40
+ - Abstracts patterns into general rules
41
+ - Does not restate the full schema verbatim
42
+ - Does not mention whether examples were provided
43
+
44
+ You may replace the baseline description entirely.
45
+
46
+ Output ONLY valid JSON (no markdown, no code blocks):
47
+ {{"description": "<your improved API description here>"}}
48
+ ```
49
+
50
+ Example (Before vs After)
51
+
52
+
53
+ ![Screenshot 2026-02-20 at 5.23.36 PM](https://cdn-uploads.huggingface.co/production/uploads/65dcb410bda21d181b38321b/dFj0XgXancXD51iyGxC83.png)
54
+