hchen
8ed35691f9
Clean code.
2023-10-31 20:48:12 -05:00
Haiping Chen
efeaaedf59
Change agent load timing in InstructService.
2023-10-30 22:47:14 -05:00
Haiping Chen
a18d1ea5aa
RoleDialogModel.From
2023-10-30 15:06:45 -05:00
Haiping Chen
5d78e83e7c
Fix InvokeFunction dialog message.
2023-10-30 14:27:12 -05:00
Haiping Chen
df7743e37d
Separate required and optional args.
2023-10-30 12:44:53 -05:00
Haiping Chen
3caa7a5499
HFPlanner
2023-10-30 11:48:18 -05:00
Haiping Chen
8bf61cb94c
Merge branch 'master' into v0.18-llm-planning
2023-10-28 21:20:30 -05:00
Yanan Wang
0ca92c0328
Fix the bugs due to the MessageingType typo correct
2023-10-28 21:15:41 -05:00
Haiping Chen
c7ff0e4c2e
Rename to ReasoningPlanner.
2023-10-28 20:54:10 -05:00
Haiping Chen
513ad5814e
NaivePlanner
2023-10-28 15:59:26 -05:00
Yanan Wang
89c62bf496
Default RichContent
2023-10-27 17:55:28 -05:00
Yanan Wang
eb4e0b0187
Merge from master into add_richCoontent Branch
2023-10-27 16:21:52 -05:00
Haiping Chen
933fc3febd
Share one message instance through the conversation.
2023-10-27 15:36:26 -05:00
Yanan Wang
46710c14cc
Add richContent for future UI rendering
2023-10-27 14:05:18 -05:00
Haiping Chen
492a1d70ee
ITrackableMessage
2023-10-27 10:18:48 -05:00
hchen
2cd3dfcd29
JsonContent<T>
2023-10-26 13:52:44 -05:00
Haiping Chen
012158470f
PerInstanceCache = true
2023-10-26 09:18:14 -05:00
Haiping Chen
2a52e30ba8
change description of human_intervention_needed.
2023-10-25 22:05:12 -05:00
hchen2020
7482339e02
Merge branch 'SciSharp:master' into master
2023-10-25 19:31:00 -05:00
Haiping Chen
d7ef99d034
Render assistant role as specific agent name.
2023-10-25 19:30:23 -05:00
hchen2020
bab74e5993
Merge branch 'SciSharp:master' into master
2023-10-25 19:27:40 -05:00
Jicheng Lu
4041ca8de7
remove code
2023-10-25 16:40:36 -05:00
Jicheng Lu
8cca7361b2
refine agent update functions
2023-10-25 15:56:50 -05:00
Jicheng Lu
2e3fbc98a9
remove test code
2023-10-25 15:11:15 -05:00
Jicheng Lu
6f7f143e7d
add impact
2023-10-25 15:09:21 -05:00
hchen
26b738ef64
Populate states for ResponseTemplateService
2023-10-25 14:44:27 -05:00
hchen
a36f3e4b6c
Allow empty SelfId
2023-10-25 10:55:12 -05:00
hchen
4c54a62557
Add SelfId in IInstructHook.
2023-10-25 10:48:25 -05:00
Haiping Chen
2bc2367536
Show text completion verbose log.
2023-10-25 07:48:11 -05:00
Haiping Chen
5d7dd09801
Allow IInstructService to StopCompletion.
2023-10-24 22:41:08 -05:00
hchen
eb13994180
Return states in InstructResult.
2023-10-24 19:36:02 -05:00
hchen
11176f3539
Add SelfId to IAgentHook.
2023-10-24 16:38:34 -05:00
Haiping
ea3bf3e711
Merge pull request #187 from hchen2020/master
...
Use text completion for instruct mode.
2023-10-23 18:22:40 -05:00
Haiping Chen
8c60e6ae78
Use text completion for instruct mode.
2023-10-23 18:20:18 -05:00
Jicheng Lu
9f6f0e2d92
add execution log
2023-10-23 15:33:24 -05:00
Haiping Chen
7fb9440011
Fix GetAgents list.
2023-10-23 12:41:44 -05:00
Haiping Chen
a4c1b56740
Add executor of evaluation.
2023-10-22 19:31:49 -05:00
Haiping Chen
13e17acc76
Fix CurrentRecursionDepth bug in Testing mode.
2023-10-20 18:57:45 -05:00
Haiping Chen
8fcada182f
Optimize router prompt.
2023-10-19 22:47:14 -05:00
Haiping
bdfcbd9a0a
Merge pull request #182 from iceljc/features/fix-mongo-serialization-add-samples
...
Features/fix mongo serialization add samples
2023-10-19 19:45:08 -05:00
Jicheng Lu
60d9f47356
1. use string id in mongo collection.
...
2. add samples
3. refine repo api
2023-10-19 17:27:51 -05:00
hchen
5e65d833ea
Remove LoadAgent cache.
2023-10-19 15:57:56 -05:00
hchen
bf9bb2b6d3
Allow agent to use few-shot learning.
2023-10-19 12:24:00 -05:00
hchen
f58decde0d
Fix typo.
2023-10-18 11:59:10 -05:00
Haiping
09ea77b73a
Merge pull request #176 from xbotter/patch-file-repository
...
Refactor FileRepository to handle non-existent directories
2023-10-18 10:56:45 -05:00
hchen
5ced9f6da4
Refactor FixMalformedResponse.
2023-10-18 10:54:03 -05:00
Haiping Chen
2f3e71ef09
Add EvaluatingService.
2023-10-18 06:58:36 -05:00
xbotter
1d468e0d18
🔧 Update FileRepository to handle missing directories
...
- The FileRepository class in the BotSharp.Core.Repository namespace has been updated to handle cases where the "users" and agent directories are missing.
- Previously, the code would throw an exception if the directories were not found, but now it checks for their existence before attempting to read files from them.
- This change ensures that the repository can gracefully handle missing directories and continue execution without errors.
- The update includes changes to the GetUserAgents, GetAgents, and GetConversations methods, as well as the UpdateAgent, UpdateInstruction, and UpdateFunctions methods.
- Additionally, the code now properly checks for the existence of the "agents.json" file before attempting to read from it.
- These changes improve the robustness and reliability of the FileRepository class.
2023-10-18 12:58:56 +08:00
Jicheng Lu
336a98d22a
add bulk insert agents and user agents
2023-10-17 15:29:40 -05:00
Haiping Chen
2dd8b9a3ff
Bumb version to v0.16.2.
2023-10-16 16:56:32 -05:00