Update README.md
Browse files
README.md
CHANGED
|
@@ -8,11 +8,11 @@ tags: [green, p1, llmware-fx, ov, emerald]
|
|
| 8 |
|
| 9 |
**slim-extract-tiny-ov** is a specialized function calling model with a single mission to look for values in a text, based on an "extract" key that is passed as a parameter. No other instructions are required except to pass the context passage, and the target key, e.g.,
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
|
| 18 |
This is an OpenVino int4 quantized version of slim-extract-tiny, providing a very fast, very small inference implementation, optimized for AI PCs using Intel GPU, CPU and NPU.
|
|
|
|
| 8 |
|
| 9 |
**slim-extract-tiny-ov** is a specialized function calling model with a single mission to look for values in a text, based on an "extract" key that is passed as a parameter. No other instructions are required except to pass the context passage, and the target key, e.g.,
|
| 10 |
|
| 11 |
+
text_passage = "The company announced that for the current quarter the total revenue increased by 9% to $125 million."
|
| 12 |
|
| 13 |
+
llm_response = model.function_call(text_passage, function="extract", params=["revenue"])
|
| 14 |
|
| 15 |
+
Output: `llm_response = {"revenue": [$125 million"]}`
|
| 16 |
|
| 17 |
|
| 18 |
This is an OpenVino int4 quantized version of slim-extract-tiny, providing a very fast, very small inference implementation, optimized for AI PCs using Intel GPU, CPU and NPU.
|