Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Semantic Router
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
aurelio-labs
Semantic Router
Commits
5657a4d9
Unverified
Commit
5657a4d9
authored
1 year ago
by
James Briggs
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #100 from hananell/prompt_fix
fix: improve hard coded prompts
parents
c1229873
7a070a37
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
semantic_router/route.py
+23
-23
23 additions, 23 deletions
semantic_router/route.py
semantic_router/utils/function_call.py
+30
-27
30 additions, 27 deletions
semantic_router/utils/function_call.py
with
53 additions
and
50 deletions
semantic_router/route.py
+
23
−
23
View file @
5657a4d9
...
@@ -96,29 +96,29 @@ class Route(BaseModel):
...
@@ -96,29 +96,29 @@ class Route(BaseModel):
logger
.
info
(
"
Generating dynamic route...
"
)
logger
.
info
(
"
Generating dynamic route...
"
)
prompt
=
f
"""
prompt
=
f
"""
You are tasked to generate a JSON configuration based on the provided
You are tasked to generate a JSON configuration based on the provided
function schema. Please follow the template below, no other tokens allowed:
function schema. Please follow the template below, no other tokens allowed:
<config>
<config>
{{
{{
"
name
"
:
"
<function_name>
"
,
"
name
"
:
"
<function_name>
"
,
"
utterances
"
: [
"
utterances
"
: [
"
<example_utterance_1>
"
,
"
<example_utterance_1>
"
,
"
<example_utterance_2>
"
,
"
<example_utterance_2>
"
,
"
<example_utterance_3>
"
,
"
<example_utterance_3>
"
,
"
<example_utterance_4>
"
,
"
<example_utterance_4>
"
,
"
<example_utterance_5>
"
]
"
<example_utterance_5>
"
]
}}
}}
</config>
</config>
Only include the
"
name
"
and
"
utterances
"
keys in your answer.
Only include the
"
name
"
and
"
utterances
"
keys in your answer.
The
"
name
"
should match the function name and the
"
utterances
"
The
"
name
"
should match the function name and the
"
utterances
"
should comprise a list of 5 example phrases that could be used to invoke
should comprise a list of 5 example phrases that could be used to invoke
the function. Use real values instead of placeholders.
the function. Use real values instead of placeholders.
Input schema:
Input schema:
{
function_schema
}
{
function_schema
}
"""
"""
llm_input
=
[
Message
(
role
=
"
user
"
,
content
=
prompt
)]
llm_input
=
[
Message
(
role
=
"
user
"
,
content
=
prompt
)]
output
=
llm
(
llm_input
)
output
=
llm
(
llm_input
)
...
...
This diff is collapsed.
Click to expand it.
semantic_router/utils/function_call.py
+
30
−
27
View file @
5657a4d9
...
@@ -47,33 +47,36 @@ def extract_function_inputs(
...
@@ -47,33 +47,36 @@ def extract_function_inputs(
logger
.
info
(
"
Extracting function input...
"
)
logger
.
info
(
"
Extracting function input...
"
)
prompt
=
f
"""
prompt
=
f
"""
You are a helpful assistant designed to output JSON.
You are a helpful assistant designed to output JSON.
Given the following function schema
Given the following function schema
<<
{
function_schema
}
>>
<<
{
function_schema
}
>>
and query
and query
<<
{
query
}
>>
<<
{
query
}
>>
extract the parameters values from the query, in a valid JSON format.
extract the parameters values from the query, in a valid JSON format.
Example:
Example:
Input:
Input:
query:
"
How is the weather in Hawaii right now in International units?
"
query:
"
How is the weather in Hawaii right now in International units?
"
schema:
schema:
{{
{{
"
name
"
:
"
get_weather
"
,
"
name
"
:
"
get_weather
"
,
"
description
"
:
"
Useful to get the weather in a specific location
"
,
"
description
"
:
"
Useful to get the weather in a specific location
"
,
"
signature
"
:
"
(location: str, degree: str) -> str
"
,
"
signature
"
:
"
(location: str, degree: str) -> float
"
,
"
output
"
:
"
<class
'
str
'
>
"
,
"
output
"
:
"
<class
'
float
'
>
"
,
}}
}}
Result: {{
Result:
"
location
"
:
"
London
"
,
{{
"
degree
"
:
"
Celsius
"
,
"
location
"
:
"
Hawaii
"
,
}}
"
degree
"
:
"
Kelvin
"
,
}}
Input:
query:
{
query
}
Input:
schema:
{
function_schema
}
query:
\"
{
query
}
\"
Result:
schema:
"""
{
json
.
dumps
(
function_schema
,
indent
=
4
)
}
Result:
"""
llm_input
=
[
Message
(
role
=
"
user
"
,
content
=
prompt
)]
llm_input
=
[
Message
(
role
=
"
user
"
,
content
=
prompt
)]
output
=
llm
(
llm_input
)
output
=
llm
(
llm_input
)
if
not
output
:
if
not
output
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment