@@ -26,17 +26,17 @@ async def on_message_create(event: interactions.api.events.MessageCreate) -> Non
26
26
27
27
28
28
@interactions .slash_command (name = "ask" , description = "Ask an LLM to answer anything" )
29
+ @interactions .slash_option (
30
+ name = "prompt" , description = "Enter your prompt" , required = True , opt_type = interactions .OptionType .STRING , min_length = 10
31
+ )
29
32
@interactions .slash_option (
30
33
name = "model" ,
31
34
description = "Choose an LLM model" ,
32
- required = True ,
35
+ required = False ,
33
36
opt_type = interactions .OptionType .STRING ,
34
- autocomplete = True ,
37
+ choices = [ interactions . SlashCommandChoice ( name = model , value = model ) for model in MODEL_CHOICES ] ,
35
38
)
36
- @interactions .slash_option (
37
- name = "prompt" , description = "Enter your prompt" , required = True , opt_type = interactions .OptionType .STRING , min_length = 10
38
- )
39
- async def ask (ctx : interactions .SlashContext , model : str = "" , prompt : str = "" ) -> None :
39
+ async def ask (ctx : interactions .SlashContext , prompt : str = "" , model : str = DEFAULT_MODEL ) -> None :
40
40
if model not in MODEL_CHOICES :
41
41
await ctx .send (f"Invalid model `{ model } `. Please choose from `{ MODEL_CHOICES } `." )
42
42
return
@@ -48,25 +48,6 @@ async def ask(ctx: interactions.SlashContext, model: str = "", prompt: str = "")
48
48
await ctx .send (r )
49
49
50
50
51
- @ask .autocomplete ("model" )
52
- async def autocomplete (ctx : interactions .AutocompleteContext ) -> None :
53
- string_option_input = ctx .input_text
54
- # you can use ctx.kwargs.get("name") to get the current state of other options - note they can be empty too
55
- # make sure you respond within three seconds
56
-
57
- filtered_choices = [choice for choice in MODEL_CHOICES if string_option_input in choice ]
58
-
59
- await ctx .send (
60
- choices = [
61
- {
62
- "name" : choice ,
63
- "value" : choice ,
64
- }
65
- for choice in filtered_choices
66
- ]
67
- )
68
-
69
-
70
51
@interactions .slash_command (name = "review-resume" , description = "Ask an LLM to review a resume" )
71
52
@interactions .slash_option (
72
53
name = "url" ,
0 commit comments