Tech Ocean
Author

Tech Ocean

Focused on AI programming, sharing ready-to-use development efficiency solutions.

140
Articles
0
Likes
1
Views
0
Comments
Recent Articles

Latest from Tech Ocean

100 recent articles max
Tech Ocean
Tech Ocean
Jun 9, 2026 · Backend Development

Enabling Large Language Models to Call Your Java Methods with Spring AI Tool Calling

This article explains how Spring AI's Tool Calling lets large language models overcome their inability to access real‑time or private data by invoking annotated Java methods, showing step‑by‑step code examples, parameter handling, and the execution flow that bridges model requests with actual method results.

Backend IntegrationFunction CallingLLM
0 likes · 5 min read
Enabling Large Language Models to Call Your Java Methods with Spring AI Tool Calling
Tech Ocean
Tech Ocean
Jun 9, 2026 · Artificial Intelligence

Spring AI Day 11: Advanced Modular RAG – Query Rewriting, Compression, and Empty‑Context Fallback

The article examines the limitations of a naïve QuestionAnswerAdvisor RAG implementation, introduces Spring AI's RetrievalAugmentationAdvisor for modular RAG, and demonstrates how query rewriting, multi‑turn compression, and an empty‑context augmenter improve recall and prevent model refusals.

CompressionContextual AugmentationQuery Rewriting
0 likes · 6 min read
Spring AI Day 11: Advanced Modular RAG – Query Rewriting, Compression, and Empty‑Context Fallback
Tech Ocean
Tech Ocean
Jun 9, 2026 · Artificial Intelligence

RAG in Action: Enabling AI to Answer Using Your Own Documents with Spring AI

This tutorial explains how Retrieval‑Augmented Generation (RAG) eliminates hallucinations and stale knowledge by retrieving relevant document fragments from a vector store, augmenting prompts, and generating factual answers, with step‑by‑step Spring AI code examples and parameter tuning guidance.

QuestionAnswerAdvisorRAGRetrieval Augmented Generation
0 likes · 5 min read
RAG in Action: Enabling AI to Answer Using Your Own Documents with Spring AI
Tech Ocean
Tech Ocean
Jun 9, 2026 · Artificial Intelligence

How to Turn Text into Searchable Vectors with Spring AI Embeddings and Vector Stores

This article explains why traditional keyword search fails on synonyms, introduces Spring AI's local ONNX‑based EmbeddingModel to convert text into high‑dimensional vectors, shows how to store and query those vectors with SimpleVectorStore, and compares production‑grade vector store options.

ONNXSpring AIVector Store
0 likes · 6 min read
How to Turn Text into Searchable Vectors with Spring AI Embeddings and Vector Stores
Tech Ocean
Tech Ocean
Jun 8, 2026 · Frontend Development

Claude Design in Action: Prompt UI, One‑Click Handoff to Claude Code

This article walks through using Claude Design to generate a high‑fidelity WeChat bookkeeping mini‑program via conversational prompts, automatically apply a design system, iterate with Tweaks and inline comments, then hand off the resulting React‑style JSX bundle to Claude Code for uni‑app implementation, while highlighting token costs and common pitfalls.

AI designClaude CodeClaude Design
0 likes · 17 min read
Claude Design in Action: Prompt UI, One‑Click Handoff to Claude Code
Tech Ocean
Tech Ocean
Jun 6, 2026 · Artificial Intelligence

Day 7 of Spring AI Series: How Advisors Form a Filter Chain for AI Applications

This article explains Spring AI Advisors as interceptors that can modify requests and responses in the LLM call chain, demonstrates building a custom logging Advisor with code examples, shows how ordering controls execution, and reviews the built‑in Advisors for memory, RAG, logging, and safety.

AdvisorChatClientMemory
0 likes · 5 min read
Day 7 of Spring AI Series: How Advisors Form a Filter Chain for AI Applications
Tech Ocean
Tech Ocean
Jun 6, 2026 · Artificial Intelligence

Spring AI Day 5: Enabling a Multimodal ChatClient to Process Text and Images

This article explains how Spring AI’s Media API lets a ChatClient handle both textual prompts and image inputs, shows code examples for attaching images, discusses required visual models, and outlines practical use cases such as OCR, chart analysis, and image moderation.

AI modelsChatClientMedia API
0 likes · 5 min read
Spring AI Day 5: Enabling a Multimodal ChatClient to Process Text and Images