forked from dosier/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
·71 lines (53 loc) · 2.38 KB
/
settings.gradle.kts
File metadata and controls
executable file
·71 lines (53 loc) · 2.38 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
rootProject.name = "koog-agents"
pluginManagement {
repositories {
gradlePluginPortal()
}
}
include(":agents:agents-core")
include(":agents:agents-ext")
include(":agents:agents-features:agents-features-debugger")
include(":agents:agents-features:agents-features-event-handler")
include(":agents:agents-features:agents-features-memory")
include(":agents:agents-features:agents-features-opentelemetry")
include(":agents:agents-features:agents-features-trace")
include(":agents:agents-features:agents-features-tokenizer")
include(":agents:agents-features:agents-features-snapshot")
include(":agents:agents-mcp")
include(":agents:agents-test")
include(":agents:agents-tools")
include(":agents:agents-utils")
include(":examples")
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-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-llms")
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-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(":koog-spring-boot-starter")
include(":koog-ktor")
include(":docs")
include(":koog-cli")
include(":test-utils")