forked from JetBrains/koog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
executable file
·104 lines (85 loc) · 3.99 KB
/
settings.gradle.kts
File metadata and controls
executable file
·104 lines (85 loc) · 3.99 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
rootProject.name = "koog"
pluginManagement {
includeBuild("convention-plugin-ai")
repositories {
google()
gradlePluginPortal()
maven(url = "https://packages.jetbrains.team/maven/p/jcs/maven")
}
}
include(":agents:agents-core")
include(":agents:agents-ext")
include(":agents:agents-features:agents-features-acp")
include(":agents:agents-features:agents-features-event-handler")
include(":agents:agents-features:agents-features-longterm-memory")
include(":agents:agents-features:agents-features-memory")
include(":agents:agents-features:agents-features-opentelemetry")
include(":agents:agents-features:agents-features-sql")
include(":agents:agents-features:agents-features-chat-memory-sql")
include(":agents:agents-features:agents-features-chat-history-jdbc")
include(":agents:agents-features:agents-features-persistence-jdbc")
include(":agents:agents-features:agents-features-trace")
include(":agents:agents-features:agents-features-tokenizer")
include(":agents:agents-features:agents-features-snapshot")
include(":agents:agents-features:agents-features-a2a-core")
include(":agents:agents-features:agents-features-a2a-server")
include(":agents:agents-features:agents-features-a2a-client")
include(":agents:agents-mcp")
include(":agents:agents-mcp-metadata")
include(":agents:agents-mcp-server")
include(":agents:agents-test")
include(":agents:agents-tools")
include(":agents:agents-utils")
include(":integration-tests")
include(":koog-agents")
include(":prompt:prompt-cache:prompt-cache-files")
include(":prompt:prompt-cache:prompt-cache-model")
include(":prompt:prompt-cache:prompt-cache-redis")
include(":prompt:prompt-executor:prompt-executor-cached")
include(":prompt:prompt-executor:prompt-executor-clients")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-anthropic-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-bedrock-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-deepseek-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-google-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-mistralai-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-ollama-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-openai-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-openai-client-base")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-openrouter-client")
include(":prompt:prompt-executor:prompt-executor-clients:prompt-executor-dashscope-client")
include(":prompt:prompt-executor:prompt-executor-llms-all")
include(":prompt:prompt-executor:prompt-executor-model")
include(":prompt:prompt-llm")
include(":prompt:prompt-markdown")
include(":prompt:prompt-model")
include(":prompt:prompt-processor")
include(":prompt:prompt-structure")
include(":prompt:prompt-tokenizer")
include(":prompt:prompt-xml")
include(":embeddings:embeddings-base")
include(":embeddings:embeddings-llm")
include(":rag:rag-base")
include(":rag:vector-storage")
include(":a2a:a2a-core")
include(":a2a:a2a-server")
include(":a2a:a2a-client")
include(":a2a:a2a-test")
include(":a2a:a2a-transport:a2a-transport-core-jsonrpc")
include(":a2a:a2a-transport:a2a-transport-server-jsonrpc-http")
include(":a2a:a2a-transport:a2a-transport-client-jsonrpc-http")
include(":a2a:test-tck:a2a-test-server-tck")
include(":http-client:http-client-core")
include(":http-client:http-client-test")
include(":http-client:http-client-ktor")
include(":http-client:http-client-okhttp")
include(":http-client:http-client-java")
include(":serialization:serialization-core")
include(":serialization:serialization-test")
include(":serialization:serialization-jackson")
include(":koog-spring-boot-starter")
include(":koog-spring-ai:koog-spring-ai-starter-model-chat")
include(":koog-spring-ai:koog-spring-ai-starter-model-embedding")
include(":koog-ktor")
include(":docs")
include(":test-utils")
include(":utils")