rework llm

This commit is contained in:
Kujtim Hoxha
2025-04-01 13:38:54 +02:00
parent 904061c243
commit afd9ad0560
61 changed files with 5881 additions and 2073 deletions
+1
View File
@@ -18,6 +18,7 @@ type Querier interface {
GetSessionByID(ctx context.Context, id string) (Session, error)
ListMessagesBySession(ctx context.Context, sessionID string) ([]Message, error)
ListSessions(ctx context.Context) ([]Session, error)
UpdateMessage(ctx context.Context, arg UpdateMessageParams) error
UpdateSession(ctx context.Context, arg UpdateSessionParams) (Session, error)
}