Skip to content
Snippets Groups Projects
Unverified Commit 5657a4d9 authored by James Briggs's avatar James Briggs Committed by GitHub
Browse files

Merge pull request #100 from hananell/prompt_fix

fix: improve hard coded prompts
parents c1229873 7a070a37
No related branches found
No related tags found
No related merge requests found
...@@ -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)
......
...@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment