-
Notifications
You must be signed in to change notification settings - Fork 88
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
fix: include universal patterns in bindings #431
Changes from 7 commits
4b863f4
1d188fa
a641417
95c3508
e19607b
3e3652d
4a46c95
04843e2
5569b66
1dd6b81
c81b8c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -494,3 +494,26 @@ fn length_fn<'a>( | |||||||||||||||||||||||||||||||||||||||||||||||||||||
None => Err(anyhow!("length argument must be a list or string")), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub fn get_ai_placeholder_functions() -> Option<BuiltIns> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Some( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
vec![ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
BuiltInFunction::new( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"llm_chat", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
vec!["model", "messages", "pattern"], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Box::new(ai_fn_placholder), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
BuiltInFunction::new("embedding", vec!["target"], Box::new(ai_fn_placholder)), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
.into(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the typo in the function name. The function name - Box::new(ai_fn_placholder),
+ Box::new(ai_fn_placeholder), Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn ai_fn_placholder<'a>( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
_args: &'a [Option<Pattern<MarzanoQueryContext>>], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
_context: &'a MarzanoContext<'a>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
_state: &mut State<'a, MarzanoQueryContext>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
_logs: &mut AnalysisLogs, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> Result<MarzanoResolvedPattern<'a>> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
bail!("AI features are not supported in your GritQL distribution. Please upgrade to the Enterprise version to use AI features.") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the typo in the function name. The function name -fn ai_fn_placholder<'a>(
+fn ai_fn_placeholder<'a>( Committable suggestion
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling: Typo in function name
ai_fn_placholder
. Should beai_fn_placeholder
.