2024-06-21 01:27:35 +02:00
const { v4 : uuidv4 } = require ( "uuid" ) ;
const { WorkspaceThread } = require ( "../../../models/workspaceThread" ) ;
const { Workspace } = require ( "../../../models/workspace" ) ;
const { validApiKey } = require ( "../../../utils/middleware/validApiKey" ) ;
const { reqBody , multiUserMode } = require ( "../../../utils/http" ) ;
const { chatWithWorkspace } = require ( "../../../utils/chats" ) ;
const {
streamChatWithWorkspace ,
VALID _CHAT _MODE ,
} = require ( "../../../utils/chats/stream" ) ;
const { Telemetry } = require ( "../../../models/telemetry" ) ;
const { EventLogs } = require ( "../../../models/eventLogs" ) ;
const {
writeResponseChunk ,
convertToChatHistory ,
} = require ( "../../../utils/helpers/chat/responses" ) ;
const { WorkspaceChats } = require ( "../../../models/workspaceChats" ) ;
const { User } = require ( "../../../models/user" ) ;
function apiWorkspaceThreadEndpoints ( app ) {
if ( ! app ) return ;
app . post (
"/v1/workspace/:slug/thread/new" ,
[ validApiKey ] ,
async ( request , response ) => {
/ *
# swagger . tags = [ 'Workspace Threads' ]
# swagger . description = 'Create a new workspace thread'
# swagger . parameters [ 'slug' ] = {
in : 'path' ,
description : 'Unique slug of workspace' ,
required : true ,
type : 'string'
}
# swagger . requestBody = {
description : 'Optional userId associated with the thread' ,
required : false ,
type : 'object' ,
content : {
"application/json" : {
example : {
userId : 1
}
}
}
}
# swagger . responses [ 200 ] = {
content : {
"application/json" : {
schema : {
type : 'object' ,
example : {
thread : {
"id" : 1 ,
"name" : "Thread" ,
"slug" : "thread-uuid" ,
"user_id" : 1 ,
"workspace_id" : 1
} ,
message : null
}
}
}
}
}
# swagger . responses [ 403 ] = {
schema : {
"$ref" : "#/definitions/InvalidAPIKey"
}
}
* /
try {
const { slug } = request . params ;
const { userId } = reqBody ( request ) ;
const workspace = await Workspace . get ( { slug } ) ;
if ( ! workspace ) {
response . sendStatus ( 400 ) . end ( ) ;
return ;
}
const { thread , message } = await WorkspaceThread . new (
workspace ,
userId ? Number ( userId ) : null
) ;
await Telemetry . sendTelemetry ( "workspace_thread_created" , {
multiUserMode : multiUserMode ( response ) ,
LLMSelection : process . env . LLM _PROVIDER || "openai" ,
Embedder : process . env . EMBEDDING _ENGINE || "inherit" ,
VectorDbSelection : process . env . VECTOR _DB || "lancedb" ,
} ) ;
await EventLogs . logEvent ( "api_workspace_thread_created" , {
workspaceName : workspace ? . name || "Unknown Workspace" ,
} ) ;
response . status ( 200 ) . json ( { thread , message } ) ;
} catch ( e ) {
2024-07-04 01:39:33 +02:00
console . error ( e . message , e ) ;
2024-06-21 01:27:35 +02:00
response . sendStatus ( 500 ) . end ( ) ;
}
}
) ;
app . post (
"/v1/workspace/:slug/thread/:threadSlug/update" ,
[ validApiKey ] ,
async ( request , response ) => {
/ *
# swagger . tags = [ 'Workspace Threads' ]
# swagger . description = 'Update thread name by its unique slug.'
# swagger . path = '/v1/workspace/{slug}/thread/{threadSlug}/update'
# swagger . parameters [ 'slug' ] = {
in : 'path' ,
description : 'Unique slug of workspace' ,
required : true ,
type : 'string'
}
# swagger . parameters [ 'threadSlug' ] = {
in : 'path' ,
description : 'Unique slug of thread' ,
required : true ,
type : 'string'
}
# swagger . requestBody = {
description : 'JSON object containing new name to update the thread.' ,
required : true ,
type : 'object' ,
content : {
"application/json" : {
example : {
"name" : 'Updated Thread Name'
}
}
}
}
# swagger . responses [ 200 ] = {
content : {
"application/json" : {
schema : {
type : 'object' ,
example : {
thread : {
"id" : 1 ,
"name" : "Updated Thread Name" ,
"slug" : "thread-uuid" ,
"user_id" : 1 ,
"workspace_id" : 1
} ,
message : null ,
}
}
}
}
}
# swagger . responses [ 403 ] = {
schema : {
"$ref" : "#/definitions/InvalidAPIKey"
}
}
* /
try {
const { slug , threadSlug } = request . params ;
const { name } = reqBody ( request ) ;
const workspace = await Workspace . get ( { slug } ) ;
const thread = await WorkspaceThread . get ( {
slug : threadSlug ,
workspace _id : workspace . id ,
} ) ;
if ( ! workspace || ! thread ) {
response . sendStatus ( 400 ) . end ( ) ;
return ;
}
const { thread : updatedThread , message } = await WorkspaceThread . update (
thread ,
{ name }
) ;
response . status ( 200 ) . json ( { thread : updatedThread , message } ) ;
} catch ( e ) {
2024-07-04 01:39:33 +02:00
console . error ( e . message , e ) ;
2024-06-21 01:27:35 +02:00
response . sendStatus ( 500 ) . end ( ) ;
}
}
) ;
app . delete (
"/v1/workspace/:slug/thread/:threadSlug" ,
[ validApiKey ] ,
async ( request , response ) => {
/ *
# swagger . tags = [ 'Workspace Threads' ]
# swagger . description = 'Delete a workspace thread'
# swagger . parameters [ 'slug' ] = {
in : 'path' ,
description : 'Unique slug of workspace' ,
required : true ,
type : 'string'
}
# swagger . parameters [ 'threadSlug' ] = {
in : 'path' ,
description : 'Unique slug of thread' ,
required : true ,
type : 'string'
}
# swagger . responses [ 200 ] = {
description : 'Thread deleted successfully'
}
# swagger . responses [ 403 ] = {
schema : {
"$ref" : "#/definitions/InvalidAPIKey"
}
}
* /
try {
const { slug , threadSlug } = request . params ;
const workspace = await Workspace . get ( { slug } ) ;
if ( ! workspace ) {
response . sendStatus ( 400 ) . end ( ) ;
return ;
}
await WorkspaceThread . delete ( {
slug : threadSlug ,
workspace _id : workspace . id ,
} ) ;
response . sendStatus ( 200 ) . end ( ) ;
} catch ( e ) {
2024-07-04 01:39:33 +02:00
console . error ( e . message , e ) ;
2024-06-21 01:27:35 +02:00
response . sendStatus ( 500 ) . end ( ) ;
}
}
) ;
app . get (
"/v1/workspace/:slug/thread/:threadSlug/chats" ,
[ validApiKey ] ,
async ( request , response ) => {
/ *
# swagger . tags = [ 'Workspace Threads' ]
# swagger . description = 'Get chats for a workspace thread'
# swagger . parameters [ 'slug' ] = {
in : 'path' ,
description : 'Unique slug of workspace' ,
required : true ,
type : 'string'
}
# swagger . parameters [ 'threadSlug' ] = {
in : 'path' ,
description : 'Unique slug of thread' ,
required : true ,
type : 'string'
}
# swagger . responses [ 200 ] = {
content : {
"application/json" : {
schema : {
type : 'object' ,
example : {
history : [
{
"role" : "user" ,
"content" : "What is AnythingLLM?" ,
"sentAt" : 1692851630
} ,
{
"role" : "assistant" ,
"content" : "AnythingLLM is a platform that allows you to convert notes, PDFs, and other source materials into a chatbot. It ensures privacy, cites its answers, and allows multiple people to interact with the same documents simultaneously. It is particularly useful for businesses to enhance the visibility and readability of various written communications such as SOPs, contracts, and sales calls. You can try it out with a free trial to see if it meets your business needs." ,
"sources" : [ { "source" : "object about source document and snippets used" } ]
}
]
}
}
}
}
}
# swagger . responses [ 403 ] = {
schema : {
"$ref" : "#/definitions/InvalidAPIKey"
}
}
* /
try {
const { slug , threadSlug } = request . params ;
const workspace = await Workspace . get ( { slug } ) ;
const thread = await WorkspaceThread . get ( {
slug : threadSlug ,
workspace _id : workspace . id ,
} ) ;
if ( ! workspace || ! thread ) {
response . sendStatus ( 400 ) . end ( ) ;
return ;
}
const history = await WorkspaceChats . where (
{
workspaceId : workspace . id ,
thread _id : thread . id ,
include : true ,
} ,
null ,
{ id : "asc" }
) ;
response . status ( 200 ) . json ( { history : convertToChatHistory ( history ) } ) ;
} catch ( e ) {
2024-07-04 01:39:33 +02:00
console . error ( e . message , e ) ;
2024-06-21 01:27:35 +02:00
response . sendStatus ( 500 ) . end ( ) ;
}
}
) ;
app . post (
"/v1/workspace/:slug/thread/:threadSlug/chat" ,
[ validApiKey ] ,
async ( request , response ) => {
/ *
# swagger . tags = [ 'Workspace Threads' ]
# swagger . description = 'Chat with a workspace thread'
# swagger . parameters [ 'slug' ] = {
in : 'path' ,
description : 'Unique slug of workspace' ,
required : true ,
type : 'string'
}
# swagger . parameters [ 'threadSlug' ] = {
in : 'path' ,
description : 'Unique slug of thread' ,
required : true ,
type : 'string'
}
# swagger . requestBody = {
description : 'Send a prompt to the workspace thread and the type of conversation (query or chat).' ,
required : true ,
type : 'object' ,
content : {
"application/json" : {
example : {
message : "What is AnythingLLM?" ,
mode : "query | chat" ,
userId : 1
}
}
}
}
# swagger . responses [ 200 ] = {
content : {
"application/json" : {
schema : {
type : 'object' ,
example : {
id : 'chat-uuid' ,
type : "abort | textResponse" ,
textResponse : "Response to your query" ,
sources : [ { title : "anythingllm.txt" , chunk : "This is a context chunk used in the answer of the prompt by the LLM." } ] ,
close : true ,
error : "null | text string of the failure mode."
}
}
}
}
}
# swagger . responses [ 403 ] = {
schema : {
"$ref" : "#/definitions/InvalidAPIKey"
}
}
* /
try {
const { slug , threadSlug } = request . params ;
const { message , mode = "query" , userId } = reqBody ( request ) ;
const workspace = await Workspace . get ( { slug } ) ;
const thread = await WorkspaceThread . get ( {
slug : threadSlug ,
workspace _id : workspace . id ,
} ) ;
if ( ! workspace || ! thread ) {
response . status ( 400 ) . json ( {
id : uuidv4 ( ) ,
type : "abort" ,
textResponse : null ,
sources : [ ] ,
close : true ,
error : ` Workspace ${ slug } or thread ${ threadSlug } is not valid. ` ,
} ) ;
return ;
}
if ( ! message ? . length || ! VALID _CHAT _MODE . includes ( mode ) ) {
response . status ( 400 ) . json ( {
id : uuidv4 ( ) ,
type : "abort" ,
textResponse : null ,
sources : [ ] ,
close : true ,
error : ! message ? . length
? "message parameter cannot be empty."
: ` ${ mode } is not a valid mode. ` ,
} ) ;
return ;
}
const user = userId ? await User . get ( { id : Number ( userId ) } ) : null ;
const result = await chatWithWorkspace (
workspace ,
message ,
mode ,
user ,
thread
) ;
await Telemetry . sendTelemetry ( "sent_chat" , {
LLMSelection : process . env . LLM _PROVIDER || "openai" ,
Embedder : process . env . EMBEDDING _ENGINE || "inherit" ,
VectorDbSelection : process . env . VECTOR _DB || "lancedb" ,
} ) ;
await EventLogs . logEvent ( "api_sent_chat" , {
workspaceName : workspace ? . name ,
chatModel : workspace ? . chatModel || "System Default" ,
threadName : thread ? . name ,
userId : user ? . id ,
} ) ;
response . status ( 200 ) . json ( { ... result } ) ;
} catch ( e ) {
2024-07-04 01:39:33 +02:00
console . error ( e . message , e ) ;
2024-06-21 01:27:35 +02:00
response . status ( 500 ) . json ( {
id : uuidv4 ( ) ,
type : "abort" ,
textResponse : null ,
sources : [ ] ,
close : true ,
error : e . message ,
} ) ;
}
}
) ;
app . post (
"/v1/workspace/:slug/thread/:threadSlug/stream-chat" ,
[ validApiKey ] ,
async ( request , response ) => {
/ *
# swagger . tags = [ 'Workspace Threads' ]
# swagger . description = 'Stream chat with a workspace thread'
# swagger . parameters [ 'slug' ] = {
in : 'path' ,
description : 'Unique slug of workspace' ,
required : true ,
type : 'string'
}
# swagger . parameters [ 'threadSlug' ] = {
in : 'path' ,
description : 'Unique slug of thread' ,
required : true ,
type : 'string'
}
# swagger . requestBody = {
description : 'Send a prompt to the workspace thread and the type of conversation (query or chat).' ,
required : true ,
type : 'object' ,
content : {
"application/json" : {
example : {
message : "What is AnythingLLM?" ,
mode : "query | chat" ,
userId : 1
}
}
}
}
# swagger . responses [ 200 ] = {
content : {
"text/event-stream" : {
schema : {
type : 'array' ,
example : [
{
id : 'uuid-123' ,
type : "abort | textResponseChunk" ,
textResponse : "First chunk" ,
sources : [ ] ,
close : false ,
error : "null | text string of the failure mode."
} ,
{
id : 'uuid-123' ,
type : "abort | textResponseChunk" ,
textResponse : "chunk two" ,
sources : [ ] ,
close : false ,
error : "null | text string of the failure mode."
} ,
{
id : 'uuid-123' ,
type : "abort | textResponseChunk" ,
textResponse : "final chunk of LLM output!" ,
sources : [ { title : "anythingllm.txt" , chunk : "This is a context chunk used in the answer of the prompt by the LLM. This will only return in the final chunk." } ] ,
close : true ,
error : "null | text string of the failure mode."
}
]
}
}
}
}
# swagger . responses [ 403 ] = {
schema : {
"$ref" : "#/definitions/InvalidAPIKey"
}
}
* /
try {
const { slug , threadSlug } = request . params ;
const { message , mode = "query" , userId } = reqBody ( request ) ;
const workspace = await Workspace . get ( { slug } ) ;
const thread = await WorkspaceThread . get ( {
slug : threadSlug ,
workspace _id : workspace . id ,
} ) ;
if ( ! workspace || ! thread ) {
response . status ( 400 ) . json ( {
id : uuidv4 ( ) ,
type : "abort" ,
textResponse : null ,
sources : [ ] ,
close : true ,
error : ` Workspace ${ slug } or thread ${ threadSlug } is not valid. ` ,
} ) ;
return ;
}
if ( ! message ? . length || ! VALID _CHAT _MODE . includes ( mode ) ) {
response . status ( 400 ) . json ( {
id : uuidv4 ( ) ,
type : "abort" ,
textResponse : null ,
sources : [ ] ,
close : true ,
error : ! message ? . length
? "Message is empty"
: ` ${ mode } is not a valid mode. ` ,
} ) ;
return ;
}
const user = userId ? await User . get ( { id : Number ( userId ) } ) : null ;
response . setHeader ( "Cache-Control" , "no-cache" ) ;
response . setHeader ( "Content-Type" , "text/event-stream" ) ;
response . setHeader ( "Access-Control-Allow-Origin" , "*" ) ;
response . setHeader ( "Connection" , "keep-alive" ) ;
response . flushHeaders ( ) ;
await streamChatWithWorkspace (
response ,
workspace ,
message ,
mode ,
user ,
thread
) ;
await Telemetry . sendTelemetry ( "sent_chat" , {
LLMSelection : process . env . LLM _PROVIDER || "openai" ,
Embedder : process . env . EMBEDDING _ENGINE || "inherit" ,
VectorDbSelection : process . env . VECTOR _DB || "lancedb" ,
} ) ;
await EventLogs . logEvent ( "api_sent_chat" , {
workspaceName : workspace ? . name ,
chatModel : workspace ? . chatModel || "System Default" ,
threadName : thread ? . name ,
userId : user ? . id ,
} ) ;
response . end ( ) ;
} catch ( e ) {
2024-07-04 01:39:33 +02:00
console . error ( e . message , e ) ;
2024-06-21 01:27:35 +02:00
writeResponseChunk ( response , {
id : uuidv4 ( ) ,
type : "abort" ,
textResponse : null ,
sources : [ ] ,
close : true ,
error : e . message ,
} ) ;
response . end ( ) ;
}
}
) ;
}
module . exports = { apiWorkspaceThreadEndpoints } ;