From 91d90c49288f49fcb3536a43a424938a52f0b726 Mon Sep 17 00:00:00 2001 From: narawat lamaiin Date: Mon, 9 Dec 2024 22:26:44 +0700 Subject: [PATCH] update --- Manifest.toml | 28 +++++++++++++++++++++++++++- Project.toml | 5 ++++- src/interface.jl | 2 +- src/util.jl | 2 +- 4 files changed, 33 insertions(+), 4 deletions(-) diff --git a/Manifest.toml b/Manifest.toml index bb5d5e6..f387806 100644 --- a/Manifest.toml +++ b/Manifest.toml @@ -2,7 +2,7 @@ julia_version = "1.11.2" manifest_format = "2.0" -project_hash = "3fbf548b167fd8368831ce3bd276589c6cddf72e" +project_hash = "740be7f99ee05ce085f66341096fd207ac1a9bce" [[deps.AliasTables]] deps = ["PtrArrays", "Random"] @@ -156,6 +156,16 @@ git-tree-sha1 = "27415f162e6028e81c72b82ef756bf321213b6ec" uuid = "e2ba6199-217a-4e67-a87a-7c52f15ade04" version = "0.1.10" +[[deps.FileIO]] +deps = ["Pkg", "Requires", "UUIDs"] +git-tree-sha1 = "2dd20384bf8c6d411b5c7370865b1e9b26cb2ea3" +uuid = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" +version = "1.16.6" +weakdeps = ["HTTP"] + + [deps.FileIO.extensions] + HTTPExt = "HTTP" + [[deps.FilePathsBase]] deps = ["Compat", "Dates"] git-tree-sha1 = "7878ff7172a8e6beedd1dea14bd27c3c6340d361" @@ -294,6 +304,14 @@ git-tree-sha1 = "60274b4ab38e8d1248216fe6b6ace75ae09b0502" uuid = "b39eb1a6-c29a-53d7-8c32-632cd16f18da" version = "1.19.3+0" +[[deps.LLMMCTS]] +deps = ["GeneralUtils", "JSON3"] +git-tree-sha1 = "d8c653b8fafbd3757b7332985efaf1fdb8b6fe97" +repo-rev = "main" +repo-url = "https://git.yiem.cc/ton/LLMMCTS" +uuid = "d76c5a4d-449e-4835-8cc4-dd86ec44f241" +version = "0.1.2" + [[deps.LaTeXStrings]] git-tree-sha1 = "dda21b8cbd6a6c40d9d02a73230f9d70fed6918c" uuid = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" @@ -603,6 +621,14 @@ version = "0.5.1+0" uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce" version = "0.7.0" +[[deps.SQLLLM]] +deps = ["CSV", "DataFrames", "DataStructures", "Dates", "FileIO", "GeneralUtils", "HTTP", "JSON3", "LLMMCTS", "LibPQ", "PrettyPrinting", "Random", "Revise", "StatsBase", "Tables", "URIs", "UUIDs"] +git-tree-sha1 = "45e660e44de0950a5e5f92d467298d8b768b6023" +repo-rev = "main" +repo-url = "https://git.yiem.cc/ton/SQLLLM" +uuid = "2ebc79c7-cc10-4a3a-9665-d2e1d61e63d3" +version = "0.2.0" + [[deps.SQLStrings]] git-tree-sha1 = "55de0530689832b1d3d43491ee6b67bd54d3323c" uuid = "af517c2e-c243-48fa-aab8-efac3db270f5" diff --git a/Project.toml b/Project.toml index c335a8b..ab9f8c3 100644 --- a/Project.toml +++ b/Project.toml @@ -9,14 +9,17 @@ Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" GeneralUtils = "c6c72f09-b708-4ac8-ac7c-2084d70108fe" HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1" +LLMMCTS = "d76c5a4d-449e-4835-8cc4-dd86ec44f241" LibPQ = "194296ae-ab2e-5f79-8cd4-7183a0a5a0d1" -MQTTClient = "985f35cc-2c3d-4943-b8c1-f0931d5f0959" PrettyPrinting = "54e16d92-306c-5ea0-a30b-337be88ac337" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" Revise = "295af30f-e4ad-537b-8983-00126c2a3abe" +SQLLLM = "2ebc79c7-cc10-4a3a-9665-d2e1d61e63d3" Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b" URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" [compat] GeneralUtils = "0.1.0" +LLMMCTS = "0.1.2" +SQLLLM = "0.2.0" diff --git a/src/interface.jl b/src/interface.jl index 6bcf94e..4b7efbe 100644 --- a/src/interface.jl +++ b/src/interface.jl @@ -3,7 +3,7 @@ module interface export addNewMessage, conversation, decisionMaker, evaluator, reflector, generatechat, generalconversation -using JSON3, DataStructures, Dates, UUIDs, HTTP, Random, MQTTClient, PrettyPrinting, Serialization +using JSON3, DataStructures, Dates, UUIDs, HTTP, Random, PrettyPrinting, Serialization using GeneralUtils using ..type, ..util, ..llmfunction diff --git a/src/util.jl b/src/util.jl index ea9f302..f390348 100644 --- a/src/util.jl +++ b/src/util.jl @@ -2,7 +2,7 @@ module util export clearhistory, addNewMessage, vectorOfDictToText, eventdict, noises -using UUIDs, Dates, DataStructures, HTTP, MQTTClient, JSON3 +using UUIDs, Dates, DataStructures, HTTP, JSON3 using GeneralUtils using ..type