The Aigentic Client Library is a powerful Kotlin-based DSL that enables developers to easily build and integrate AI agents into their applications. This library streamlines the process of creating, deploying, and managing LLM agents within the Aigentic ecosystem.
Features
- Intuitive Kotlin DSL for agent creation and management
- Easily connect agents to your existing applications
- LLM model agnostic
- Comprehensive error handling and logging
- Seamless integration with the Aigentic platform (coming soon)
- Built-in tools for rapid iteration and testing (coming soon)
In AI and LLM application development, there's a paradoxical challenge: creating a promising proof of concept (PoC) is relatively easy, but transitioning that PoC into a robust, production-grade application is often complex and daunting. This gap between demonstration and deployment can lead to stalled projects and unrealized potential. Aigentic directly addresses this challenge by providing a comprehensive platform designed to streamline the journey from PoC to production. Our toolset facilitates rapid iteration on your AI agents, allowing you to quickly refine and enhance your applications based on real-world data and feedback. By offering a shortened feedback loop, Aigentic enables developers to:
- Develop and deploy agents integrated with your existing applications
- Collect and analyse real-world usage data
- Swiftly modify tasks and prompts
- Test changes against historical data
- Implement improvements with confidence
This iterative approach, supported by Aigentic, significantly reduces the time and complexity involved in developing production-ready AI applications. With Aigentic, the path from a promising demo to a reliable, scalable AI solution becomes clear and achievable, helping you unlock the full potential of LLM technology for your business.
+--------------------------------------------------+
| Aigentic development cycle |
| |
| Develop Deploy Collect |
| LLM Agent --> Agent --> Real-world Data |
| ^ | |
| | | |
| | v |
| Implement Replay Modify Task/ |
| Changes <-- Historical <-- Prompt |
| Data |
| |
+--------------------------------------------------+
The Aigentic client library is a Kotlin Multiplatform library that can be used in JVM, Android, iOS, and JavaScript/TypeScript projects. Add the modules you need to your project:
implementation("community.flock.aigentic:core:<version>")
// Also available: community.flock.aigentic:gemini or community.flock.aigentic:ollama
implementation("community.flock.aigentic:openai:<version>")
// Add the ktor client library depending on your platform. CIO is for JVM, Android, Native. For other platforms pick the correct engine: https://ktor.io/docs/client-engines.html#platforms
implementation("io.ktor:ktor-client-cio:2.3.10")
With the dependencies added, you can start creating agents. Here is a simple example of an agent which has access to a tool that saves the sentiment of a news event:
import community.flock.aigentic.core.agent.start
import community.flock.aigentic.core.dsl.agent
import community.flock.aigentic.core.tool.*
import community.flock.aigentic.openai.dsl.openAIModel
import community.flock.aigentic.openai.model.OpenAIModelIdentifier
import kotlinx.serialization.json.JsonObject
val agent = agent {
task("Summarize the newsfeed of the day and determine the sentiment") {
addInstruction("Analyze the sentiment for each news event")
addInstruction("Save the sentiment for each news event")
}
context {
addText(newsFeed)
}
openAIModel {
apiKey("<insert your OpenAI API key here>")
modelIdentifier(GPT4OMini)
}
addTool(saveNewsEventSentimentTool)
}
val saveNewsEventSentimentTool =
object : Tool {
override val name = ToolName("saveNewsEventSentiment")
override val description = "Saves the news event components"
val titleParameter = Parameter.Primitive(
name = "title",
description = "The title of the news event",
isRequired = true,
type = ParameterType.Primitive.String
)
val sentimentParameter =
Parameter.Complex.Enum(
"sentiment",
"The sentiment of the news event",
true,
default = null,
values = listOf(
PrimitiveValue.String("positive"),
PrimitiveValue.String("negative"),
PrimitiveValue.String("neutral")
),
valueType = ParameterType.Primitive.String,
)
override val parameters = listOf(titleParameter, sentimentParameter)
override val handler: suspend (JsonObject) -> String = { arguments ->
val title = titleParameter.getStringValue(arguments)
val sentiment = sentimentParameter.getStringValue(arguments)
"Saved successfully: '$title' with sentiment: $sentiment"
}
}
To start the agent call it's start
function:
val run = agent.start()
Aigentic supports automatic tool configuration based on OpenAPI specifications.
Add the OpenAPI module to your project:
implementation("community.flock.aigentic:openapi:<version>")
With the OpenAPI module added you can create an agent with OpenAPI tools, simple configure your OpenAPI specification and the agent will automatically generate the tools for you:
agent {
task("Send Hacker News stories about AI") {
addInstruction("Retrieve the top 10 Hacker News stories")
addInstruction("Send stories, if any, about AI to john@doe.com")
}
openAIModel {
apiKey("<insert your OpenAI API key here>")
modelIdentifier(GPT4OMini)
}
openApiTools(hackerNewsOpenAPISpecJson)
addTool(sendEmailTool)
}.start()
For more detailed examples, please refer to:
In addition to the client library, Aigentic provides a platform for managing and deploying agents. The platform is currently in development and will be available soon.
In order to use SNAPSHOT versions of Aigentic please make sure both maven central and the Sonatype snapshot repository are configured:
repositories {
mavenCentral()
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
}
Aigentic is released under the MIT License.
For questions, issues, or feature requests, please open an issue on our GitHub repository. Or contact us as info@aigentic.io