Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flockmtl - bug fix release v0.2.3 #273

Merged
merged 2 commits into from
Jan 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading