-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMETA6.json
More file actions
39 lines (38 loc) · 1.66 KB
/
META6.json
File metadata and controls
39 lines (38 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "LLM::Chat",
"version": "0.1.0",
"auth": "zef:apogee",
"description": "Simple framework for LLM inferencing",
"authors": ["Matt Doughty"],
"license": "Artistic-2.0",
"provides": {
"LLM::Chat::Backend": "lib/LLM/Chat/Backend.rakumod",
"LLM::Chat::Backend::KoboldCpp": "lib/LLM/Chat/Backend/KoboldCpp.rakumod",
"LLM::Chat::Backend::OpenAICommon": "lib/LLM/Chat/Backend/OpenAICommon.rakumod",
"LLM::Chat::Backend::Response": "lib/LLM/Chat/Backend/Response.rakumod",
"LLM::Chat::Backend::Response::Stream": "lib/LLM/Chat/Backend/Response/Stream.rakumod",
"LLM::Chat::Backend::Settings": "lib/LLM/Chat/Backend/Settings.rakumod",
"LLM::Chat::Conversation": "lib/LLM/Chat/Conversation.rakumod",
"LLM::Chat::Conversation::Message": "lib/LLM/Chat/Conversation/Message.rakumod",
"LLM::Chat::Template": "lib/LLM/Chat/Template.rakumod",
"LLM::Chat::Template::ChatML": "lib/LLM/Chat/Template/ChatML.rakumod",
"LLM::Chat::Template::Gemma2": "lib/LLM/Chat/Template/Gemma2.rakumod",
"LLM::Chat::Template::Llama3": "lib/LLM/Chat/Template/Llama3.rakumod",
"LLM::Chat::Template::Llama4": "lib/LLM/Chat/Template/Llama4.rakumod",
"LLM::Chat::Template::MistralV7": "lib/LLM/Chat/Template/MistralV7.rakumod",
"LLM::Chat::TokenCounter": "lib/LLM/Chat/TokenCounter.rakumod"
},
"depends": [
"Cro::HTTP",
"Digest::SHA256::Native",
"JSON::Fast",
"Tokenizers",
"UUID::V4"
],
"source-url": "https://github.com/m-doughty/LLM_Chat.git",
"tags": ["llm", "inferencing", "ai"],
"support": {
"bugtracker": "https://github.com/m-doughty/LLM_Chat/issues",
"source": "https://github.com/m-doughty/LLM_Chat"
}
}