Add functions parameters
This commit is contained in:
parent
57db1f9570
commit
b43917c144
3 changed files with 20 additions and 0 deletions
|
@ -1435,6 +1435,8 @@ class Llama:
|
|||
def create_chat_completion(
|
||||
self,
|
||||
messages: List[ChatCompletionMessage],
|
||||
functions: Optional[List[ChatCompletionFunction]] = None,
|
||||
function_call: Optional[Union[str, ChatCompletionFunctionCall]] = None,
|
||||
temperature: float = 0.2,
|
||||
top_p: float = 0.95,
|
||||
top_k: int = 40,
|
||||
|
|
|
@ -63,6 +63,16 @@ class ChatCompletionMessage(TypedDict):
|
|||
user: NotRequired[str]
|
||||
|
||||
|
||||
class ChatCompletionFunction(TypedDict):
|
||||
name: str
|
||||
description: NotRequired[str]
|
||||
parameters: Dict[str, Any] # TODO: make this more specific
|
||||
|
||||
|
||||
class ChatCompletionFunctionCall(TypedDict):
|
||||
name: str
|
||||
|
||||
|
||||
class ChatCompletionChoice(TypedDict):
|
||||
index: int
|
||||
message: ChatCompletionMessage
|
||||
|
|
|
@ -446,6 +446,14 @@ class CreateChatCompletionRequest(BaseModel):
|
|||
messages: List[ChatCompletionRequestMessage] = Field(
|
||||
default=[], description="A list of messages to generate completions for."
|
||||
)
|
||||
functions: Optional[List[llama_cpp.ChatCompletionFunction]] = Field(
|
||||
default=None,
|
||||
description="A list of functions to apply to the generated completions.",
|
||||
)
|
||||
function_call: Optional[Union[str, llama_cpp.ChatCompletionFunctionCall]] = Field(
|
||||
default=None,
|
||||
description="A function to apply to the generated completions.",
|
||||
)
|
||||
max_tokens: int = max_tokens_field
|
||||
temperature: float = temperature_field
|
||||
top_p: float = top_p_field
|
||||
|
|
Loading…
Reference in a new issue