Skip to content

Commit

Permalink
export images property
Browse files Browse the repository at this point in the history
  • Loading branch information
monofuel committed Jan 13, 2024
1 parent bec91e2 commit 50722e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/llama_leap.nim
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ type
eval_count*: int
eval_duration*: int
ChatMessage* = ref object
role*: string # "system" "user" or "assistant"
role*: string # "system" "user" or "assistant"
content*: string
images: Option[seq[string]] # list of base64 encoded images
images*: Option[seq[string]] # list of base64 encoded images
ChatReq* = ref object
model*: string
messages*: seq[ChatMessage]
Expand Down

0 comments on commit 50722e8

Please sign in to comment.