Skip to content

add koog framework #514

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions koog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"description": "Koog is a Kotlin-based framework designed to build and run AI agents entirely in idiomatic Kotlin.",
"properties": [
{ "name": "v", "value": "0.1.0" },
{ "name": "v-renovate-hint", "value": "update: package=ai.koog:koog-agents-jvm" }
],
"link": "https://github.com/JetBrains/koog",
"dependencies": [
"ai.koog:koog-agents-jvm:$v"
],
"imports": [
"ai.koog.agents.core.agent.*",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need that much imports? Especially in case of package moves things could easily break. Let's probably leve only the most essential ones?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really need that much imports?

Yes, these are basic imports. I took them from existing examples and have already dropped/removed some imports

"ai.koog.agents.core.agent.config.*",
"ai.koog.agents.core.dsl.builder.*",
"ai.koog.agents.core.dsl.extension.*",
"ai.koog.agents.core.feature.*",
"ai.koog.agents.core.feature.handler.*",
"ai.koog.agents.core.tools.*",
"ai.koog.agents.core.tools.annotations.*",
"ai.koog.agents.core.tools.reflect.*",
"ai.koog.agents.ext.agent.*",
"ai.koog.agents.ext.tool.*",
"ai.koog.agents.mcp.*",
"ai.koog.prompt.dsl.*",
"ai.koog.prompt.executor.clients.anthropic.*",
"ai.koog.prompt.executor.clients.google.*",
"ai.koog.prompt.executor.clients.openai.*",
"ai.koog.prompt.executor.clients.openrouter.*",
"ai.koog.prompt.executor.llms.*",
"ai.koog.prompt.executor.llms.all.*",
"ai.koog.prompt.executor.model.*",
"ai.koog.prompt.executor.ollama.client.*",
"ai.koog.prompt.executor.ollama.client.dto.*",
"ai.koog.prompt.llm.*",
"ai.koog.prompt.message.*",
"ai.koog.prompt.params.*",
"ai.koog.prompt.structure.json.*"
]
}