nirmato ollama
1.0.0
Client API Ollama non officiel pour la multiplateforme Kotlin.
L'implémentation suit la définition OpenAPI de l'API Ollama décrite dans Ollama API Docs.
Avertissement
nirmato-ollama est en cours de développement.
Signalez tout problème ou bug dans le référentiel GitHub.
Plateforme cible | Cible prédéfinie |
---|---|
Kotlin/JVM |
|
Kotlin/WasmJS |
|
Kotlin/JS |
|
Linux |
|
MingwX64 |
|
IOS |
|
MacOS |
|
RegarderOS |
|
TVOS |
|
Version | API Ollama |
---|---|
1.0.x | 0.3.3 |
< 1.0.0 | 0.3.3 |
val ollama = OllamaClient {
logging = LoggingConfig (logLevel = LogLevel . All )
timeout = TimeoutConfig (socket = 30 .seconds)
host = OllamaHost . Local
retry = RetryStrategy ( 0 )
engine = CIO .create()
}
val response = ollama.completion {
model = " tinyllama "
prompt = " Why is the sky blue? "
}
repositories {
maven {
name = " GitHub Apache Maven Packages "
url = uri( " https://maven.pkg.github.com/nirmato/nirmato-ollama " )
}
}
build.gradle.kt
dependencies {
implementation( " org.nirmato.ollama:nirmato-ollama-client:VERSION " )
}
settings.xml
< repositories >
< repository >
< id >github</ id >
< name >GitHub Apache Maven Packages</ name >
< url >https://maven.pkg.github.com/nirmato/nirmato-ollama</ url >
< releases >
< enabled >true</ enabled >
</ releases >
< snapshots >
< enabled >false</ enabled >
</ snapshots >
</ repository >
</ repositories >
< dependency >
< groupId >org.nirmato.ollama</ groupId >
< artifactId >nirmato-ollama-client-[jvm]</ artifactId >
< version >VERSION</ version >
</ dependency >
N'hésitez pas à soumettre une pull request. Les contributions sont les bienvenues !
JetBrains pour créer Kotlin.
Le code source est distribué sous licence Apache 2.0.