Skip to content

Commit 13e735f

Browse files
authored
tune agentic demo (#3629)
1 parent 33bdaa5 commit 13e735f

File tree

4 files changed

+105
-42
lines changed

4 files changed

+105
-42
lines changed

ci/lib_search.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def check_dir(start_dir):
151151
"results.txt",
152152
]
153153

154-
exclude_directories = ['/dist/', 'release_files/thirdparty-licenses']
154+
exclude_directories = ['/dist/', 'release_files/thirdparty-licenses', 'extras/chat_template_examples']
155155

156156
for (d_path, _, file_set) in os.walk(start_dir):
157157
for f_name in file_set:
@@ -191,6 +191,7 @@ def check_func(start_dir):
191191
'.venv',
192192
'.vscode',
193193
'.xml',
194+
'.jinja'
194195
'Doxyfile',
195196
'REST_age_gender.ipynb',
196197
'__pycache__',

demos/common/export_models/README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@ python export_model.py text_generation --help
3737
```
3838
Expected Output:
3939
```console
40-
usage: export_model.py text_generation [-h] [--model_repository_path MODEL_REPOSITORY_PATH] --source_model SOURCE_MODEL [--model_name MODEL_NAME] [--weight-format PRECISION] [--config_file_path CONFIG_FILE_PATH]
41-
[--overwrite_models] [--target_device TARGET_DEVICE] [--ov_cache_dir OV_CACHE_DIR] [--extra_quantization_params EXTRA_QUANTIZATION_PARAMS] [--pipeline_type {LM,LM_CB,VLM,VLM_CB,AUTO}]
42-
[--kv_cache_precision {u8}] [--enable_prefix_caching] [--disable_dynamic_split_fuse] [--max_num_batched_tokens MAX_NUM_BATCHED_TOKENS] [--max_num_seqs MAX_NUM_SEQS]
43-
[--cache_size CACHE_SIZE] [--draft_source_model DRAFT_SOURCE_MODEL] [--draft_model_name DRAFT_MODEL_NAME] [--max_prompt_len MAX_PROMPT_LEN] [--prompt_lookup_decoding]
44-
[--reasoning_parser {qwen3}] [--tool_parser {llama3,phi4,hermes3,qwen3}] [--enable_tool_guided_generation]
40+
usage: export_model.py text_generation [-h] [--model_repository_path MODEL_REPOSITORY_PATH] --source_model SOURCE_MODEL [--model_name MODEL_NAME] [--weight-format PRECISION] [--config_file_path CONFIG_FILE_PATH] [--overwrite_models] [--target_device TARGET_DEVICE]
41+
[--ov_cache_dir OV_CACHE_DIR] [--extra_quantization_params EXTRA_QUANTIZATION_PARAMS] [--pipeline_type {LM,LM_CB,VLM,VLM_CB,AUTO}] [--kv_cache_precision {u8}] [--enable_prefix_caching] [--disable_dynamic_split_fuse]
42+
[--max_num_batched_tokens MAX_NUM_BATCHED_TOKENS] [--max_num_seqs MAX_NUM_SEQS] [--cache_size CACHE_SIZE] [--draft_source_model DRAFT_SOURCE_MODEL] [--draft_model_name DRAFT_MODEL_NAME] [--max_prompt_len MAX_PROMPT_LEN] [--prompt_lookup_decoding]
43+
[--reasoning_parser {qwen3}] [--tool_parser {llama3,phi4,hermes3,mistral}] [--enable_tool_guided_generation]
4544

4645
options:
4746
-h, --help show this help message and exit
@@ -86,7 +85,7 @@ options:
8685
Set pipeline to use prompt lookup decoding
8786
--reasoning_parser {qwen3}
8887
Set the type of the reasoning parser for reasoning content extraction
89-
--tool_parser {llama3,phi4,hermes3}
88+
--tool_parser {llama3,phi4,hermes3,mistral}
9089
Set the type of the tool parser for tool calls extraction
9190
--enable_tool_guided_generation
9291
Enables enforcing tool schema during generation. Requires setting tool_parser

0 commit comments

Comments
 (0)