add initial lsp support
This commit is contained in:
parent
afd9ad0560
commit
cfdd687216
47 changed files with 13991 additions and 451 deletions
|
|
@ -9,16 +9,12 @@ import (
|
|||
)
|
||||
|
||||
type Message struct {
|
||||
ID string `json:"id"`
|
||||
SessionID string `json:"session_id"`
|
||||
Role string `json:"role"`
|
||||
Content string `json:"content"`
|
||||
Thinking string `json:"thinking"`
|
||||
Finished bool `json:"finished"`
|
||||
ToolCalls sql.NullString `json:"tool_calls"`
|
||||
ToolResults sql.NullString `json:"tool_results"`
|
||||
CreatedAt int64 `json:"created_at"`
|
||||
UpdatedAt int64 `json:"updated_at"`
|
||||
ID string `json:"id"`
|
||||
SessionID string `json:"session_id"`
|
||||
Role string `json:"role"`
|
||||
Parts string `json:"parts"`
|
||||
CreatedAt int64 `json:"created_at"`
|
||||
UpdatedAt int64 `json:"updated_at"`
|
||||
}
|
||||
|
||||
type Session struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue