started multithreading

This commit is contained in:
YasinOnm08 2024-09-19 13:02:56 +02:00
parent ef2e40ca4a
commit 024ceeda4e
5 changed files with 103 additions and 2 deletions

13
app/ProcessMemory.tsx Normal file
View file

@ -0,0 +1,13 @@
import React from 'react'
type Chat = {
name:string
messages:string[]
}
type History = {
chats:Chat[]
}