diff --git a/docs/docs/intro.md b/docs/docs/intro.md
index edb742b..e6da3a1 100644
--- a/docs/docs/intro.md
+++ b/docs/docs/intro.md
@@ -76,13 +76,12 @@ The command runs the Ollama server locally at **http://localhost:11434/**.
### Setup your project
-
Add the dependency to your project's `pom.xml`.
APIs
, focused on seamless interaction with Ollama.
+ Provides clean and simple APIs
for interacting with Ollama, including model management, chat functionalities, and authentication capability when Ollama is deployed behind proxy server.
>
),
},
{
- title: 'Powered by Java',
+ title: 'Chat with Images',
+ Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
+ description: (
+ <>
+ Supports interactions with vision/image models, allowing you to build applications that can understand and respond to visual content. Upload images directly into your chat sessions and receive intelligent, context-aware replies.
+ >
+ ),
+ },
+ {
+ title: 'Tools Support',
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
description: (
<>
- Empowers Java developers to harness the full capabilities of Ollama.
+ Supports tool/function calling with tool calling models such as mistral, llama3.x, qwen, etc. Empower your models to interact with external services and data sources, enabling more complex and dynamic AI workflows.
>
),
},
];
+const UsageList = [
+ {
+ title: 'Datafaker',
+ Svg: require('@site/static/img/datafaker.svg').default,
+ link: 'https://www.datafaker.net/',
+ description: (
+ <>
+ A powerful fake data generation library designed for JVM programs, offering over 200 data providers to easily create realistic and diverse datasets within minutes.
+ >
+ ),
+ imageSize: '20%',
+ },
+ {
+ title: 'Katie',
+ Svg: require('@site/static/img/katie_logo_v3.svg').default,
+ link: 'https://katie.qa/home',
+ description: (
+ <>
+ An Open Source AI-based question-answering platform that helps companies and organizations make their private domain knowledge accessible and useful to their employees and customers.
+ >
+ ),
+ imageSize: '30%',
+ },
+ {
+ title: 'AI Player',
+ Svg: require('@site/static/img/ai-player.svg').default,
+ link: 'https://modrinth.com/mod/ai-player',
+ description: (
+ <>
+ A minecraft mod which aims to add a "second player" into the game which will actually be intelligent.
+ >
+ ),
+ imageSize: '15%',
+ },
+ {
+ title: 'Ollama Translator Plugin',
+ Svg: require('@site/static/img/minecraft-spigot.svg').default,
+ link: 'https://github.com/liebki/ollama-translator',
+ description: (
+ <>
+ A minecraft 1.21 spigot plugin allows to easily break language barriers by using ollama on the server to translate all messages into a specfic target language.
+ >
+ ),
+ imageSize: '20%',
+ },
+ {
+ title: 'JnsCLI',
+ Svg: require('@site/static/img/jnscli.svg').default,
+ link: 'https://github.com/mirum8/jnscli',
+ description: (
+ <>
+ JnsCLI is a command-line tool for Jenkins, allowing you to manage jobs, builds, and configurations directly from the terminal. It also features AI-powered error analysis for quick troubleshooting.
+ >
+ ),
+ imageSize: '20%',
+ },
+ {
+ title: 'Featured in a Research Article on AI-Assisted Code Optimization',
+ Svg: require('@site/static/img/pmc-logo.svg').default,
+ link: 'https://pmc.ncbi.nlm.nih.gov/articles/PMC11750896/',
+ description: (
+ <>
+ Ollama4j was used in a research article – “Large Language Model Based Mutations in Genetic Improvement” (PubMed Central).
+ >
+ ),
+ imageSize: '50%',
+ },
+];
-function Feature({Svg, title, description}) {
+function Feature({ Svg, title, description }) {
return (
{description}
+{JSON.stringify(releaseInfo, null, 2)} diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js index b5f99e9..6f8597b 100644 --- a/docs/src/pages/index.js +++ b/docs/src/pages/index.js @@ -10,7 +10,6 @@ import BrowserOnly from '@docusaurus/BrowserOnly'; import LatestRelease from '@site/src/components/LatestRelease'; - function HomepageHeader() { const {siteConfig} = useDocusaurusContext(); return ( @@ -32,7 +31,7 @@ function HomepageHeader() {