Skip to content
Snippets Groups Projects
Unverified Commit b7686a40 authored by Siraj R Aizlewood's avatar Siraj R Aizlewood
Browse files

Removed TODO, as already DONE.

parent cfc1c5d5
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,6 @@ class OpenAILLM(BaseLLM): ...@@ -87,7 +87,6 @@ class OpenAILLM(BaseLLM):
# #
def extract_function_inputs_openai(self, query: str, function_schema: dict) -> dict: def extract_function_inputs_openai(self, query: str, function_schema: dict) -> dict:
messages = [] messages = []
# TODO: Finish system prompt.
system_prompt = "You are an intelligent AI. Given a command or request from the user, call the function to complete the request." system_prompt = "You are an intelligent AI. Given a command or request from the user, call the function to complete the request."
messages.append(Message(role="system", content=system_prompt)) messages.append(Message(role="system", content=system_prompt))
messages.append(Message(role="user", content=query)) messages.append(Message(role="user", content=query))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment