Skip to content

Commit

Permalink
released 0.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LangChain4j committed Mar 25, 2024
1 parent c907581 commit 768b97b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import dev.langchain4j.model.chat.ChatLanguageModel;
import dev.langchain4j.model.chat.StreamingChatLanguageModel;
import dev.langchain4j.model.output.Response;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.springframework.boot.autoconfigure.AutoConfigurations;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
Expand All @@ -23,6 +24,11 @@ class AutoConfigIT {
ApplicationContextRunner contextRunner = new ApplicationContextRunner()
.withConfiguration(AutoConfigurations.of(AutoConfig.class));

@AfterEach
void afterEach() throws InterruptedException {
Thread.sleep(10_000); // to avoid hitting rate limits
}

@Test
void should_provide_chat_model() {
contextRunner
Expand Down

0 comments on commit 768b97b

Please sign in to comment.