赞
踩
spring-ai访问openai配置,
申请api-key,需要借助魔法访问chatgpt
1.创建chatgpt账号,然后需要手机号码认证才能创建api key
需要手机号认证,国内手机号无法完成,需要使用虚拟号码
2.注册虚拟手机号
注册地址:sms-activate.io
3.临时虚拟手机号
选择一个合适的
选择搜索openAI
然后将申请到的手机号码添加到个人信息里,选择API Keys在创建创建open key
将secret key 复制,配置到项目里
- spring:
- application:
- name: spring-ai
- ai:
- openai:
- ## 真实api
- api-key: sk-proj-myfw5vSul******3YZlgehiw5A9
- base-url: https://api.openai.com
可能会报错
配置一下
配置完报错,大家可以参考 https://eylink.cn/ 才能使用。
1.通过New API 代理访问,先要注册用户,如下配置,此种配置先访问第三方,由第三方访问openai
2.选择首页,根据提示去操作,不懂可以留言问我
会得到一个api-key,将key到项目配置文件中,base-url也跟官方的不一样,重启项目,
- spring:
- application:
- name: spring-ai
- ai:
- openai:
- ## 第三方api
- api-key: sk-z2MlHruWqzt**********5Aa84A07c67
- base-url: https://api.xty.app
响应成功
1.pom.xml文件配置,jdk需要17以及以上,
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>3.3.0</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.example</groupId>
- <artifactId>spring-ai-gzy</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>spring-ai-gzy</name>
- <description>Demo project for Spring Boot</description>
- <properties>
- <java.version>17</java.version>
- <spring-ai.version>1.0.0-M1</spring-ai.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-bom</artifactId>
- <!-- <version>${spring-ai.version}</version>-->
- <version>1.0.0-SNAPSHOT</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <!-- <repositories>-->
- <!-- <repository>-->
- <!-- <id>spring-milestones</id>-->
- <!-- <name>Spring Milestones</name>-->
- <!-- <url>https://repo.spring.io/milestone</url>-->
- <!-- <snapshots>-->
- <!-- <enabled>false</enabled>-->
- <!-- </snapshots>-->
- <!-- </repository>-->
- <!-- </repositories>-->
-
- <!-- <repositories>-->
- <!-- <repository>-->
- <!-- <id>spring-snapshots</id>-->
- <!-- <name>Spring Snapshots</name>-->
- <!-- <url>https://repo.spring.io/snapshot</url>-->
- <!-- <releases>-->
- <!-- <enabled>false</enabled>-->
- <!-- </releases>-->
- <!-- </repository>-->
- <!-- </repositories>-->
-
-
- </project>
2.访问controller
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。