寫在前面 自從ChatGPT火了之後,各種產品都在不停的擁抱AI,在各自場景中接入AI,國內外各種大模型層出不窮。 好像有點扯遠了,言歸正傳,今天我們要說的是SpringAI,大家在逛Spring 官網(https://spring.io/) 應該發現了,在官網中多了SpringAI 模塊 一、Sp ...
寫在前面
自從ChatGPT
火了之後,各種產品都在不停的擁抱AI,在各自場景中接入AI,國內外各種大模型層出不窮。
好像有點扯遠了,言歸正傳,今天我們要說的是SpringAI,大家在逛Spring 官網(https://spring.io/)
應該發現了,在官網中多了SpringAI
模塊
一、SpringAI 簡介
我們來看看官網是怎麼介紹的
Spring AI is an application framework for AI engineering. Its goal is to apply to the AI domain Spring ecosystem design principles such as portability and modular design and promote using POJOs as the building blocks of an application to the AI domain.
Portable API support across AI providers for Chat, text-to-image, and Embedding models. Both synchronous and stream API options are supported. Dropping down to access model-specific features is also supported.
上面翻譯過來就是
Spring AI是一個面向AI工程的應用框架。其目標是將可移植性和模塊化設計等設計原則應用於AI領域的Spring生態系統,並將POJO作為應用程式的構建塊推廣到AI領域。
跨AI提供商的便攜API支持聊天、文本到圖像和嵌入模型。同時支持同步和流API選項。還支持各種定製的功能。
總的來說就是:Spring出了一個AI框架,幫助我們快速調用AI,從而實現各種功能場景。
在之前的文章中我們有說過Java怎麼調用OpenAI,
傳送門