-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into aiservice_created_event
- Loading branch information
Showing
17 changed files
with
335 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Add new PR to Project | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add PR to Project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/users/langchain4j/projects/2 | ||
github-token: ${{ secrets.GH_TOKEN_ADD_NEW_PRS_TO_PROJECT }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...langchain4j/service/spring/mode/automatic/Issue2133/TestAutowireAiServiceApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package dev.langchain4j.service.spring.mode.automatic.Issue2133; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
/** | ||
* @author: qing | ||
* @Date: 2024/11/20 | ||
*/ | ||
@SpringBootApplication | ||
public class TestAutowireAiServiceApplication { | ||
|
||
@Autowired | ||
TestAutowireConfiguration testAutowireConfiguration; | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(TestAutowireAiServiceApplication.class, args); | ||
} | ||
|
||
TestAutowireConfiguration getConfiguration() { | ||
return testAutowireConfiguration; | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...dev/langchain4j/service/spring/mode/automatic/Issue2133/TestAutowireClassAiServiceIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package dev.langchain4j.service.spring.mode.automatic.Issue2133; | ||
|
||
import dev.langchain4j.service.spring.AiServicesAutoConfig; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.boot.autoconfigure.AutoConfigurations; | ||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertNotNull; | ||
|
||
class TestAutowireClassAiServiceIT { | ||
|
||
ApplicationContextRunner contextRunner = new ApplicationContextRunner() | ||
.withConfiguration(AutoConfigurations.of(AiServicesAutoConfig.class)); | ||
|
||
@Test | ||
void should_get_configuration_class() { | ||
contextRunner | ||
.withUserConfiguration(TestAutowireAiServiceApplication.class) | ||
.withBean(TestAutowireConfiguration.class) | ||
.run(context -> { | ||
// given | ||
TestAutowireAiServiceApplication application = context.getBean(TestAutowireAiServiceApplication.class); | ||
|
||
// should get the configuration class | ||
assertNotNull(application.getConfiguration(), "TestConfiguration class should be not null"); | ||
}); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...va/dev/langchain4j/service/spring/mode/automatic/Issue2133/TestAutowireConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package dev.langchain4j.service.spring.mode.automatic.Issue2133; | ||
|
||
import org.springframework.context.annotation.Configuration; | ||
|
||
/** | ||
* @author: qing | ||
* @Date: 2024/11/20 | ||
*/ | ||
@Configuration | ||
class TestAutowireConfiguration { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...c/test/java/dev/langchain4j/service/spring/mode/automatic/withTools/AopEnhancedTools.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package dev.langchain4j.service.spring.mode.automatic.withTools; | ||
|
||
import dev.langchain4j.agent.tool.Tool; | ||
import dev.langchain4j.service.spring.mode.automatic.withTools.aop.ToolObserver; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class AopEnhancedTools { | ||
|
||
public static final String TOOL_OBSERVER_PACKAGE_NAME_DESCRIPTION = | ||
"Find the package directory where @ToolObserver is located."; | ||
public static final String TOOL_OBSERVER_PACKAGE_NAME = ToolObserver.class.getPackageName(); | ||
|
||
public static final String TOOL_OBSERVER_KEY_NAME_DESCRIPTION = | ||
"Find the key name of @ToolObserver"; | ||
public static final String TOOL_OBSERVER_KEY = "AOP_ENHANCED_TOOLS_SUPPORT_@_1122"; | ||
|
||
@Tool(TOOL_OBSERVER_PACKAGE_NAME_DESCRIPTION) | ||
public String getToolObserverPackageName() { | ||
return TOOL_OBSERVER_PACKAGE_NAME; | ||
} | ||
|
||
@ToolObserver(key = TOOL_OBSERVER_KEY) | ||
@Tool(TOOL_OBSERVER_KEY_NAME_DESCRIPTION) | ||
public String getToolObserverKey() { | ||
return TOOL_OBSERVER_KEY; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...c/test/java/dev/langchain4j/service/spring/mode/automatic/withTools/aop/ToolObserver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package dev.langchain4j.service.spring.mode.automatic.withTools.aop; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
@Target({ElementType.METHOD}) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface ToolObserver { | ||
|
||
/** | ||
* key just for example | ||
* | ||
* @return the key | ||
*/ | ||
String key(); | ||
} |
Oops, something went wrong.