-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AiServiceRegisteredEvent #89
AiServiceRegisteredEvent #89
Conversation
…service/spring/AiServicesAutoConfig.java
…icesAutoConfig. This event contains the AiService class and its corresponding tools description information. Once a user implements the AiServiceRegisteredEventListener to listen for this event, they can receive the event during the Spring Boot startup phase and handle their business logic as needed. original PR link: langchain4j#77 Issues link: langchain4j/langchain4j#2112
…uction/langchain4j-spring into tools_enhanced_by_aop_support
@langchain4j The unit tests are working fine locally, but I see that there are many errors in the CI. |
@catofdestruction thank you! I will try to look into this PR during the week |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@catofdestruction thank you!
...oot-starter/src/main/java/dev/langchain4j/service/spring/event/AiServiceRegisteredEvent.java
Outdated
Show resolved
Hide resolved
...oot-starter/src/main/java/dev/langchain4j/service/spring/event/AiServiceRegisteredEvent.java
Outdated
Show resolved
Hide resolved
...oot-starter/src/main/java/dev/langchain4j/service/spring/event/AiServiceRegisteredEvent.java
Show resolved
Hide resolved
...oot-starter/src/main/java/dev/langchain4j/service/spring/event/AiServiceRegisteredEvent.java
Show resolved
Hide resolved
...oot-starter/src/main/java/dev/langchain4j/service/spring/event/AiServiceRegisteredEvent.java
Show resolved
Hide resolved
...j-spring-boot-starter/src/main/java/dev/langchain4j/service/spring/AiServicesAutoConfig.java
Show resolved
Hide resolved
...oot-starter/src/main/java/dev/langchain4j/service/spring/event/AiServiceRegisteredEvent.java
Show resolved
Hide resolved
...j-spring-boot-starter/src/main/java/dev/langchain4j/service/spring/AiServicesAutoConfig.java
Outdated
Show resolved
Hide resolved
...est/java/dev/langchain4j/service/spring/mode/automatic/withTools/AiServicesAutoConfigIT.java
Show resolved
Hide resolved
original PR link: langchain4j#77 Issues link: langchain4j/langchain4j#2112
original PR link: langchain4j#77 Issues link: langchain4j/langchain4j#2112
original PR link: langchain4j#77 Issues link: langchain4j/langchain4j#2112
@catofdestruction thanks a lot! After a second thought, I think it will be safer to rollback to the |
…2203) PR: langchain4j/langchain4j-spring#89 ## Issue original PR link: langchain4j/langchain4j-spring#77 Issues link: #2112 ## Change update spring-boot-integration.md for [add AiServiceRegisteredEvent]
Closes langchain4j/langchain4j#2112
Publish a
AiServiceRegisteredEvent
Spring Event after registering theAiService
bean inAiServicesAutoConfig
.This event contains the
AiService
class and its corresponding tools description information.Once a user implements the even listener to listen for this event, they can receive the event during the Spring Boot startup phase and handle their business logic as needed.