interstellar_ai/app/backend/threads/PostWorker.ts

31 lines
784 B
TypeScript
Raw Normal View History

2024-09-23 11:11:45 +02:00
import axios from "axios";
onmessage = (e) => {
const { messages, ai_model, model_type, access_token, api_key, windowname } = e.data
2024-09-30 15:26:31 +02:00
2024-09-23 14:54:13 +02:00
const Message = {
2024-09-23 16:34:55 +02:00
messages: messages,
2024-09-30 15:26:31 +02:00
ai_model: ai_model,
model_type: model_type,
access_token: access_token,
api_key: api_key
2024-09-23 14:54:13 +02:00
}
const apiURL = new URL("http://localhost:5000/interstellar_ai/api/ai_send")
console.log(windowname)
apiURL.hostname = windowname;
console.log(apiURL.href)
axios.post(apiURL.href, Message)
2024-09-23 11:11:45 +02:00
.then(response => {
const status = response.data.status
2024-09-23 14:54:13 +02:00
postMessage({ status })
2024-09-24 16:42:36 +02:00
2024-09-23 11:11:45 +02:00
})
.catch(error => {
console.log("Error calling API:", error)
2024-09-24 16:42:36 +02:00
postMessage({ status: 500 })
})
2024-09-23 11:11:45 +02:00
}