Skip to content

Commit

Permalink
Merge pull request #273 from queryproc/flockmtl-v0.2.2
Browse files Browse the repository at this point in the history
flockmtl - bug fix release v0.2.3
  • Loading branch information
carlopi authored Jan 19, 2025
2 parents fc26c31 + a0239d6 commit e063e3c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions extensions/flockmtl/description.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
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
- queryproc

repo:
github: dsg-polymtl/flockmtl
ref: c8cad4a66a0a62164b845258b6a00e72c8470b3f
ref: 5c4d40bcd6e9918227a6b4e5b897c880e749355e

docs:
hello_world: |
Expand All @@ -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.'});
Expand Down

0 comments on commit e063e3c

Please sign in to comment.