Wolfram Language
Paclet Repository
Community-contributed installable additions to the Wolfram Language
Primary Navigation
Categories
Cloud & Deployment
Core Language & Structure
Data Manipulation & Analysis
Engineering Data & Computation
External Interfaces & Connections
Financial Data & Computation
Geographic Data & Computation
Geometry
Graphs & Networks
Higher Mathematical Computation
Images
Knowledge Representation & Natural Language
Machine Learning
Notebook Documents & Presentation
Scientific and Medical Data & Computation
Social, Cultural & Linguistic Data
Strings & Text
Symbolic & Numeric Computation
System Operation & Setup
Time-Related Computation
User Interface Construction
Visualization & Graphics
Random Paclet
Alphabetical List
Using Paclets
Create a Paclet
Get Started
Download Definition Notebook
Learn More about
Wolfram Language
LLMFunctions
Guides
LLM-Related Functionality
Symbols
ChatEvaluate
ChatObject
GenerateLLMToolResponse
ImageSynthesize
LLMConfiguration
LLMEvaluator
LLMExampleFunction
LLMFunction
LLMPrompt
LLMResourceFunction
LLMSynthesize
LLMTool
LLMToolRequest
LLMToolResponse
$LLMEvaluator
[
EXPERIMENTAL
]
L
L
M
E
x
a
m
p
l
e
F
u
n
c
t
i
o
n
L
L
M
E
x
a
m
p
l
e
F
u
n
c
t
i
o
n
[
{
i
n
1
o
u
t
1
,
i
n
2
o
u
t
2
,
…
}
]
c
r
e
a
t
e
s
a
n
L
L
M
F
u
n
c
t
i
o
n
f
r
o
m
f
e
w
-
s
h
o
t
e
x
a
m
p
l
e
s
.
L
L
M
E
x
a
m
p
l
e
F
u
n
c
t
i
o
n
[
{
i
n
1
,
i
n
2
,
…
}
{
o
u
t
1
,
o
u
t
2
,
…
}
]
g
e
n
e
r
a
t
e
s
t
h
e
s
a
m
e
r
e
s
u
l
t
.
L
L
M
E
x
a
m
p
l
e
F
u
n
c
t
i
o
n
[
{
h
e
a
d
e
r
,
t
r
a
i
n
i
n
g
}
]
p
r
e
f
a
c
e
s
t
h
e
p
r
o
m
p
t
w
i
t
h
h
e
a
d
e
r
.
L
L
M
E
x
a
m
p
l
e
F
u
n
c
t
i
o
n
[
p
r
o
m
p
t
i
n
g
,
f
o
r
m
]
i
n
c
l
u
d
e
s
t
h
e
i
n
t
e
r
p
r
e
t
e
r
f
o
r
m
t
o
a
p
p
l
y
t
o
t
h
e
r
e
s
p
o
n
s
e
.
D
e
t
a
i
l
s
a
n
d
O
p
t
i
o
n
s
Examples
(
5
)
Basic Examples
(
2
)
Create an
L
L
M
F
u
n
c
t
i
o
n
from a small training set:
I
n
[
1
]
:
=
f
u
n
=
L
L
M
E
x
a
m
p
l
e
F
u
n
c
t
i
o
n
[
{
{
1
,
1
}
2
,
{
1
,
2
}
3
,
{
2
,
2
}
4
}
]
O
u
t
[
1
]
=
L
L
M
F
u
n
c
t
i
o
n
t
e
m
p
l
a
t
e
:
I
n
p
u
t
:
{
1
,
1
}
O
u
t
p
u
t
:
2
I
n
p
u
t
:
{
1
,
2
}
O
u
t
p
u
t
:
3
I
n
p
u
t
:
{
2
,
2
}
O
u
t
p
u
t
:
4
I
n
p
u
t
:
1
O
u
t
p
u
t
:
i
n
t
e
r
p
r
e
t
e
r
:
S
t
r
i
n
g
Evaluate the function on an input:
I
n
[
2
]
:
=
f
u
n
[
{
3
,
4
}
]
O
u
t
[
2
]
=
7
Clarify the task and process the output string using an interpreter type:
I
n
[
1
]
:
=
f
u
n
=
L
L
M
E
x
a
m
p
l
e
F
u
n
c
t
i
o
n
[
{
"
w
h
a
t
i
s
t
h
e
c
i
t
y
w
i
t
h
t
h
i
s
n
i
c
k
n
a
m
e
?
"
,
{
"
w
i
n
d
y
c
i
t
y
"
"
C
h
i
c
a
g
o
"
,
"
b
i
g
a
p
p
l
e
"
"
N
e
w
Y
o
r
k
"
}
}
,
"
C
i
t
y
"
]
O
u
t
[
1
]
=
L
L
M
F
u
n
c
t
i
o
n
t
e
m
p
l
a
t
e
:
w
h
a
t
i
s
t
h
e
c
i
t
y
w
i
t
h
t
h
i
s
n
i
c
k
n
a
m
e
?
I
n
p
u
t
:
w
i
n
d
y
c
i
t
y
O
u
t
p
u
t
:
C
h
i
c
a
g
o
I
n
p
u
t
:
b
i
g
a
p
p
l
e
O
u
t
p
u
t
:
N
e
w
Y
o
r
k
I
n
p
u
t
:
1
O
u
t
p
u
t
:
i
n
t
e
r
p
r
e
t
e
r
:
C
i
t
y
Evaluate the function on an input:
I
n
[
2
]
:
=
f
u
n
[
"
m
o
t
o
r
c
i
t
y
"
]
O
u
t
[
2
]
=
D
e
t
r
o
i
t
S
c
o
p
e
(
3
)
S
e
e
A
l
s
o
L
L
M
F
u
n
c
t
i
o
n
▪
L
L
M
P
r
o
m
p
t
▪
L
L
M
T
o
o
l
R
e
l
a
t
e
d
G
u
i
d
e
s
▪
L
L
M
-
R
e
l
a
t
e
d
F
u
n
c
t
i
o
n
a
l
i
t
y
"
"