diff --git a/extensions/flockmtl/description.yml b/extensions/flockmtl/description.yml index ea2a679..1442e0f 100644 --- a/extensions/flockmtl/description.yml +++ b/extensions/flockmtl/description.yml @@ -1,10 +1,12 @@ extension: name: flockmtl description: LLM & RAG extension to combine analytics and semantic analysis - version: 0.2.2 + version: 0.2.3 language: SQL & C++ build: cmake license: MIT + excluded_platforms: "wasm_mvp;wasm_eh;wasm_threads" + maintainers: - dorbanianas - SunnyYasser @@ -12,7 +14,7 @@ extension: repo: github: dsg-polymtl/flockmtl - ref: c8cad4a66a0a62164b845258b6a00e72c8470b3f + ref: 5c4d40bcd6e9918227a6b4e5b897c880e749355e docs: hello_world: | @@ -38,7 +40,7 @@ docs: D CREATE PROMPT('summarize', 'summarize the text into 1 word: {{text}}'); -- Create a variable name for the model to do the summarizing - D CREATE MODEL('summarizer-model', 'gpt-4o', {'context_window': 128000, 'max_output_tokens': 16400); + D CREATE MODEL('summarizer-model', 'gpt-4o', {'context_window': 128000, 'max_output_tokens': 16400}); -- Summarize text and pass it as parameter D SELECT llm_complete({'model_name': 'summarizer-model'}, {'prompt_name': 'summarize'}, {'text': 'We support more functions and approaches to combine relational analytics and semantic analysis. Check our repo for documentation and examples.'});