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
]
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
[
t
o
o
l
,
r
e
q
]
g
i
v
e
s
t
h
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
g
e
n
e
r
a
t
e
d
b
y
e
x
e
c
u
t
i
n
g
t
o
o
l
o
n
t
h
e
L
L
M
T
o
o
l
R
e
q
u
e
s
t
r
e
q
.
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
[
{
t
o
o
l
1
,
t
o
o
l
2
,
…
}
,
r
e
q
]
p
i
c
k
s
a
t
o
o
l
b
a
s
e
d
o
n
r
e
q
.
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
[
c
o
n
f
i
g
,
r
e
q
]
u
s
e
s
t
h
e
t
o
o
l
s
f
r
o
m
a
n
L
L
M
C
o
n
f
i
g
u
r
a
t
i
o
n
.
D
e
t
a
i
l
s
a
n
d
O
p
t
i
o
n
s
Examples
(
2
)
Basic Examples
(
2
)
Create a tool and a request:
I
n
[
1
]
:
=
t
o
o
l
=
L
L
M
T
o
o
l
[
]
;
r
e
q
=
L
L
M
T
o
o
l
R
e
q
u
e
s
t
[
"
c
i
t
y
P
o
p
u
l
a
t
i
o
n
F
i
n
d
e
r
"
,
{
"
c
i
t
y
"
"
C
h
i
c
a
g
o
"
}
]
;
Generate the tool response:
I
n
[
2
]
:
=
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
[
t
o
o
l
,
r
e
q
]
O
u
t
[
2
]
=
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
t
o
o
l
:
L
L
M
T
o
o
l
n
a
m
e
:
c
i
t
y
P
o
p
u
l
a
t
i
o
n
F
i
n
d
e
r
d
e
s
c
r
i
p
t
i
o
n
:
G
e
t
t
h
e
p
o
p
u
l
a
t
i
o
n
o
f
c
i
t
i
e
s
.
p
a
r
a
m
e
t
e
r
v
a
l
u
e
s
:
c
i
t
y
C
h
i
c
a
g
o
o
u
t
p
u
t
:
2
7
4
6
3
8
8
p
e
o
p
l
e
Resolve the correct tool from a list:
I
n
[
1
]
:
=
t
o
o
l
s
=
L
L
M
T
o
o
l
[
]
,
L
L
M
T
o
o
l
[
]
;
r
e
q
=
L
L
M
T
o
o
l
R
e
q
u
e
s
t
[
"
c
i
t
y
P
o
p
u
l
a
t
i
o
n
F
i
n
d
e
r
"
,
{
"
c
i
t
y
"
"
C
h
i
c
a
g
o
"
}
]
;
I
n
[
2
]
:
=
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
[
t
o
o
l
s
,
r
e
q
]
O
u
t
[
2
]
=
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
t
o
o
l
:
L
L
M
T
o
o
l
n
a
m
e
:
c
i
t
y
P
o
p
u
l
a
t
i
o
n
F
i
n
d
e
r
d
e
s
c
r
i
p
t
i
o
n
:
G
e
t
t
h
e
p
o
p
u
l
a
t
i
o
n
o
f
c
i
t
i
e
s
.
p
a
r
a
m
e
t
e
r
v
a
l
u
e
s
:
c
i
t
y
C
h
i
c
a
g
o
o
u
t
p
u
t
:
2
7
4
6
3
8
8
p
e
o
p
l
e
If no matching tool is available,
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
fails:
I
n
[
3
]
:
=
G
e
n
e
r
a
t
e
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
t
o
o
l
s
,
L
L
M
T
o
o
l
R
e
q
u
e
s
t
[
"
n
o
n
e
x
i
s
t
a
n
t
T
o
o
l
"
,
{
"
c
i
t
y
"
"
C
h
i
c
a
g
o
"
}
]
O
u
t
[
3
]
=
F
a
i
l
u
r
e
M
e
s
s
a
g
e
:
N
o
t
o
o
l
w
i
t
h
n
a
m
e
n
o
n
e
x
i
s
t
a
n
t
T
o
o
l
f
o
u
n
d
f
r
o
m
t
o
o
l
l
i
s
t
.
T
a
g
:
I
n
v
a
l
i
d
L
L
M
T
o
o
l
R
e
q
u
e
s
t
N
a
m
e
S
e
e
A
l
s
o
L
L
M
T
o
o
l
R
e
s
p
o
n
s
e
▪
L
L
M
T
o
o
l
R
e
q
u
e
s
t
▪
L
L
M
C
o
n
f
i
g
u
r
a
t
i
o
n
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
"
"